aboutsummaryrefslogtreecommitdiffstats
path: root/test/root/isc-dhcp.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/root/isc-dhcp.exp')
-rwxr-xr-xtest/root/isc-dhcp.exp58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/root/isc-dhcp.exp b/test/root/isc-dhcp.exp
new file mode 100755
index 000000000..86500707a
--- /dev/null
+++ b/test/root/isc-dhcp.exp
@@ -0,0 +1,58 @@
1#!/usr/bin/expect -f
2
3set timeout 5
4spawn $env(SHELL)
5match_max 100000
6
7send -- "sudo ls; sudo whoami; sudo pwd\r"
8expect {
9 timeout {puts "TESTING ERROR: you need to root run this test as root\n";exit}
10 "root"
11}
12
13send -- "pkill dhcpd\r"
14sleep 2
15
16send -- "firejail --name=dhcpd /etc/init.d/isc-dhcp-server start\r"
17expect {
18 timeout {puts "TESTING ERROR 0\n";exit}
19 "Child process initialized"
20}
21sleep 2
22
23spawn $env(SHELL)
24send -- "firejail --tree\r"
25expect {
26 timeout {puts "TESTING ERROR 2\n";exit}
27 "root:/usr/sbin/dhcpd"
28}
29sleep 2
30
31send -- "tail -n 200 /var/log/syslog\r"
32expect {
33 timeout {puts "TESTING ERROR 3\n";exit}
34 "Internet Systems Consortium DHCP Server"
35}
36expect {
37 timeout {puts "TESTING ERROR 4\n";exit}
38 "Wrote 0 leases to leases file"
39}
40sleep 2
41
42send -- "firejail --join=dhcpd\r"
43sleep 2
44
45send -- "ls /dev\r"
46expect {
47 timeout {puts "TESTING ERROR 5\n";exit}
48 "tty0" {puts "TESTING ERROR 6\n";exit}
49 "ttyS0" {puts "TESTING ERROR 6\n";exit}
50 "ppp" {puts "TESTING ERROR 6\n";exit}
51 "audio" {puts "TESTING ERROR 6\n";exit}
52 "log"
53}
54sleep 2
55
56
57puts "\nall done\n"
58