aboutsummaryrefslogtreecommitdiffstats
path: root/test/blacklist-link.exp
blob: da52cae4aace712b4ed3b66860351ad7ef6f248f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/expect -f

set timeout 10
spawn $env(SHELL)
match_max 100000

# blacklist a directory symlink
send -- "firejail --blacklist=auto2\r"
expect {
	timeout {puts "TESTING ERROR 1\n";exit}
	"directory link was not blacklisted"
}
expect {
	timeout {puts "TESTING ERROR 1.1\n";exit}
	"Child process initialized"
}
sleep 1

send -- "file auto2\r"
expect {
	timeout {puts "TESTING ERROR 2\n";exit}
	"symbolic link to"
}
send -- "exit\r"
sleep 1

# blacklist a directory symlink from a profile file
send -- "firejail --profile=blacklist3.profile\r"
expect {
	timeout {puts "TESTING ERROR 3\n";exit}
	"directory link was not blacklisted"
}
expect {
	timeout {puts "TESTING ERROR 3.1\n";exit}
	"Child process initialized"
}
sleep 1

send -- "file auto2\r"
expect {
	timeout {puts "TESTING ERROR 4\n";exit}
	"symbolic link to"
}
send -- "exit\r"
sleep 1



puts "all done\n"