aboutsummaryrefslogtreecommitdiffstats
path: root/test/net_none.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-08-08 19:12:30 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-08-08 19:12:30 -0400
commit1379851360349d6617ad32944a25ee5e2bb74fc2 (patch)
treef69b48e90708bfa3c2723d5a27ed3e024c827b43 /test/net_none.exp
parentdelete files (diff)
downloadfirejail-1379851360349d6617ad32944a25ee5e2bb74fc2.tar.gz
firejail-1379851360349d6617ad32944a25ee5e2bb74fc2.tar.zst
firejail-1379851360349d6617ad32944a25ee5e2bb74fc2.zip
Baseline firejail 0.9.28
Diffstat (limited to 'test/net_none.exp')
-rwxr-xr-xtest/net_none.exp36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/net_none.exp b/test/net_none.exp
new file mode 100755
index 000000000..dfa14a211
--- /dev/null
+++ b/test/net_none.exp
@@ -0,0 +1,36 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --net=none\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "eth0" {puts "TESTING ERROR 0.1\n";exit}
11 "Child process initialized"
12}
13sleep 1
14
15# test default gw
16send -- "bash\r"
17sleep 1
18send -- "netstat -rn; pwd\r"
19expect {
20 timeout {puts "TESTING ERROR 1\n";exit}
21 "0.0.0.0" {puts "TESTING ERROR 1.1\n";exit}
22 "home"
23}
24sleep 1
25
26# check again devices
27send -- "cat /proc/1/net/dev;pwd\r"
28expect {
29 timeout {puts "TESTING ERROR 2\n";exit}
30 "eth0" {puts "TESTING ERROR 2.1\n";exit}
31 "home"
32}
33sleep 1
34
35
36puts "\n"