1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-08-30 05:49:28 +03:00
Files
lvm2/test/shell/lvcreate-cache-no-tools.sh
Zdenek Kabelac 4ee806d391 tests: switch to new skip options for test scripts
Update test scripts to use new command-line options for skipping tests,
replacing the previous use of environment variables. The following options
are now supported:

  --skip-root-dm-check
  --skip-with-devices-file
  --skip-with-lvmpolld
  --skip-with-lvmlockd

- Add command-line option parsing to lib/inittest.sh.
- Replace SKIP_ROOT_DM_CHECK=1 with --skip-root-dm-check.
- Replace SKIP_WITH_DEVICES_FILE=1 with --skip-with-devices-file.
- Replace SKIP_WITH_LVMPOLLD=1 with --skip-with-lvmpolld.
- Replace SKIP_WITH_LVMLOCKD=1 with --skip-with-lvmlockd.
- Update 410 test files to use the new syntax.

This change provides a cleaner, more consistent, and maintainable
way to handle test skipping across the test suite.
Also eliminates number of shellcheck errors.

TODO: convert couple more remaining.
2025-06-25 22:48:42 +02:00

119 lines
2.5 KiB
Bash

#!/usr/bin/env bash
# Copyright (C) 2018 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,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Exercise creation of cache without cache_check
. lib/inittest --skip-with-lvmpolld
if test -e LOCAL_CLVMD ; then
# In cluster, the error from activation is logged in clvmd
# so we can only check resulting state of activation
GREP="echo"
else
GREP="grep"
fi
make_fake_() {
cat <<- EOF >fake-tool.sh
#!/bin/sh
echo "$1"
exit 1
EOF
chmod +x fake-tool.sh
}
check_change_() {
lvchange -an $vg |& tee out
"$GREP" "$1" out
lvchange -ay $vg |& tee out
"$GREP" "$1" out
}
# Integrity check fails, but deactivation is OK
check_change_failed_() {
lvchange -an $vg |& tee out
"$GREP" "failed" out
# Activation must fail
fail lvchange -ay $vg |& tee out
"$GREP" "failed" out
cat <<- EOF >fake-tool.sh
#!/bin/sh
exit
EOF
chmod +x fake-tool.sh
# Activate without any check
lvchange -ay $vg
}
aux have_cache 1 3 0 || skip
# FIXME: parallel cache metadata allocator is crashing when used value 8000!
aux prepare_vg 5 80000
aux lvmconf 'global/cache_check_executable = "./fake-tool.sh"'
rm -f fake-tool.sh
# On cache target that supports V2
if aux have_cache 1 10 0 ; then
lvcreate -aey -l1 -n $lv1 $vg
lvcreate -H -l2 $vg/$lv1
check_change_ "Check is skipped"
# prepare fake version of cache_check tool that reports old version
make_fake_ "0.1.0"
check_change_ "upgrade"
# prepare fake version of cache_check tool that reports garbage
make_fake_ "garbage"
check_change_ "parse"
# prepare fake version of cache_check tool with high version
make_fake_ "99.0.0"
check_change_failed_
lvremove -f $vg
fi
# Enforce older cache target format V1
aux lvmconf 'allocation/cache_metadata_format = 1'
rm -f fake-tool.sh
lvcreate -aey -l1 -n $lv1 $vg
lvcreate -H -l2 $vg/$lv1
check_change_ "Check is skipped"
# prepare fake version of cache_check tool that reports old version
make_fake_ "0.1.0"
check_change_failed_
# prepare fake version of cache_check tool that reports garbage
make_fake_ "garbage"
check_change_failed_
# prepare fake version of cache_check tool with high version
make_fake_ "99.0.0"
check_change_failed_
vgremove -ff $vg