aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-02-24 20:37:35 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-02-24 20:37:35 -0500
commit2531759b80fbfcfbe296bd4bab329c61b7757c92 (patch)
treecc428443a3dbf5578882100ac45a9f6239fb430d /test
parentNew profiles: qpdf and redirects (#5675) (diff)
downloadfirejail-2531759b80fbfcfbe296bd4bab329c61b7757c92.tar.gz
firejail-2531759b80fbfcfbe296bd4bab329c61b7757c92.tar.zst
firejail-2531759b80fbfcfbe296bd4bab329c61b7757c92.zip
more private-etc
Diffstat (limited to 'test')
-rwxr-xr-xtest/sysutils/less.exp20
-rwxr-xr-xtest/sysutils/man.exp13
-rwxr-xr-xtest/sysutils/sysutils.sh8
-rwxr-xr-xtest/sysutils/xzdec.exp29
4 files changed, 21 insertions, 49 deletions
diff --git a/test/sysutils/less.exp b/test/sysutils/less.exp
index 9e19af83a..182e259e1 100755
--- a/test/sysutils/less.exp
+++ b/test/sysutils/less.exp
@@ -7,17 +7,19 @@ set timeout 10
7spawn $env(SHELL) 7spawn $env(SHELL)
8match_max 100000 8match_max 100000
9 9
10send -- "firejail less sysutils.sh\r" 10send -- "rm -f /tmp/tt\r"
11after 500
12
13send -- "firejail less sysutils.sh > /tmp/t\r"
14sleep 1
15
16send -- "cat /tmp/t | grep Authors\r"
11expect { 17expect {
12 timeout {puts "TESTING ERROR 1\n";exit} 18 timeout {puts "TESTING ERROR 0\n";exit}
13 "(press RETURN)" {puts "TESTING SKIP: terminal is not fully functional - 1.1\n";exit}
14 "Press RETURN to continue" {puts "TESTING SKIP: terminal is not fully functional - 1.2\n";exit}
15 "Firejail Authors" 19 "Firejail Authors"
16} 20}
17expect {
18 timeout {puts "TESTING ERROR 2\n";exit}
19 "MALLOC_CHECK"
20}
21
22after 100 21after 100
22
23send -- "rm -f /tmp/t\r"
24after 500
23puts "\nall done\n" 25puts "\nall done\n"
diff --git a/test/sysutils/man.exp b/test/sysutils/man.exp
index f4fc5aa2c..0386b2e92 100755
--- a/test/sysutils/man.exp
+++ b/test/sysutils/man.exp
@@ -7,12 +7,19 @@ set timeout 10
7spawn $env(SHELL) 7spawn $env(SHELL)
8match_max 100000 8match_max 100000
9 9
10send -- "firejail man firejail\r" 10send -- "rm -f /tmp/t\r"
11after 500
12
13send -- "firejail man firejail > /tmp/t\r"
14sleep 1
15
16send -- "cat /tmp/t\r"
11expect { 17expect {
12 timeout {puts "TESTING ERROR 0\n";exit} 18 timeout {puts "TESTING ERROR 0\n";exit}
13 "(press RETURN)" {puts "TESTING SKIP: terminal is not fully functional - 1.1\n";exit}
14 "Press RETURN to continue" {puts "TESTING SKIP: terminal is not fully functional - 1.2\n";exit}
15 "NAME" 19 "NAME"
16} 20}
17after 100 21after 100
22
23send -- "rm -f /tmp/t\r"
24after 500
18puts "\nall done\n" 25puts "\nall done\n"
diff --git a/test/sysutils/sysutils.sh b/test/sysutils/sysutils.sh
index 34acca07d..231f5afa8 100755
--- a/test/sysutils/sysutils.sh
+++ b/test/sysutils/sysutils.sh
@@ -47,14 +47,6 @@ else
47 echo "TESTING SKIP: gzip not found" 47 echo "TESTING SKIP: gzip not found"
48fi 48fi
49 49
50if command -v xzdec
51then
52 echo "TESTING: xzdec"
53 ./xzdec.exp
54else
55 echo "TESTING SKIP: xzdec not found"
56fi
57
58if command -v xz 50if command -v xz
59then 51then
60 echo "TESTING: xz" 52 echo "TESTING: xz"
diff --git a/test/sysutils/xzdec.exp b/test/sysutils/xzdec.exp
deleted file mode 100755
index 62cc1c225..000000000
--- a/test/sysutils/xzdec.exp
+++ /dev/null
@@ -1,29 +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
6set timeout 10
7spawn $env(SHELL)
8match_max 100000
9
10send -- "/usr/bin/xz -c /usr/bin/firejail > firejail_t3\r"
11sleep 1
12
13send -- "/usr/bin/xzdec -c firejail_t3 > firejail_t1\r"
14sleep 1
15
16send -- "firejail /usr/bin/xzdec -c firejail_t3 > firejail_t2\r"
17sleep 1
18
19send -- "diff -s firejail_t1 firejail_t2\r"
20expect {
21 timeout {puts "TESTING ERROR 1\n";exit}
22 "firejail_t1 and firejail_t2 are identical"
23}
24
25send -- "rm firejail_t*\r"
26sleep 1
27
28
29puts "\nall done\n"