2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2014-05-27 18:51:57 +04:00
# Copyright (C) 2014 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2014-05-27 18:51:57 +04:00
2014-05-28 17:41:06 +04:00
# Test 'Found duplicate' is shown
2016-02-23 01:13:42 +03:00
SKIP_WITH_LVMLOCKD = 1
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2014-05-27 18:51:57 +04:00
2015-10-27 17:10:06 +03:00
. lib/inittest
2015-05-09 02:59:18 +03:00
2014-05-27 18:51:57 +04:00
aux prepare_devs 3
pvcreate " $dev1 "
UUID1 = $( get pv_field " $dev1 " uuid)
2016-04-21 23:53:15 +03:00
pvcreate --config " devices{filter=[\"a| $dev2 |\",\"r|.*|\"]} global/use_lvmetad=0 " -u " $UUID1 " --norestorefile " $dev2 "
pvcreate --config " devices{filter=[\"a| $dev3 |\",\"r|.*|\"]} global/use_lvmetad=0 " -u " $UUID1 " --norestorefile " $dev3 "
pvscan --cache 2>& 1 | tee out
if test -e LOCAL_LVMETAD; then
grep "was already found" out
grep "WARNING: Disabling lvmetad cache which does not support duplicate PVs." out
fi
2014-05-27 18:51:57 +04:00
2015-05-14 11:20:24 +03:00
pvs -o+uuid 2>& 1 | tee out
2014-05-27 18:51:57 +04:00
2016-04-21 23:53:15 +03:00
grep WARNING out > warn || true
grep -v WARNING out > main || true
2017-07-02 22:56:10 +03:00
test " $( grep -c $UUID1 main) " -eq 1
2016-04-21 23:53:15 +03:00
COUNT = $( grep --count "was already found" warn)
[ " $COUNT " -eq 2 ]
pvs -o+uuid --config " devices{filter=[\"a| $dev2 |\",\"r|.*|\"]} " 2>& 1 | tee out
rm warn main || true
grep WARNING out > warn || true
grep -v WARNING out > main || true
not grep " $dev1 " main
grep " $dev2 " main
not grep " $dev3 " main
not grep "was already found" warn
2014-05-27 18:51:57 +04:00