]> git.ipfire.org Git - thirdparty/dracut.git/blob - test/TEST-02-SYSTEMD/test.sh
dracut-functions.sh: inst_multiple == dracut_install
[thirdparty/dracut.git] / test / TEST-02-SYSTEMD / test.sh
1 #!/bin/bash
2 TEST_DESCRIPTION="root filesystem on a ext3 filesystem"
3
4 KVERSION="${KVERSION-$(uname -r)}"
5
6 # Uncomment this to debug failures
7 #DEBUGFAIL="rd.shell"
8 test_run() {
9 $testdir/run-qemu \
10 -hda $TESTDIR/root.ext3 \
11 -m 256M -smp 2 -nographic \
12 -net none -kernel /boot/vmlinuz-$KVERSION \
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" \
14 -initrd $TESTDIR/initramfs.testing
15 grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext3 || return 1
16 }
17
18 test_setup() {
19 rm -f -- $TESTDIR/root.ext3
20 # Create the blank file to use as a root filesystem
21 dd if=/dev/null of=$TESTDIR/root.ext3 bs=1M seek=80
22
23 kernel=$KVERSION
24 # Create what will eventually be our root filesystem onto an overlay
25 (
26 export initdir=$TESTDIR/overlay/source
27 mkdir -p $initdir
28 . $basedir/dracut-functions.sh
29 inst_multiple 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 inst_multiple -o ${_terminfodir}/l/linux
36 inst "$basedir/modules.d/40network/dhclient-script.sh" "/sbin/dhclient-script"
37 inst "$basedir/modules.d/40network/ifup.sh" "/sbin/ifup"
38 inst_multiple grep
39 inst_simple /etc/os-release
40 inst ./test-init.sh /sbin/init
41 find_binary plymouth >/dev/null && inst_multiple 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 (
49 export initdir=$TESTDIR/overlay
50 . $basedir/dracut-functions.sh
51 inst_multiple sfdisk mkfs.ext3 poweroff cp umount
52 inst_hook initqueue 01 ./create-root.sh
53 inst_hook initqueue/finished 01 ./finished-false.sh
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
65 rm -rf -- $TESTDIR/overlay
66 # Invoke KVM and/or QEMU to actually create the target filesystem.
67
68 $testdir/run-qemu \
69 -hda $TESTDIR/root.ext3 \
70 -m 256M -smp 2 -nographic -net none \
71 -kernel "/boot/vmlinuz-$kernel" \
72 -append "root=/dev/fakeroot rw rootfstype=ext3 quiet console=ttyS0,115200n81 selinux=0" \
73 -initrd $TESTDIR/initramfs.makeroot || return 1
74 grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext3 || return 1
75
76
77 (
78 export initdir=$TESTDIR/overlay
79 . $basedir/dracut-functions.sh
80 inst_multiple 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
93 test_cleanup() {
94 return 0
95 }
96
97 . $testdir/test-functions