From 26ae0b23436a51b09b9be726ef97e27f36579fc9 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Wed, 28 Aug 2019 11:15:18 -0400 Subject: seccomp numeric testing --- test/filters/seccomp-numeric.exp | 44 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 test/filters/seccomp-numeric.exp (limited to 'test/filters/seccomp-numeric.exp') diff --git a/test/filters/seccomp-numeric.exp b/test/filters/seccomp-numeric.exp new file mode 100755 index 000000000..77f6d60b0 --- /dev/null +++ b/test/filters/seccomp-numeric.exp @@ -0,0 +1,44 @@ +#!/usr/bin/expect -f +# This file is part of Firejail project +# Copyright (C) 2014-2019 Firejail Authors +# License GPL v2 + +set timeout 10 +spawn $env(SHELL) +match_max 100000 + +send -- "touch seccomp-test-file\r" +after 100 + +send -- "firejail --seccomp=unlinkat:ENOENT,mkdir:ENOENT rm seccomp-test-file\r" +expect { + timeout {puts "TESTING ERROR 0\n";exit} + "No such file or directory" +} +after 100 + +send -- "firejail --seccomp=\\\$263:ENOENT,mkdir:ENOENT rm seccomp-test-file\r" +expect { + timeout {puts "TESTING ERROR 1\n";exit} + "No such file or directory" +} +after 100 + +send -- "firejail --seccomp=unlinkat:ENOENT,mkdir:ENOENT mkdir seccomp-test-dir\r" +expect { + timeout {puts "TESTING ERROR 2\n";exit} + "No such file or directory" +} +after 100 + +send -- "firejail --seccomp=unlinkat:ENOENT,\\\$83:ENOENT mkdir seccomp-test-dir\r" +expect { + timeout {puts "TESTING ERROR 3\n";exit} + "No such file or directory" +} +after 100 + +send -- "rm seccomp-test-file\r" +#send -- "rm -fr seccomp-test-dir\r" +after 100 +puts "all done\n" -- cgit v1.2.3-70-g09d2