aboutsummaryrefslogtreecommitdiffstats
path: root/test/root/unbound.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-09-15 09:59:11 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-09-15 09:59:11 -0400
commitfc116c063938d5e141d5fbc38e8013d9832ef315 (patch)
tree382b401cc0a9efeda1509a88bd430cd68b741346 /test/root/unbound.exp
parentfixed /etc/login.def reading on Mageia systems (diff)
downloadfirejail-fc116c063938d5e141d5fbc38e8013d9832ef315.tar.gz
firejail-fc116c063938d5e141d5fbc38e8013d9832ef315.tar.zst
firejail-fc116c063938d5e141d5fbc38e8013d9832ef315.zip
testing
Diffstat (limited to 'test/root/unbound.exp')
-rwxr-xr-xtest/root/unbound.exp57
1 files changed, 57 insertions, 0 deletions
diff --git a/test/root/unbound.exp b/test/root/unbound.exp
new file mode 100755
index 000000000..193e662ff
--- /dev/null
+++ b/test/root/unbound.exp
@@ -0,0 +1,57 @@
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 unbound\r"
14sleep 2
15
16send -- "firejail --name=unbound unbound\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 "unbound:unbound"
28}
29sleep 2
30
31send -- "tail /var/log/syslog\r"
32expect {
33 timeout {puts "TESTING ERROR 3\n";exit}
34 "unbound"
35}
36expect {
37 timeout {puts "TESTING ERROR 4\n";exit}
38 "info: start of service"
39}
40sleep 2
41
42send -- "firejail --join=unbound\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 "audio" {puts "TESTING ERROR 6\n";exit}
51 "ppp" {puts "TESTING ERROR 6\n";exit}
52 "log"
53}
54sleep 2
55
56
57puts "\nall done\n"