firejail/test/root/option_tmpfs.exp
2016-11-10 20:15:22 -05:00

40 lines
652 B
Text
Executable file

#!/usr/bin/expect -f
set timeout 10
spawn $env(SHELL)
match_max 100000
send -- "firejail --tmpfs=/var\r"
expect {
timeout {puts "TESTING ERROR 0\n";exit}
"Child process initialized"
}
sleep 1
send -- "ls -l /var;pwd\r"
expect {
timeout {puts "TESTING ERROR 1\n";exit}
"total 0"
}
after 100
send -- "exit\r"
sleep 1
send -- "firejail --debug-check-filename --tmpfs=\"bla&&bla\"\r"
expect {
timeout {puts "TESTING ERROR 13.1\n";exit}
"Checking filename bla&&bla"
}
expect {
timeout {puts "TESTING ERROR 13.2\n";exit}
"Error:"
}
expect {
timeout {puts "TESTING ERROR 13.3\n";exit}
"is an invalid filename"
}
after 100
puts "\nall done\n"