summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2016-04-21 15:53:15 -0500
committerDavid Teigland <teigland@redhat.com>2016-04-21 16:35:12 -0500
commitfb032e451d0aa6b93a144315afe1b424fb7816ad (patch)
treef68b838977275f5c692306c854fe13a7ee5ea4ac
parent1dc4fb2430676d4f1c392c62ab66638cf612cd42 (diff)
downloadlvm2-dev-dct-lvmetad-disabled-6.tar.gz
test: pv-duplicate-uuiddev-dct-lvmetad-disabled-6
update for duplicate changes
-rw-r--r--test/shell/pv-duplicate-uuid.sh34
1 files 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|.*|\"]}"