aboutsummaryrefslogtreecommitdiffstats
path: root/test/net_defaultgw2.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/net_defaultgw2.exp')
-rwxr-xr-xtest/net_defaultgw2.exp65
1 files changed, 65 insertions, 0 deletions
diff --git a/test/net_defaultgw2.exp b/test/net_defaultgw2.exp
new file mode 100755
index 000000000..be9b4882a
--- /dev/null
+++ b/test/net_defaultgw2.exp
@@ -0,0 +1,65 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7# check ip address
8send -- "firejail --net=br0 --net=br1 --defaultgw=10.10.30.89\r"
9expect {
10 timeout {puts "TESTING ERROR 0\n";exit}
11 "eth1"
12}
13expect {
14 timeout {puts "TESTING ERROR 4\n";exit}
15 "Child process initialized"
16}
17
18# check default gateway
19send -- "bash\r"
20sleep 1
21send -- "netstat -rn;pwd\r"
22expect {
23 timeout {puts "TESTING ERROR 10.1\n";exit}
24 "0.0.0.0"
25}
26expect {
27 timeout {puts "TESTING ERROR 10.2\n";exit}
28 "10.10.30.89"
29}
30expect {
31 timeout {puts "TESTING ERROR 10.3\n";exit}
32 "eth1"
33}
34expect {
35 timeout {puts "TESTING ERROR 10.4\n";exit}
36 "10.10.20.0"
37}
38expect {
39 timeout {puts "TESTING ERROR 10.5\n";exit}
40 "0.0.0.0"
41}
42expect {
43 timeout {puts "TESTING ERROR 10.6\n";exit}
44 "eth0"
45}
46expect {
47 timeout {puts "TESTING ERROR 10.4\n";exit}
48 "10.10.30.0"
49}
50expect {
51 timeout {puts "TESTING ERROR 10.5\n";exit}
52 "0.0.0.0"
53}
54expect {
55 timeout {puts "TESTING ERROR 10.6\n";exit}
56 "eth1"
57}
58expect {
59 timeout {puts "TESTING ERROR 10\n";exit}
60 "home"
61}
62sleep 1
63
64puts "\n"
65