aboutsummaryrefslogtreecommitdiffstats
path: root/test/fs/whitelist-downloads.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2018-04-04 14:09:09 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2018-04-04 14:09:09 -0400
commit2e11e0dbd2850053a37453e87e2e8d8617634b3d (patch)
treed8700d07d472f97d677c9d534b9ddf7a7c9ff483 /test/fs/whitelist-downloads.exp
parentfix a0502dc5144185b6d346e92944e3359a833d2378, various enhancements (diff)
downloadfirejail-2e11e0dbd2850053a37453e87e2e8d8617634b3d.tar.gz
firejail-2e11e0dbd2850053a37453e87e2e8d8617634b3d.tar.zst
firejail-2e11e0dbd2850053a37453e87e2e8d8617634b3d.zip
testing
Diffstat (limited to 'test/fs/whitelist-downloads.exp')
-rwxr-xr-xtest/fs/whitelist-downloads.exp48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/fs/whitelist-downloads.exp b/test/fs/whitelist-downloads.exp
deleted file mode 100755
index b82ca8eea..000000000
--- a/test/fs/whitelist-downloads.exp
+++ /dev/null
@@ -1,48 +0,0 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2018 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "cp user-dirs.dirs /tmp/.\r"
11after 100
12
13send -- "firejail --private --noprofile\r"
14expect {
15 timeout {puts "TESTING ERROR 0\n";exit}
16 "Child process initialized"
17}
18after 100
19
20send -- "firejail --force --ignore=shell --profile=/etc/firejail/firefox.profile\r"
21expect {
22 timeout {puts "TESTING ERROR 1\n";exit}
23 "cannot whitelist Downloads directory"
24}
25expect {
26 timeout {puts "TESTING ERROR 2\n";exit}
27 "Child process initialized"
28}
29after 100
30
31send -- "exit\r"
32after 100
33
34send -- "cp /tmp/user-dirs.dirs ~/.config/.\r"
35after 100
36
37send -- "firejail --force --ignore=shell --profile=/etc/firejail/firefox.profile\r"
38expect {
39 timeout {puts "TESTING ERROR 3\n";exit}
40 "cannot whitelist Downloads directory"
41}
42expect {
43 timeout {puts "TESTING ERROR 4\n";exit}
44 "Child process initialized"
45}
46after 100
47
48puts "\nall done\n"