aboutsummaryrefslogtreecommitdiffstats
path: root/test/environment
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-03-24 07:55:44 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2017-03-24 07:55:44 -0400
commit5ff53a2ca729ad687a323f782594420065148588 (patch)
treeba8241b684fc70cef6ef8b30ad50b25feabaf505 /test/environment
parentmerge #1100 from zackw: xvfb support in /etc/firejail/firejail.config (diff)
downloadfirejail-5ff53a2ca729ad687a323f782594420065148588.tar.gz
firejail-5ff53a2ca729ad687a323f782594420065148588.tar.zst
firejail-5ff53a2ca729ad687a323f782594420065148588.zip
testing
Diffstat (limited to 'test/environment')
-rwxr-xr-xtest/environment/environment.sh6
-rw-r--r--test/environment/hostfile1
-rwxr-xr-xtest/environment/hostfile.exp32
-rwxr-xr-xtest/environment/machineid.exp25
4 files changed, 64 insertions, 0 deletions
diff --git a/test/environment/environment.sh b/test/environment/environment.sh
index e2b9cb9d4..60ba7f245 100755
--- a/test/environment/environment.sh
+++ b/test/environment/environment.sh
@@ -10,6 +10,12 @@ export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
10echo "TESTING: DNS (test/environment/dns.exp)" 10echo "TESTING: DNS (test/environment/dns.exp)"
11./dns.exp 11./dns.exp
12 12
13echo "TESTING: machine-id (test/environment/machineid.exp)"
14./machineid.exp
15
16echo "TESTING: hosts file (test/environment/hostfile.exp)"
17./hostfile.exp
18
13echo "TESTING: doubledash (test/environment/doubledash.exp" 19echo "TESTING: doubledash (test/environment/doubledash.exp"
14mkdir -- -testdir 20mkdir -- -testdir
15touch -- -testdir/ttt 21touch -- -testdir/ttt
diff --git a/test/environment/hostfile b/test/environment/hostfile
new file mode 100644
index 000000000..913f90c13
--- /dev/null
+++ b/test/environment/hostfile
@@ -0,0 +1 @@
hostfile test
diff --git a/test/environment/hostfile.exp b/test/environment/hostfile.exp
new file mode 100755
index 000000000..06003f744
--- /dev/null
+++ b/test/environment/hostfile.exp
@@ -0,0 +1,32 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2017 Firejail Authors
4# License GPL v2
5
6
7set timeout 10
8spawn $env(SHELL)
9match_max 100000
10
11send -- "firejail --debug --hosts-file=hostfile\r"
12expect {
13 timeout {puts "TESTING ERROR 1\n";exit}
14 "Loading user hosts file"
15}
16expect {
17 timeout {puts "TESTING ERROR 2\n";exit}
18 "Child process initialized"
19}
20after 100
21
22send -- "cat /etc/hosts\r"
23expect {
24 timeout {puts "TESTING ERROR 3\n";exit}
25 "hostfile test"
26}
27
28send -- "exit\r"
29after 100
30
31puts "\nall done\n"
32
diff --git a/test/environment/machineid.exp b/test/environment/machineid.exp
new file mode 100755
index 000000000..85510247b
--- /dev/null
+++ b/test/environment/machineid.exp
@@ -0,0 +1,25 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2017 Firejail Authors
4# License GPL v2
5
6
7set timeout 10
8spawn $env(SHELL)
9match_max 100000
10
11send -- "firejail --debug --machine-id\r"
12expect {
13 timeout {puts "TESTING ERROR 1\n";exit}
14 "Generating a new machine-id"
15}
16expect {
17 timeout {puts "TESTING ERROR 1\n";exit}
18 "Child process initialized"
19}
20after 100
21send -- "exit\r"
22after 100
23
24puts "\nall done\n"
25