]> git.ipfire.org Git - thirdparty/dracut.git/blob - test/TEST-02-SYSTEMD/test.sh
TEST-02-SYSTEMD: enlarge the root disk
[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 -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 -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 initdir=$TESTDIR/overlay/source
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
36 inst "$basedir/modules.d/40network/dhclient-script.sh" "/sbin/dhclient-script"
37 inst "$basedir/modules.d/40network/ifup.sh" "/sbin/ifup"
38 dracut_install grep
39 inst ./test-init.sh /sbin/init
40 find_binary plymouth >/dev/null && dracut_install plymouth
41 (cd "$initdir"; mkdir -p dev sys proc etc var/run tmp )
42 cp -a /etc/ld.so.conf* $initdir/etc
43 sudo ldconfig -r "$initdir"
44 )
45
46 # second, install the files needed to make the root filesystem
47 (
48 initdir=$TESTDIR/overlay
49 . $basedir/dracut-functions.sh
50 dracut_install sfdisk mkfs.ext3 poweroff cp umount
51 inst_hook initqueue 01 ./create-root.sh
52 inst_simple ./99-idesymlinks.rules /etc/udev/rules.d/99-idesymlinks.rules
53 )
54
55 # create an initramfs that will create the target root filesystem.
56 # We do it this way so that we do not risk trashing the host mdraid
57 # devices, volume groups, encrypted partitions, etc.
58 $basedir/dracut.sh -l -i $TESTDIR/overlay / \
59 -m "dash udev-rules base rootfs-block kernel-modules" \
60 -d "piix ide-gd_mod ata_piix ext3 sd_mod" \
61 --nomdadmconf \
62 -f $TESTDIR/initramfs.makeroot $KVERSION || return 1
63 rm -rf $TESTDIR/overlay
64 # Invoke KVM and/or QEMU to actually create the target filesystem.
65
66 $testdir/run-qemu \
67 -hda $TESTDIR/root.ext3 \
68 -m 256M -nographic -net none \
69 -kernel "/boot/vmlinuz-$kernel" \
70 -append "root=/dev/dracut/root rw rootfstype=ext3 quiet console=ttyS0,115200n81 selinux=0" \
71 -initrd $TESTDIR/initramfs.makeroot || return 1
72 grep -m 1 -q dracut-root-block-created $TESTDIR/root.ext3 || return 1
73
74
75 (
76 initdir=$TESTDIR/overlay
77 . $basedir/dracut-functions.sh
78 dracut_install poweroff shutdown
79 inst_hook emergency 000 ./hard-off.sh
80 inst_simple ./99-idesymlinks.rules /etc/udev/rules.d/99-idesymlinks.rules
81 )
82 sudo $basedir/dracut.sh -l -i $TESTDIR/overlay / \
83 -a "debug systemd" \
84 -o "network" \
85 -d "piix ide-gd_mod ata_piix ext3 sd_mod" \
86 -f $TESTDIR/initramfs.testing $KVERSION || return 1
87
88 # -o "plymouth network md dmraid multipath fips caps crypt btrfs resume dmsquash-live dm"
89 }
90
91 test_cleanup() {
92 return 0
93 }
94
95 . $testdir/test-functions