aboutsummaryrefslogtreecommitdiffstats
path: root/test/root/unbound.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/root/unbound.exp')
-rwxr-xr-xtest/root/unbound.exp48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/root/unbound.exp b/test/root/unbound.exp
new file mode 100755
index 000000000..9c496306a
--- /dev/null
+++ b/test/root/unbound.exp
@@ -0,0 +1,48 @@
1#!/usr/bin/expect -f
2
3set timeout 5
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --name=unbound unbound\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "Child process initialized"
11}
12sleep 2
13
14spawn $env(SHELL)
15send -- "firejail --tree\r"
16expect {
17 timeout {puts "TESTING ERROR 2\n";exit}
18 "unbound:unbound"
19}
20sleep 2
21
22send -- "tail /var/log/syslog\r"
23expect {
24 timeout {puts "TESTING ERROR 3\n";exit}
25 "unbound"
26}
27expect {
28 timeout {puts "TESTING ERROR 4\n";exit}
29 "info: start of service"
30}
31sleep 2
32
33send -- "firejail --join=unbound\r"
34sleep 2
35
36send -- "ls /dev\r"
37expect {
38 timeout {puts "TESTING ERROR 5\n";exit}
39 "tty0" {puts "TESTING ERROR 6\n";exit}
40 "ttyS0" {puts "TESTING ERROR 6\n";exit}
41 "audio" {puts "TESTING ERROR 6\n";exit}
42 "ppp" {puts "TESTING ERROR 6\n";exit}
43 "log"
44}
45sleep 2
46
47
48puts "\nall done\n"