summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2016-04-21 15:53:15 -0500
committerDavid Teigland <teigland@redhat.com>2016-05-06 09:00:00 -0500
commitd4d1d5ac3ebc88f48e7d959cff9ab9c59ba92ba0 (patch)
tree386bf9f913057213a8eabfadebcd6c8c5d69e219
parent708eca39eac23af1a4a889de40d69151168d18f1 (diff)
downloadlvm2-d4d1d5ac3ebc88f48e7d959cff9ab9c59ba92ba0.tar.gz
test: pv-duplicate-uuid
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..c846a5047 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
+
+if test -e LOCAL_LVMETAD; then
+ grep "was already found" out
+ grep "WARNING: Disabling lvmetad cache which does not support duplicate PVs." out
+fi
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
+
+test $(grep $UUID1 main | wc -l) -eq 1
+
+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|.*|\"]}"