aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile_tmpfs.exp
blob: a2faa32f780b42b24e29a8e7d62fcf11d9f27677 (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
#!/usr/bin/expect -f

set timeout 10
spawn $env(SHELL)
match_max 100000

send -- "mkdir /tmp/firejailtestdir\r"
sleep 1
send -- "ls > /tmp/firejailtestdir/tmpfile\r"
sleep 1

send -- "firejail --profile=tmpfs.profile\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"Child process initialized"
}

# testing private only
send -- "bash\r"
sleep 1

send -- "ls -l /tmp/firejailtestdir;pwd\r"
expect {
	timeout {puts "TESTING ERROR 1.1\n";exit}
	"tmpfile" {puts "TESTING ERROR 1\n";exit}
	"home"
}
sleep 1
send -- "exit\r"
sleep 1
send -- "exit\r"
sleep 1
send -- "rm -fr  /tmp/firejailtestdir\r"

sleep 1

puts "\n"