From fb032e451d0aa6b93a144315afe1b424fb7816ad Mon Sep 17 00:00:00 2001 From: David Teigland Date: Thu, 21 Apr 2016 15:53:15 -0500 Subject: test: pv-duplicate-uuid update for duplicate changes --- test/shell/pv-duplicate-uuid.sh | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/test/shell/pv-duplicate-uuid.sh b/test/shell/pv-duplicate-uuid.sh index bd54f5f4e..83ecd5fa8 100644 --- a/test/shell/pv-duplicate-uuid.sh +++ b/test/shell/pv-duplicate-uuid.sh @@ -19,13 +19,35 @@ aux prepare_devs 3 pvcreate "$dev1" UUID1=$(get pv_field "$dev1" uuid) -pvcreate --config "devices{filter=[\"a|$dev2|\",\"r|.*|\"]}" -u "$UUID1" --norestorefile "$dev2" -pvcreate --config "devices{filter=[\"a|$dev3|\",\"r|.*|\"]}" -u "$UUID1" --norestorefile "$dev3" +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 + +grep "was already found" out +grep "WARNING: Disabling lvmetad cache which does not support duplicate PVs." out pvs -o+uuid 2>&1 | tee out -COUNT=$(should grep --count "Found duplicate" out) -# FIXME lvmetad is not able to serve properly this case -should [ "$COUNT" -eq 2 ] +grep WARNING out > warn || true +grep -v WARNING out > main || true + +grep "$dev1" main +grep "$dev2" main +grep "$dev3" main + +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 -pvs -o+uuid --config "devices{filter=[\"a|$dev2|\",\"r|.*|\"]}" -- cgit v1.2.1