aboutsummaryrefslogtreecommitdiffstats
path: root/test/transmission-gtk-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/transmission-gtk-x11.exp
parenthexchat profile (diff)
downloadfirejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.gz
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.tar.zst
firejail-7e1c057aeda3b598838cb66b9e827fc087f70c54.zip
make testing
Diffstat (limited to 'test/transmission-gtk-x11.exp')
-rwxr-xr-xtest/transmission-gtk-x11.exp82
1 files changed, 0 insertions, 82 deletions
diff --git a/test/transmission-gtk-x11.exp b/test/transmission-gtk-x11.exp
deleted file mode 100755
index 4ee3de701..000000000
--- a/test/transmission-gtk-x11.exp
+++ /dev/null
@@ -1,82 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --name=test --net=br0 --x11 transmission-gtk\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 "transmission-gtk"
19}
20sleep 1
21
22# grsecurity exit
23send -- "file /proc/sys/kernel/grsecurity\r"
24expect {
25 timeout {puts "TESTING ERROR - grsecurity detection\n";exit}
26 "grsecurity: directory" {puts "grsecurity present, exiting...\n";exit}
27 "cannot open" {puts "grsecurity not present\n"}
28}
29
30send -- "firejail --name=blablabla\r"
31expect {
32 timeout {puts "TESTING ERROR 4\n";exit}
33 "Child process initialized"
34}
35sleep 2
36
37spawn $env(SHELL)
38send -- "firemon --seccomp\r"
39expect {
40 timeout {puts "TESTING ERROR 5\n";exit}
41 ":firejail"
42}
43expect {
44 timeout {puts "TESTING ERROR 5.0\n";exit}
45 "transmission-gtk"
46}
47expect {
48 timeout {puts "TESTING ERROR 5.1 (seccomp)\n";exit}
49 "Seccomp: 2"
50}
51expect {
52 timeout {puts "TESTING ERROR 5.1\n";exit}
53 "name=blablabla"
54}
55sleep 1
56send -- "firemon --caps\r"
57expect {
58 timeout {puts "TESTING ERROR 6\n";exit}
59 ":firejail"
60}
61expect {
62 timeout {puts "TESTING ERROR 6.0\n";exit}
63 "transmission-gtk"
64}
65expect {
66 timeout {puts "TESTING ERROR 6.1\n";exit}
67 "CapBnd"
68}
69expect {
70 timeout {puts "TESTING ERROR 6.2\n";exit}
71 "0000000000000000"
72}
73expect {
74 timeout {puts "TESTING ERROR 6.3\n";exit}
75 "name=blablabla"
76}
77sleep 1
78send -- "firejail --shutdown=test\r"
79sleep 3
80
81puts "\nall done\n"
82