summaryrefslogtreecommitdiff
path: root/test/lib/inittest.sh
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2014-06-06 17:40:04 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2014-06-10 10:51:27 +0200
commit5c5177c37c88cc0e7d5fbd5b82647ce562dad32f (patch)
tree92ff6238295b14518649e7e8a35caba5f83094fe /test/lib/inittest.sh
parent9f68aadb742b9cbd70c5cf5d750b64ff534bc8b3 (diff)
downloadlvm2-5c5177c37c88cc0e7d5fbd5b82647ce562dad32f.tar.gz
tests: rename test to inittest
We are getting into problem when we use 'test' for commands like should/not/... So avoid overloading test name and change it to inittest.
Diffstat (limited to 'test/lib/inittest.sh')
-rw-r--r--test/lib/inittest.sh102
1 files changed, 102 insertions, 0 deletions
diff --git a/test/lib/inittest.sh b/test/lib/inittest.sh
new file mode 100644
index 000000000..731cd7afd
--- /dev/null
+++ b/test/lib/inittest.sh
@@ -0,0 +1,102 @@
+#!/usr/bin/env bash
+# Copyright (C) 2011-2012 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+# sanitize the environment
+LANG=C
+LC_ALL=C
+TZ=UTC
+
+# Put script name into variable, so it can used in external scripts
+TESTNAME=${0##*/}
+# Nice debug message
+PS4='#${BASH_SOURCE[0]##*/}:${LINENO}+ '
+export TESTNAME PS4
+
+unset CDPATH
+
+# grab some common utilities
+. lib/utils
+
+TESTOLDPWD=$(pwd)
+COMMON_PREFIX="LVMTEST"
+PREFIX="${COMMON_PREFIX}$$"
+
+TESTDIR=$(mkdtemp "${LVM_TEST_DIR:-$TESTOLDPWD}" "$PREFIX.XXXXXXXXXX") || \
+ die "failed to create temporary directory in ${LVM_TEST_DIR:-$TESTOLDPWD}"
+RUNNING_DMEVENTD=$(pgrep dmeventd) || true
+
+export TESTOLDPWD TESTDIR COMMON_PREFIX PREFIX RUNNING_DMEVENTD
+
+test -n "$BASH" && trap 'set +vx; STACKTRACE; set -vx' ERR
+trap 'aux teardown' EXIT # don't forget to clean up
+
+cd "$TESTDIR"
+
+if test -n "$LVM_TEST_FLAVOUR"; then
+ touch flavour_overrides
+ env | grep ^${LVM_TEST_FLAVOUR} | while read var; do
+ (echo -n "export "; echo $var | sed -e s,^${LVM_TEST_FLAVOUR}_,,) >> flavour_overrides
+ done
+ . flavour_overrides
+fi
+
+DM_DEFAULT_NAME_MANGLING_MODE=none
+DM_DEV_DIR="$TESTDIR/dev"
+LVM_SYSTEM_DIR="$TESTDIR/etc"
+mkdir "$LVM_SYSTEM_DIR" "$TESTDIR/lib" "$DM_DEV_DIR"
+if test -n "$LVM_TEST_DEVDIR" ; then
+ DM_DEV_DIR=$LVM_TEST_DEVDIR
+else
+ mknod "$DM_DEV_DIR/testnull" c 1 3 || die "mknod failed";
+ echo >"$DM_DEV_DIR/testnull" || \
+ die "Filesystem does support devices in $DM_DEV_DIR (mounted with nodev?)"
+ mkdir "$DM_DEV_DIR/mapper"
+fi
+
+# abort on the internal dm errors in the tests (allowing test user override)
+DM_ABORT_ON_INTERNAL_ERRORS=${DM_ABORT_ON_INTERNAL_ERRORS:-1}
+
+export DM_DEFAULT_NAME_MANGLING_MODE DM_DEV_DIR LVM_SYSTEM_DIR DM_ABORT_ON_INTERNAL_ERRORS
+
+echo "$TESTNAME" >TESTNAME
+
+echo "Kernel is $(uname -a)"
+# Report SELinux mode
+if which getenforce &>/dev/null ; then
+ echo "Selinux mode is \"$(getenforce 2>/dev/null)\"."
+else
+ echo "Selinux mode is not installed."
+fi
+
+# Setting up symlink from $i to $TESTDIR/lib
+find "$abs_top_builddir/daemons/dmeventd/plugins/" -name '*.so' \
+ -exec ln -s -t lib "{}" +
+find "$abs_top_builddir/test/lib" ! \( -name '*.sh' -o -name '*.[cdo]' \
+ -o -name '*~' \) -exec ln -s -t lib "{}" +
+
+# Set vars from utils now that we have TESTDIR/PREFIX/...
+prepare_test_vars
+
+test -n "$BASH" && set -eE -o pipefail
+
+aux lvmconf
+aux prepare_clvmd
+test -n "$LVM_TEST_LVMETAD" && {
+ export LVM_LVMETAD_SOCKET="$TESTDIR/lvmetad.socket"
+ export LVM_LVMETAD_PIDFILE="$TESTDIR/lvmetad.pid"
+ aux prepare_lvmetad
+}
+
+# Vars for harness
+echo "@TESTDIR=$TESTDIR"
+echo "@PREFIX=$PREFIX"
+
+set -vx