aboutsummaryrefslogtreecommitdiffstats
path: root/test/private-etc/groups.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/private-etc/groups.exp')
-rwxr-xr-xtest/private-etc/groups.exp132
1 files changed, 132 insertions, 0 deletions
diff --git a/test/private-etc/groups.exp b/test/private-etc/groups.exp
new file mode 100755
index 000000000..fed6d40b0
--- /dev/null
+++ b/test/private-etc/groups.exp
@@ -0,0 +1,132 @@
1#!/usr/bin/expect -f
2# This file is part of Firejail project
3# Copyright (C) 2014-2022 Firejail Authors
4# License GPL v2
5
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "firejail --private-etc ls -l /etc\r"
11expect {
12 timeout {puts "TESTING ERROR 0\n";exit}
13 "Private /etc installed in"
14}
15expect {
16 timeout {puts "TESTING ERROR 1\n";exit}
17 "cron" {puts "TESTING ERROR 2\n"; exit}
18 "shadow" {puts "TESTING ERROR 3\n"; exit}
19 "ssl" {puts "TESTING ERROR 4\n"; exit}
20 "ld.so.cache"
21}
22expect {
23 timeout {puts "TESTING ERROR 5\n";exit}
24 "cron" {puts "TESTING ERROR 2\n"; exit}
25 "shadow" {puts "TESTING ERROR 3\n"; exit}
26 "ssl" {puts "TESTING ERROR 4\n"; exit}
27 "nsswitch.conf"
28}
29expect {
30 timeout {puts "TESTING ERROR 6\n";exit}
31 "cron" {puts "TESTING ERROR 2\n"; exit}
32 "shadow" {puts "TESTING ERROR 3\n"; exit}
33 "ssl" {puts "TESTING ERROR 4\n"; exit}
34 "resolv.conf"
35}
36expect {
37 timeout {puts "TESTING ERROR 7\n";exit}
38 "cron" {puts "TESTING ERROR 2\n"; exit}
39 "shadow" {puts "TESTING ERROR 3\n"; exit}
40 "xdg" {puts "TESTING ERROR 4\n"; exit}
41 "Parent is shutting down"
42}
43after 500
44
45
46send -- "firejail --private-etc=@tls-ca ls -l /etc\r"
47expect {
48 timeout {puts "TESTING ERROR 10\n";exit}
49 "Private /etc installed in"
50}
51expect {
52 timeout {puts "TESTING ERROR 11\n";exit}
53 "cron" {puts "TESTING ERROR 12\n"; exit}
54 "shadow" {puts "TESTING ERROR 13\n"; exit}
55 "ca-certificates"
56}
57expect {
58 timeout {puts "TESTING ERROR 14\n";exit}
59 "cron" {puts "TESTING ERROR 12\n"; exit}
60 "shadow" {puts "TESTING ERROR 13\n"; exit}
61 "nsswitch.conf"
62}
63expect {
64 timeout {puts "TESTING ERROR 15\n";exit}
65 "cron" {puts "TESTING ERROR 12\n"; exit}
66 "shadow" {puts "TESTING ERROR 13\n"; exit}
67 "resolv.conf"
68}
69expect {
70 timeout {puts "TESTING ERROR 16\n";exit}
71 "cron" {puts "TESTING ERROR 12\n"; exit}
72 "shadow" {puts "TESTING ERROR 13\n"; exit}
73 "ssl"
74}
75after 500
76
77
78send -- "firejail --private-etc --nosound ls -l /etc\r"
79expect {
80 timeout {puts "TESTING ERROR 20\n";exit}
81 "Private /etc installed in"
82}
83expect {
84 timeout {puts "TESTING ERROR 21\n";exit}
85 "cron" {puts "TESTING ERROR 22\n"; exit}
86 "shadow" {puts "TESTING ERROR 23\n"; exit}
87 "machine-id" {puts "TESTING ERROR 24\n"; exit}
88 "nsswitch.conf"
89}
90expect {
91 timeout {puts "TESTING ERROR 25\n";exit}
92 "Parent is shutting down"
93}
94after 500
95
96send -- "firejail --private-etc --net=none ls -l /etc\r"
97expect {
98 timeout {puts "TESTING ERROR 30\n";exit}
99 "Private /etc installed in"
100}
101expect {
102 timeout {puts "TESTING ERROR 31\n";exit}
103 "cron" {puts "TESTING ERROR 32\n"; exit}
104 "shadow" {puts "TESTING ERROR 33\n"; exit}
105 "nsswitch.conf"
106}
107expect {
108 timeout {puts "TESTING ERROR 34\n";exit}
109 "resolv.conf" {puts "TESTING ERROR 35\n"; exit}
110 "Parent is shutting down"
111}
112after 500
113
114send -- "firejail --private-etc=@x11 ls -l /etc\r"
115expect {
116 timeout {puts "TESTING ERROR 40\n";exit}
117 "Private /etc installed in"
118}
119expect {
120 timeout {puts "TESTING ERROR 41\n";exit}
121 "cron" {puts "TESTING ERROR 42\n"; exit}
122 "shadow" {puts "TESTING ERROR 43\n"; exit}
123 "nsswitch.conf"
124}
125expect {
126 timeout {puts "TESTING ERROR 44\n";exit}
127 "xdg"
128}
129after 100
130
131
132puts "\nall done\n"