aboutsummaryrefslogtreecommitdiffstats
path: root/test/hexchat.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-11-28 07:37:32 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2015-11-28 07:37:32 -0500
commit2b8b8e54968d068599d5800f88869efcadd316ac (patch)
tree692c29ee317a72c9c9a4bb11101084ca910bb651 /test/hexchat.exp
parentweechat profile integration (diff)
downloadfirejail-2b8b8e54968d068599d5800f88869efcadd316ac.tar.gz
firejail-2b8b8e54968d068599d5800f88869efcadd316ac.tar.zst
firejail-2b8b8e54968d068599d5800f88869efcadd316ac.zip
profile cleanup, addinghexchat profile
Diffstat (limited to 'test/hexchat.exp')
-rwxr-xr-xtest/hexchat.exp71
1 files changed, 71 insertions, 0 deletions
diff --git a/test/hexchat.exp b/test/hexchat.exp
new file mode 100755
index 000000000..0653bcb13
--- /dev/null
+++ b/test/hexchat.exp
@@ -0,0 +1,71 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail hexchat\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "Reading profile /etc/firejail/hexchat.profile"
11}
12expect {
13 timeout {puts "TESTING ERROR 1\n";exit}
14 "Child process initialized"
15}
16sleep 3
17
18spawn $env(SHELL)
19send -- "firejail --list\r"
20expect {
21 timeout {puts "TESTING ERROR 3\n";exit}
22 ":firejail"
23}
24expect {
25 timeout {puts "TESTING ERROR 3.1\n";exit}
26 "hexchat"
27}
28sleep 1
29send -- "firejail --name=blablabla\r"
30expect {
31 timeout {puts "TESTING ERROR 4\n";exit}
32 "Child process initialized"
33}
34sleep 2
35
36spawn $env(SHELL)
37send -- "firemon --seccomp\r"
38expect {
39 timeout {puts "TESTING ERROR 5\n";exit}
40 "hexchat"
41}
42expect {
43 timeout {puts "TESTING ERROR 5.1 (seccomp)\n";exit}
44 "Seccomp: 2"
45}
46expect {
47 timeout {puts "TESTING ERROR 5.1\n";exit}
48 "name=blablabla"
49}
50sleep 1
51send -- "firemon --caps\r"
52expect {
53 timeout {puts "TESTING ERROR 6\n";exit}
54 "hexchat"
55}
56expect {
57 timeout {puts "TESTING ERROR 6.1\n";exit}
58 "CapBnd:"
59}
60expect {
61 timeout {puts "TESTING ERROR 6.2\n";exit}
62 "0000000000000000"
63}
64expect {
65 timeout {puts "TESTING ERROR 6.3\n";exit}
66 "name=blablabla"
67}
68sleep 1
69
70puts "\n"
71