aboutsummaryrefslogtreecommitdiffstats
path: root/test/features/3.5.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/3.5.exp')
-rwxr-xr-xtest/features/3.5.exp83
1 files changed, 0 insertions, 83 deletions
diff --git a/test/features/3.5.exp b/test/features/3.5.exp
deleted file mode 100755
index 93bbfe054..000000000
--- a/test/features/3.5.exp
+++ /dev/null
@@ -1,83 +0,0 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2023 Firejail Authors
4# License GPL v2
5#
6# private-dev
7#
8
9set timeout 10
10spawn $env(SHELL)
11match_max 100000
12set overlay [lindex $argv 0]
13set chroot [lindex $argv 1]
14
15#
16# N
17#
18send -- "firejail --noprofile --private-dev\r"
19expect {
20 timeout {puts "TESTING ERROR 0\n";exit}
21 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
22}
23sleep 1
24
25send -- "ls -l /dev | wc -l\r"
26expect {
27 timeout {puts "TESTING ERROR 1.1\n";exit}
28 "13" { puts "Debian\n"}
29 "12" { puts "Centos\n"}
30}
31
32after 100
33send -- "exit\r"
34sleep 1
35
36#
37# O
38#
39if { $overlay == "overlay" } {
40 send -- "firejail --noprofile --overlay --private-dev\r"
41 expect {
42 timeout {puts "TESTING ERROR 2\n";exit}
43 "overlay option is not available" {puts "grsecurity\n"; exit}
44 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms" {puts "normal system\n"}
45 }
46 sleep 1
47
48 send -- "ls -l /dev | wc -l\r"
49 expect {
50 timeout {puts "TESTING ERROR 3.1\n";exit}
51 "13" { puts "Debian\n"}
52 "12" { puts "Centos\n"}
53 }
54
55 after 100
56 send -- "exit\r"
57 sleep 1
58}
59
60#
61# C
62#
63if { $chroot == "chroot" } {
64 send -- "firejail --noprofile --chroot=/tmp/chroot --private-dev\r"
65 expect {
66 timeout {puts "TESTING ERROR 4\n";exit}
67 -re "Child process initialized in \[0-9\]+.\[0-9\]+ ms"
68 }
69 sleep 1
70
71 send -- "ls -l /dev | wc -l\r"
72 expect {
73 timeout {puts "TESTING ERROR 5.1\n";exit}
74 "12"
75 }
76
77 after 100
78 send -- "exit\r"
79 sleep 1
80}
81
82
83puts "\nall done\n"