]> git.ipfire.org Git - thirdparty/dracut.git/blame - test/TEST-02-SYSTEMD/test.sh
use "rm --" to guard against filenames beginning with "-"
[thirdparty/dracut.git] / test / TEST-02-SYSTEMD / test.sh
CommitLineData
2c431e8e
HH
1#!/bin/bash
2TEST_DESCRIPTION="root filesystem on a ext3 filesystem"
3
4KVERSION=${KVERSION-$(uname -r)}
5
6# Uncomment this to debug failures
7#DEBUGFAIL="rd.shell"
8test_run() {
9 $testdir/run-qemu \
10 -hda $TESTDIR/root.ext3 \
bb278147 11 -m 256M -smp 2 -nographic \
2c431e8e 12 -net none -kernel /boot/vmlinuz-$KVERSION \
f7231824 13 -append "root=LABEL=dracut rw loglevel=77 systemd.log_level=debug systemd.log_target=console rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug init=/sbin/init $DEBUGFAIL" \
2c431e8e 14 -initrd $TESTDIR/initramfs.testing
021b2fdd 15 grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext3 || return 1
2c431e8e
HH
16}
17
18test_setup() {
32bd2fbb 19 rm -f -- $TESTDIR/root.ext3
2c431e8e 20 # Create the blank file to use as a root filesystem
1d59e3e5 21 dd if=/dev/null of=$TESTDIR/root.ext3 bs=1M seek=80
2c431e8e
HH
22
23 kernel=$KVERSION
24 # Create what will eventually be our root filesystem onto an overlay
25 (
27fa6044 26 export initdir=$TESTDIR/overlay/source
2c431e8e
HH
27 mkdir -p $initdir
28 . $basedir/dracut-functions.sh
29 dracut_install sh df free ls shutdown poweroff stty cat ps ln ip route \
30 mount dmesg ifconfig dhclient mkdir cp ping dhclient \
31 umount strace less setsid
32 for _terminfodir in /lib/terminfo /etc/terminfo /usr/share/terminfo; do
33 [ -f ${_terminfodir}/l/linux ] && break
34 done
35 dracut_install -o ${_terminfodir}/l/linux
f0558da5
HH
36 inst "$basedir/modules.d/40network/dhclient-script.sh" "/sbin/dhclient-script"
37 inst "$basedir/modules.d/40network/ifup.sh" "/sbin/ifup"
2c431e8e 38 dracut_install grep
021b2fdd 39 inst_simple /etc/os-release
2c431e8e
HH
40 inst ./test-init.sh /sbin/init
41 find_binary plymouth >/dev/null && dracut_install plymouth
42 (cd "$initdir"; mkdir -p dev sys proc etc var/run tmp )
43 cp -a /etc/ld.so.conf* $initdir/etc
44 sudo ldconfig -r "$initdir"
45 )
46
47 # second, install the files needed to make the root filesystem
48 (
27fa6044 49 export initdir=$TESTDIR/overlay
2c431e8e
HH
50 . $basedir/dracut-functions.sh
51 dracut_install sfdisk mkfs.ext3 poweroff cp umount
52 inst_hook initqueue 01 ./create-root.sh
356333b3 53 inst_hook initqueue/finished 01 ./finished-false.sh
2c431e8e
HH
54 inst_simple ./99-idesymlinks.rules /etc/udev/rules.d/99-idesymlinks.rules
55 )
56
57 # create an initramfs that will create the target root filesystem.
58 # We do it this way so that we do not risk trashing the host mdraid
59 # devices, volume groups, encrypted partitions, etc.
60 $basedir/dracut.sh -l -i $TESTDIR/overlay / \
61 -m "dash udev-rules base rootfs-block kernel-modules" \
62 -d "piix ide-gd_mod ata_piix ext3 sd_mod" \
63 --nomdadmconf \
64 -f $TESTDIR/initramfs.makeroot $KVERSION || return 1
32bd2fbb 65 rm -rf -- $TESTDIR/overlay
2c431e8e
HH
66 # Invoke KVM and/or QEMU to actually create the target filesystem.
67
68 $testdir/run-qemu \
69 -hda $TESTDIR/root.ext3 \
bb278147 70 -m 256M -smp 2 -nographic -net none \
2c431e8e 71 -kernel "/boot/vmlinuz-$kernel" \
bb278147 72 -append "root=/dev/fakeroot rw rootfstype=ext3 quiet console=ttyS0,115200n81 selinux=0" \
2c431e8e 73 -initrd $TESTDIR/initramfs.makeroot || return 1
021b2fdd 74 grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext3 || return 1
2c431e8e
HH
75
76
77 (
27fa6044 78 export initdir=$TESTDIR/overlay
2c431e8e
HH
79 . $basedir/dracut-functions.sh
80 dracut_install poweroff shutdown
81 inst_hook emergency 000 ./hard-off.sh
82 inst_simple ./99-idesymlinks.rules /etc/udev/rules.d/99-idesymlinks.rules
83 )
84 sudo $basedir/dracut.sh -l -i $TESTDIR/overlay / \
85 -a "debug systemd" \
86 -o "network" \
87 -d "piix ide-gd_mod ata_piix ext3 sd_mod" \
88 -f $TESTDIR/initramfs.testing $KVERSION || return 1
89
90# -o "plymouth network md dmraid multipath fips caps crypt btrfs resume dmsquash-live dm"
91}
92
93test_cleanup() {
94 return 0
95}
96
97. $testdir/test-functions