summaryrefslogtreecommitdiffstats
path: root/test/firefox-x11.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 16:16:51 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 16:16:51 -0400
commit7e1c057aeda3b598838cb66b9e827fc087f70c54 (patch)
tree6d13b82ed69f1d3a5b5973072e2b5cc3ea3eca16 /test/firefox-x11.exp
parenthexchat profile (diff)
downloadfirejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.gz
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.zst
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.zip
make testing
Diffstat (limited to 'test/firefox-x11.exp')
-rwxr-xr-xtest/firefox-x11.exp87
1 files changed, 0 insertions, 87 deletions
diff --git a/test/firefox-x11.exp b/test/firefox-x11.exp
deleted file mode 100755
index 7e30437db..000000000
--- a/test/firefox-x11.exp
+++ /dev/null
@@ -1,87 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --name=test --x11 --net=br0 firefox -no-remote www.gentoo.org\r"
8sleep 10
9
10spawn $env(SHELL)
11send -- "firejail --list\r"
12expect {
13 timeout {puts "TESTING ERROR 3\n";exit}
14 ":firejail"
15}
16expect {
17 timeout {puts "TESTING ERROR 3.1\n";exit}
18 "firefox" {puts "firefox detected\n";}
19 "iceweasel" {puts "iceweasel detected\n";}
20}
21expect {
22 timeout {puts "TESTING ERROR 3.2\n";exit}
23 "no-remote"
24}
25sleep 1
26# grsecurity exit
27send -- "file /proc/sys/kernel/grsecurity\r"
28expect {
29 timeout {puts "TESTING ERROR - grsecurity detection\n";exit}
30 "grsecurity: directory" {puts "grsecurity present, exiting...\n";exit}
31 "cannot open" {puts "grsecurity not present\n"}
32}
33send -- "firejail --name=blablabla\r"
34expect {
35 timeout {puts "TESTING ERROR 4\n";exit}
36 "Child process initialized"
37}
38sleep 2
39
40spawn $env(SHELL)
41send -- "firemon --seccomp\r"
42expect {
43 timeout {puts "TESTING ERROR 5\n";exit}
44 " firefox" {puts "firefox detected\n";}
45 " iceweasel" {puts "iceweasel detected\n";}
46}
47expect {
48 timeout {puts "TESTING ERROR 5.0\n";exit}
49 "no-remote"
50}
51expect {
52 timeout {puts "TESTING ERROR 5.1 (seccomp)\n";exit}
53 "Seccomp: 2"
54}
55expect {
56 timeout {puts "TESTING ERROR 5.1\n";exit}
57 "name=blablabla"
58}
59sleep 1
60send -- "firemon --caps\r"
61expect {
62 timeout {puts "TESTING ERROR 6\n";exit}
63 " firefox" {puts "firefox detected\n";}
64 " iceweasel" {puts "iceweasel detected\n";}
65}
66expect {
67 timeout {puts "TESTING ERROR 6.0\n";exit}
68 "no-remote"
69}
70expect {
71 timeout {puts "TESTING ERROR 6.1\n";exit}
72 "CapBnd:"
73}
74expect {
75 timeout {puts "TESTING ERROR 6.2\n";exit}
76 "0000000000000000"
77}
78expect {
79 timeout {puts "TESTING ERROR 6.3\n";exit}
80 "name=blablabla"
81}
82sleep 1
83send -- "firejail --shutdown=test\r"
84sleep 3
85
86puts "\nall done\n"
87