aboutsummaryrefslogtreecommitdiffstats
path: root/test/private-etc.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/private-etc.exp')
-rwxr-xr-xtest/private-etc.exp46
1 files changed, 46 insertions, 0 deletions
diff --git a/test/private-etc.exp b/test/private-etc.exp
new file mode 100755
index 000000000..9df798e22
--- /dev/null
+++ b/test/private-etc.exp
@@ -0,0 +1,46 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7# directory with ~
8send -- "firejail --private-etc=passwd,group,resolv.conf,bash_completion.d,timezone\r"
9expect {
10 timeout {puts "TESTING ERROR 1\n";exit}
11 "Child process initialized"
12}
13sleep 1
14
15send -- "ls -al /etc\r"
16expect {
17 timeout {puts "TESTING ERROR 2\n";exit}
18 "bash_completion.d"
19}
20expect {
21 timeout {puts "TESTING ERROR 3\n";exit}
22 "group"
23}
24expect {
25 timeout {puts "TESTING ERROR 4\n";exit}
26 "passwd"
27}
28expect {
29 timeout {puts "TESTING ERROR 5\n";exit}
30 "resolv.conf"
31}
32expect {
33 timeout {puts "TESTING ERROR 6\n";exit}
34 "timezone"
35}
36
37send -- "ls -al /etc\r"
38expect {
39 timeout {puts "TESTING ERROR 7\n";exit}
40 "shadow" {puts "TESTING ERROR 8\n";exit}
41 "timezone"
42}
43
44sleep 1
45puts "\n"
46