1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 11:55:55 +03:00
lvm2/test/check.sh

92 lines
1.5 KiB
Bash
Raw Normal View History

#!/bin/bash
set -e -o pipefail
lvdevices() {
lvs -a -odevices --noheadings "$@" | sed 's/([^)]*)//g; s/,/ /g'
}
mirror_images_redundant()
{
vg=$1
lv=$vg/$2
lvs -a $vg
for i in `lvdevices $lv`; do
echo "# $i:"
lvdevices $vg/$i | sort | uniq
done > check.tmp.all
(grep -v ^# check.tmp.all || true) | sort | uniq -d > check.tmp
test "`cat check.tmp | wc -l`" -eq 0 || {
echo "mirror images of $lv expected redundant, but are not:"
cat check.tmp.all
exit 1
}
}
mirror_log_on()
{
lv="$1"_mlog
lvdevices $lv | grep -F "$2" || {
echo "mirror log $lv expected on $2 but found on:" >&2
lvdevices $lv >&2
exit 1
}
}
lv_is_contiguous()
{
test `lvs -a --segments --noheadings $1 | wc -l` -eq 1 || {
echo "LV $1 expected to be contiguous, but is not:"
lvs -a --segments --noheadings $1
exit 1
}
}
lv_is_clung()
{
test `lvdevices $1 | sort | uniq | wc -l` -eq 1 || {
echo "LV $1 expected to be clung, but is not:"
lvdevices $! | sort | uniq
exit 1
}
}
mirror_images_contiguous()
{
for i in `lvdevices $1/$2`; do
lv_is_contiguous $1/$i
done
}
mirror_images_clung()
{
for i in `lvdevices $1/$2`; do
lv_is_clung $1/$i
done
}
mirror() {
lv="$1/$2"
lvs -oattr "$lv" | grep "m" || {
echo "$lv expected a mirror, but is not:"
lvs -a $lv
exit 1
}
mirror_images_redundant "$1" "$2"
if test -n "$3"; then mirror_log_on "$lv" "$3"; fi
}
linear() {
lv="$1/$2"
lvs -ostripes "$lv" | grep "1" || {
echo "$lv expected linear, but is not:"
lvs -a "$lv" -o+devices
exit 1
}
}
"$@"