aboutsummaryrefslogtreecommitdiffstats
path: root/test/fs/whitelist-whitespace.exp
blob: 959fb9409bbd236cf5b139977d697b6f154a6375 (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
#!/usr/bin/expect -f

set timeout 10
spawn $env(SHELL)
match_max 100000

send -- "touch ~/filewith\\\ \\\ many\\\ whitespaces\\\ \r"
after 100

send -- "firejail --noprofile --whitelist=~/filewith\\\ \\\ many\\\ whitespaces\\\ \r"
expect {
	timeout {puts "TESTING ERROR 1\n";exit}
	"Child process initialized"
}
sleep 1

send -- "ls ~\r"
expect {
	timeout {puts "TESTING ERROR 3\n";exit}
	"filewith  many whitespaces "
}
after 100

send -- "exit\r"
sleep 1

send -- "rm -v ~/filewith\\\ \\\ many\\\ whitespaces\\\ \r"
expect {
	timeout {puts "TESTING ERROR 4\n";exit}
	"removed"
}
after 100

puts "\nall done\n"