aboutsummaryrefslogtreecommitdiffstats
path: root/test/filters/seccomp-chmod-profile.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-30 07:31:21 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-30 07:31:21 -0400
commitea774178f6d8f613c96c0d001fed200155b704b7 (patch)
treeee2de7fcce0499dcb21cf475a068fe8957ab07bb /test/filters/seccomp-chmod-profile.exp
parentadded make test-filters (diff)
downloadfirejail-ea774178f6d8f613c96c0d001fed200155b704b7.tar.gz
firejail-ea774178f6d8f613c96c0d001fed200155b704b7.tar.zst
firejail-ea774178f6d8f613c96c0d001fed200155b704b7.zip
added make test-filters
Diffstat (limited to 'test/filters/seccomp-chmod-profile.exp')
-rwxr-xr-xtest/filters/seccomp-chmod-profile.exp49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/filters/seccomp-chmod-profile.exp b/test/filters/seccomp-chmod-profile.exp
new file mode 100755
index 000000000..9683fad90
--- /dev/null
+++ b/test/filters/seccomp-chmod-profile.exp
@@ -0,0 +1,49 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2016 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail --profile=seccomp.profile --private\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 "Child process initialized"
14}
15sleep 2
16
17send -- "touch testfile;pwd\r"
18expect {
19 timeout {puts "TESTING ERROR 1\n";exit}
20 "/root" {puts "running as root"}
21 "/home"
22}
23
24send -- "ls -l testfile;pwd\r"
25expect {
26 timeout {puts "TESTING ERROR 2\n";exit}
27 "testfile"
28}
29expect {
30 timeout {puts "TESTING ERROR 3\n";exit}
31 "/root" {puts "running as root"}
32 "/home"
33}
34
35send -- "chmod +x testfile;pwd\r"
36expect {
37 timeout {puts "TESTING ERROR 2\n";exit}
38 "Bad system call"
39}
40expect {
41 timeout {puts "TESTING ERROR 3\n";exit}
42 "/root" {puts "running as root"}
43 "/home"
44}
45
46
47send -- "exit\r"
48sleep 1
49puts "\n"