aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-08-20 09:06:07 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-08-20 09:06:07 -0400
commitcb585cc82af4318a888470a7da82cc89dd01774d (patch)
treeac68cbaa7f0464f097135984e55f2b2596497e8a /test
parentMerge pull request #34 from pmillerchip/make-install (diff)
downloadfirejail-cb585cc82af4318a888470a7da82cc89dd01774d.tar.gz
firejail-cb585cc82af4318a888470a7da82cc89dd01774d.tar.zst
firejail-cb585cc82af4318a888470a7da82cc89dd01774d.zip
testing
Diffstat (limited to 'test')
-rwxr-xr-xtest/blacklist.exp76
-rw-r--r--test/blacklist1.profile1
-rw-r--r--test/blacklist2.profile1
-rwxr-xr-xtest/private-etc.exp46
-rwxr-xr-xtest/test.sh8
5 files changed, 132 insertions, 0 deletions
diff --git a/test/blacklist.exp b/test/blacklist.exp
new file mode 100755
index 000000000..70012d167
--- /dev/null
+++ b/test/blacklist.exp
@@ -0,0 +1,76 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7# directory with ~
8send -- "firejail --blacklist=~/.config\r"
9expect {
10 timeout {puts "TESTING ERROR 1\n";exit}
11 "Child process initialized"
12}
13sleep 1
14
15send -- "ls -al ~/.config\r"
16expect {
17 timeout {puts "TESTING ERROR 2\n";exit}
18 "cannot open directory"
19}
20
21send -- "exit\r"
22sleep 1
23
24# directory with ~ in profile file
25send -- "firejail --profile=blacklist1.profile\r"
26expect {
27 timeout {puts "TESTING ERROR 3\n";exit}
28 "Child process initialized"
29}
30sleep 1
31
32send -- "ls -al ~/.config\r"
33expect {
34 timeout {puts "TESTING ERROR 4\n";exit}
35 "cannot open directory"
36}
37
38send -- "exit\r"
39sleep 1
40
41
42# directory with space
43send -- "firejail \"--blacklist=dir with space\"\r"
44expect {
45 timeout {puts "TESTING ERROR 5\n";exit}
46 "Child process initialized"
47}
48sleep 1
49
50send -- "ls -al \"dir with space\"\r"
51expect {
52 timeout {puts "TESTING ERROR 6\n";exit}
53 "cannot open directory"
54}
55
56send -- "exit\r"
57sleep 1
58
59# directory with space in profile
60send -- "firejail --profile=blacklist2.profile\r"
61expect {
62 timeout {puts "TESTING ERROR 7\n";exit}
63 "Child process initialized"
64}
65sleep 1
66
67send -- "ls -al \"dir with space\"\r"
68expect {
69 timeout {puts "TESTING ERROR 8\n";exit}
70 "cannot open directory"
71}
72
73
74
75puts "\n"
76
diff --git a/test/blacklist1.profile b/test/blacklist1.profile
new file mode 100644
index 000000000..f12facd05
--- /dev/null
+++ b/test/blacklist1.profile
@@ -0,0 +1 @@
blacklist ~/.config
diff --git a/test/blacklist2.profile b/test/blacklist2.profile
new file mode 100644
index 000000000..4bb603db2
--- /dev/null
+++ b/test/blacklist2.profile
@@ -0,0 +1 @@
blacklist dir with space
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
diff --git a/test/test.sh b/test/test.sh
index 5fe01eb2a..83d249b4f 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -4,6 +4,14 @@
4 4
5./fscheck.sh 5./fscheck.sh
6 6
7echo "TESTING: private-etc"
8./private-etc.exp
9
10mkdir dir\ with\ space
11echo "TESTING: blacklist"
12./blacklist.exp
13rm -fr dir\ with\ space
14
7echo "TESTING: version" 15echo "TESTING: version"
8./option_version.exp 16./option_version.exp
9 17