From badda27f61706a4ceed2098b2057c3ec0206617d Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 11 Jul 2012 15:15:41 +0200 Subject: [PATCH] test/TEST-04-FULL-SYSTEMD: full test with systemd and /usr mount --- test/TEST-04-FULL-SYSTEMD/99-idesymlinks.rules | 8 + test/TEST-04-FULL-SYSTEMD/Makefile | 10 + test/TEST-04-FULL-SYSTEMD/create-root.sh | 39 ++++ test/TEST-04-FULL-SYSTEMD/cryptroot-ask.sh | 6 + test/TEST-04-FULL-SYSTEMD/fstab | 2 + test/TEST-04-FULL-SYSTEMD/hard-off.sh | 3 + test/TEST-04-FULL-SYSTEMD/test-init.sh | 29 +++ test/TEST-04-FULL-SYSTEMD/test.sh | 273 ++++++++++++++++++++++++ 8 files changed, 370 insertions(+) create mode 100644 test/TEST-04-FULL-SYSTEMD/99-idesymlinks.rules create mode 100644 test/TEST-04-FULL-SYSTEMD/Makefile create mode 100755 test/TEST-04-FULL-SYSTEMD/create-root.sh create mode 100755 test/TEST-04-FULL-SYSTEMD/cryptroot-ask.sh create mode 100644 test/TEST-04-FULL-SYSTEMD/fstab create mode 100755 test/TEST-04-FULL-SYSTEMD/hard-off.sh create mode 100755 test/TEST-04-FULL-SYSTEMD/test-init.sh create mode 100755 test/TEST-04-FULL-SYSTEMD/test.sh diff --git a/test/TEST-04-FULL-SYSTEMD/99-idesymlinks.rules b/test/TEST-04-FULL-SYSTEMD/99-idesymlinks.rules new file mode 100644 index 0000000..d557790 --- /dev/null +++ b/test/TEST-04-FULL-SYSTEMD/99-idesymlinks.rules @@ -0,0 +1,8 @@ +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", KERNEL=="hda", SYMLINK+="sda" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="partition", KERNEL=="hda*", SYMLINK+="sda$env{MINOR}" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", KERNEL=="hdb", SYMLINK+="sdb" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="partition", KERNEL=="hdb*", SYMLINK+="sdb$env{MINOR}" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", KERNEL=="hdc", SYMLINK+="sdc" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="partition", KERNEL=="hdc*", SYMLINK+="sdc$env{MINOR}" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="disk", KERNEL=="hdd", SYMLINK+="sdd" +ACTION=="add|change", SUBSYSTEM=="block", ENV{DEVTYPE}=="partition", KERNEL=="hdd*", SYMLINK+="sdd$env{MINOR}" diff --git a/test/TEST-04-FULL-SYSTEMD/Makefile b/test/TEST-04-FULL-SYSTEMD/Makefile new file mode 100644 index 0000000..3cc8993 --- /dev/null +++ b/test/TEST-04-FULL-SYSTEMD/Makefile @@ -0,0 +1,10 @@ +all: + $(MAKE) -s --no-print-directory -C ../.. all + V=$(V) basedir=../.. testdir=../ ./test.sh --all +setup: + @$(MAKE) --no-print-directory -C ../.. all + @basedir=../.. testdir=../ ./test.sh --setup +clean: + @basedir=../.. testdir=../ ./test.sh --clean +run: + @basedir=../.. testdir=../ ./test.sh --run diff --git a/test/TEST-04-FULL-SYSTEMD/create-root.sh b/test/TEST-04-FULL-SYSTEMD/create-root.sh new file mode 100755 index 0000000..2e33920 --- /dev/null +++ b/test/TEST-04-FULL-SYSTEMD/create-root.sh @@ -0,0 +1,39 @@ +#!/bin/sh +# don't let udev and this script step on eachother's toes +for x in 64-lvm.rules 70-mdadm.rules 99-mount-rules; do + > "/etc/udev/rules.d/$x" +done +rm /etc/lvm/lvm.conf +udevadm control --reload-rules +set -e +# save a partition at the beginning for future flagging purposes +sfdisk -C 10240 -H 2 -S 32 -L /dev/sda </dev/sda1 +sync +poweroff -f + diff --git a/test/TEST-04-FULL-SYSTEMD/cryptroot-ask.sh b/test/TEST-04-FULL-SYSTEMD/cryptroot-ask.sh new file mode 100755 index 0000000..db27c5b --- /dev/null +++ b/test/TEST-04-FULL-SYSTEMD/cryptroot-ask.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +[ -b /dev/mapper/$2 ] && exit 0 +echo -n test >/keyfile +/sbin/cryptsetup luksOpen $1 $2 /dev/watchdog +export PATH=/sbin:/bin:/usr/sbin:/usr/bin +strstr() { [ "${1#*$2*}" != "$1" ]; } +CMDLINE=$(while read line; do echo $line;done < /proc/cmdline) +plymouth --quit +exec /dev/console 2>&1 + +ismounted() { + while read a m a; do + [ "$m" = "$1" ] && return 0 + done < /proc/mounts + return 1 +} + +if ismounted /usr; then + echo "dracut-root-block-success" >/dev/sdc +fi +export TERM=linux +export PS1='initramfs-test:\w\$ ' +[ -f /etc/mtab ] || ln -sfn /proc/mounts /etc/mtab +[ -f /etc/fstab ] || ln -sfn /proc/mounts /etc/fstab +stty sane +echo "made it to the rootfs!" +if strstr "$CMDLINE" "rd.shell"; then + strstr "$(setsid --help)" "control" && CTTY="-c" + setsid $CTTY sh -i +fi +echo "Powering down." diff --git a/test/TEST-04-FULL-SYSTEMD/test.sh b/test/TEST-04-FULL-SYSTEMD/test.sh new file mode 100755 index 0000000..921189f --- /dev/null +++ b/test/TEST-04-FULL-SYSTEMD/test.sh @@ -0,0 +1,273 @@ +#!/bin/bash + +TEST_DESCRIPTION="Full systemd serialization/deserialization test with /usr mount" + +KVERSION=${KVERSION-$(uname -r)} + +# Uncomment this to debug failures +#DEBUGFAIL="rd.shell rd.break" + +client_run() { + local test_name="$1"; shift + local client_opts="$*" + + echo "CLIENT TEST START: $test_name" + + dd if=/dev/zero of=$TESTDIR/result bs=1M count=1 + $testdir/run-qemu \ + -hda $TESTDIR/root.btrfs \ + -hdb $TESTDIR/usr.btrfs \ + -hdc $TESTDIR/result \ + -m 256M -nographic \ + -net none -kernel /boot/vmlinuz-$KVERSION \ + -append "root=LABEL=dracut $client_opts quiet systemd.log_level=debug systemd.log_target=console loglevel=77 rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug $DEBUGFAIL" \ + -initrd $TESTDIR/initramfs.testing + + if (($? != 0)); then + echo "CLIENT TEST END: $test_name [FAILED - BAD EXIT]" + return 1 + fi + + if ! grep -m 1 -q dracut-root-block-success $TESTDIR/result; then + echo "CLIENT TEST END: $test_name [FAILED]" + return 1 + fi + echo "CLIENT TEST END: $test_name [OK]" + +} + +test_run() { + client_run "no option specified" || return 1 + client_run "readonly root" "ro" || return 1 + client_run "writeable root" "rw" || return 1 + return 0 +} + +test_setup() { + rm -f $TESTDIR/root.btrfs + rm -f $TESTDIR/usr.btrfs + # Create the blank file to use as a root filesystem + dd if=/dev/null of=$TESTDIR/root.btrfs bs=1M seek=320 + dd if=/dev/null of=$TESTDIR/usr.btrfs bs=1M seek=320 + + kernel=$KVERSION + # Create what will eventually be our root filesystem onto an overlay + ( + export initdir=$TESTDIR/overlay/source + mkdir -p $initdir + . $basedir/dracut-functions.sh + + for d in usr/bin usr/sbin bin etc lib "$libdir" sbin tmp usr var var/log dev proc sys sysroot root run run/lock run/initramfs; do + if [ -L "/$d" ]; then + inst_symlink "/$d" + else + inst_dir "/$d" + fi + done + + ln -sfn /run "$initdir/var/run" + ln -sfn /run/lock "$initdir/var/lock" + + dracut_install sh df free ls shutdown poweroff stty cat ps ln ip route \ + mount dmesg ifconfig dhclient mkdir cp ping dhclient \ + umount strace less setsid + for _terminfodir in /lib/terminfo /etc/terminfo /usr/share/terminfo; do + [ -f ${_terminfodir}/l/linux ] && break + done + dracut_install -o ${_terminfodir}/l/linux + inst "$basedir/modules.d/40network/dhclient-script.sh" "/sbin/dhclient-script" + inst "$basedir/modules.d/40network/ifup.sh" "/sbin/ifup" + dracut_install grep + inst_simple ./fstab /etc/fstab + rpm -ql systemd | xargs -r $DRACUT_INSTALL ${initdir+-D "$initdir"} -o -a -l + inst /lib/systemd/system/systemd-journal-flush.service + inst /etc/sysconfig/init + # activate kmsg import + echo 'ImportKernel=yes' >> $initdir/etc/systemd/journald.conf + + # make a journal directory + mkdir -p $initdir/var/log/journal + + # install some basic config files + dracut_install -o \ + /etc/sysconfig/init \ + /etc/passwd \ + /etc/shadow \ + /etc/group \ + /etc/shells \ + /etc/nsswitch.conf \ + /etc/pam.conf \ + /etc/securetty \ + /etc/os-release \ + /etc/localtime + + # we want an empty environment + > $initdir/etc/environment + > $initdir/etc/machine-id + + # set the hostname + echo systemd-testsuite > $initdir/etc/hostname + + # setup the testsuite target + cat >$initdir/etc/systemd/system/testsuite.target <$initdir/etc/systemd/system/testsuite.service <$initdir/etc/rc.d/rc.local <