testsuite/bzcat.tests: fix false positive
[oweals/busybox.git] / testsuite / bzcat.tests
1 #!/bin/sh
2
3 test -f "$bindir/.config" && . "$bindir/.config"
4
5 FAILCOUNT=0
6
7 bb="busybox "
8
9 unset LC_ALL
10 unset LC_MESSAGES
11 unset LANG
12 unset LANGUAGE
13
14 hello_Z() {
15     # Compressed "HELLO\n"
16     $ECHO -ne "\x1f\x9d\x90\x48\x8a\x30\x61\xf2\x44\x01"
17 }
18
19 hello_gz() {
20     # Gzipped "HELLO\n"
21     #_________________________ vvv vvv vvv vvv - mtime
22     $ECHO -ne "\x1f\x8b\x08\x00\x85\x1d\xef\x45\x02\x03\xf3\x70\xf5\xf1\xf1\xe7"
23     $ECHO -ne "\x02\x00\x6e\xd7\xac\xfd\x06\x00\x00\x00"
24 }
25
26 hello_bz2() {
27     # Bzipped "HELLO\n"
28     $ECHO -ne "\x42\x5a\x68\x39\x31\x41\x59\x26\x53\x59\x5b\xb8\xe8\xa3\x00\x00"
29     $ECHO -ne "\x01\x44\x00\x00\x10\x02\x44\xa0\x00\x30\xcd\x00\xc3\x46\x29\x97"
30     $ECHO -ne "\x17\x72\x45\x38\x50\x90\x5b\xb8\xe8\xa3"
31 }
32
33 for ext in \
34     `test x"$CONFIG_GUNZIP:$CONFIG_FEATURE_SEAMLESS_GZ"    = x"y:y" && echo gz` \
35     `test x"$CONFIG_BUNZIP2:$CONFIG_FEATURE_SEAMLESS_BZ2"  = x"y:y" && echo bz2` \
36     `test x"$CONFIG_UNCOMPRESS:$CONFIG_FEATURE_SEAMLESS_Z" = x"y:y" && echo Z`
37 do
38     prep() {
39         rm -f t1.$ext t2.$ext t_actual
40         hello_$ext >t1.$ext
41         hello_$ext >t2.$ext
42     }
43
44     check() {
45         eval $2 >t_actual 2>&1
46         if $ECHO -ne "$expected" | cmp - t_actual; then
47             echo "PASS: $1"
48         else
49             echo "FAIL: $1"
50             #echo "t_actual:"
51             #cat t_actual
52             FAILCOUNT=$((FAILCOUNT + 1))
53         fi
54     }
55
56     mkdir testdir 2>/dev/null
57     (
58     cd testdir || { echo "cannot cd testdir!"; exit 1; }
59     expected="HELLO\nok\n"
60     prep
61     check "zcat: dont delete $ext src" "${bb}zcat t2.$ext; test -f t2.$ext && echo ok"
62     exit $FAILCOUNT
63     )
64     FAILCOUNT=$?
65     rm -rf testdir
66 done
67
68
69 # Copyright 2011 by Denys Vlasenko
70 # Licensed under GPLv2, see file LICENSE in this source tree.
71
72 . ./testing.sh
73
74 # testing "test name" "command" "expected result" "file input" "stdin"
75
76 ## bzip algorithm
77
78 # "input" file is bzipped file with "a\n" data
79 testing "bzcat can print many files" \
80 "bzcat input input; echo \$?" \
81 "\
82 a
83 a
84 0
85 " "\
86 \x42\x5a\x68\x39\x31\x41\x59\x26\x53\x59\x63\x3e\xd6\xe2\x00\x00\
87 \x00\xc1\x00\x00\x10\x20\x00\x20\x00\x21\x00\x82\xb1\x77\x24\x53\
88 \x85\x09\x06\x33\xed\x6e\x20\
89 " ""
90
91 # "input" file is bzipped zero byte file
92 testing "bzcat can handle compressed zero-length bzip2 files" \
93 "bzcat input input; echo \$?" \
94 "0\n" \
95 "\x42\x5a\x68\x39\x17\x72\x45\x38\x50\x90\x00\x00\x00\x00" ""
96
97 ## compress algorithm
98
99 # "input" file is compressed (.Z) file with "a\n" data
100 test x"$CONFIG_UNCOMPRESS" = x"y" && \
101 test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \
102 testing "zcat can print many files" \
103 "zcat input input; echo \$?" \
104 "\
105 a
106 a
107 0
108 " "\
109 \x1f\x9d\x90\x61\x14\x00\
110 " ""
111
112 # "input" file is compressed (.Z) zero byte file
113 test x"$CONFIG_UNCOMPRESS" = x"y" && \
114 test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \
115 testing "zcat can handle compressed zero-length (.Z) files" \
116 "zcat input input; echo \$?" \
117 "0\n" \
118 "\x1f\x9d\x90\x00" ""
119
120
121
122 exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255))