aboutsummaryrefslogtreecommitdiffstats
path: root/test/network/net_noip2.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-05-03 08:41:24 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-05-03 08:41:24 -0400
commit57bea6c8c4d1bd666ce57057b1cbb681b3cc4afc (patch)
tree60f90718665a1a812b552f589bc4d85616232df1 /test/network/net_noip2.exp
parentMerge branch 'master' of https://github.com/netblue30/firejail (diff)
downloadfirejail-57bea6c8c4d1bd666ce57057b1cbb681b3cc4afc.tar.gz
firejail-57bea6c8c4d1bd666ce57057b1cbb681b3cc4afc.tar.zst
firejail-57bea6c8c4d1bd666ce57057b1cbb681b3cc4afc.zip
networking features testing
Diffstat (limited to 'test/network/net_noip2.exp')
-rwxr-xr-xtest/network/net_noip2.exp41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/network/net_noip2.exp b/test/network/net_noip2.exp
new file mode 100755
index 000000000..58f90422b
--- /dev/null
+++ b/test/network/net_noip2.exp
@@ -0,0 +1,41 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7# check ip address
8send -- "firejail --noprofile --net=br1 --ip=none --defaultgw=10.10.30.78\r"
9expect {
10 timeout {puts "TESTING ERROR 0\n";exit}
11 "eth0" {puts "TESTING ERROR 1\n";exit}
12 "Child process initialized"
13}
14sleep 1
15send -- "bash\r"
16sleep 1
17
18# no default gateway configured
19send -- "netstat -rn;pwd\r"
20expect {
21 timeout {puts "TESTING ERROR 2\n";exit}
22 "0.0.0.0" {puts "TESTING ERROR 3\n";exit}
23 "eth0" {puts "TESTING ERROR 4\n";exit}
24 "home"
25}
26sleep 1
27
28# eth0 configured
29send -- "/sbin/ifconfig;pwd\r"
30expect {
31 timeout {puts "TESTING ERROR 5\n";exit}
32 "eth0"
33}
34expect {
35 timeout {puts "TESTING ERROR 6\n";exit}
36 "home"
37}
38after 100
39
40puts "all done\n"
41