blob: 32c1c5d7ffb8322ee3f11cd055b8ce399f161ee0 [file] [log] [blame]
Denis Vlasenkoab9eef22007-03-07 22:02:23 +00001#!/bin/sh
2
Ron Yorstonecaec1d2018-02-09 09:01:19 +00003test -f "$bindir/.config" && . "$bindir/.config"
4
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +01005FAILCOUNT=0
Dan Fandrich140ac912010-08-29 04:47:03 +02006
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +01007bb="busybox "
Denis Vlasenkoab9eef22007-03-07 22:02:23 +00008
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +01009unset LC_ALL
10unset LC_MESSAGES
11unset LANG
12unset LANGUAGE
Denis Vlasenkoab9eef22007-03-07 22:02:23 +000013
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020014hello_Z() {
15 # Compressed "HELLO\n"
16 $ECHO -ne "\x1f\x9d\x90\x48\x8a\x30\x61\xf2\x44\x01"
17}
18
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +010019hello_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
26hello_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
Denys Vlasenko69c8c692015-10-11 16:27:55 +020033for ext in \
Denys Vlasenko57aeb622015-10-12 03:15:36 +020034 `test x"$CONFIG_GUNZIP" = x"y" && echo gz` \
35 `test x"$CONFIG_BUNZIP2" = x"y" && echo bz2` \
Denys Vlasenko69c8c692015-10-11 16:27:55 +020036 `test x"$CONFIG_UNCOMPRESS" = x"y" && echo Z`
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020037do
38 prep() {
39 rm -f t1.$ext t2.$ext t_actual
40 hello_$ext >t1.$ext
41 hello_$ext >t2.$ext
42 }
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +010043
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020044 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 FAILCOUNT=$((FAILCOUNT + 1))
51 fi
52 }
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +010053
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020054 mkdir testdir 2>/dev/null
55 (
56 cd testdir || { echo "cannot cd testdir!"; exit 1; }
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020057 expected="HELLO\nok\n"
Denys Vlasenko69c8c692015-10-11 16:27:55 +020058 prep
59 check "zcat: dont delete $ext src" "${bb}zcat t2.$ext; test -f t2.$ext && echo ok"
60 exit $FAILCOUNT
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020061 )
Denys Vlasenko69c8c692015-10-11 16:27:55 +020062 FAILCOUNT=$?
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020063 rm -rf testdir
64done
Denys Vlasenkobcdae632011-10-31 01:10:47 +010065
66
67# Copyright 2011 by Denys Vlasenko
68# Licensed under GPLv2, see file LICENSE in this source tree.
69
70. ./testing.sh
71
72# testing "test name" "command" "expected result" "file input" "stdin"
73
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020074## bzip algorithm
75
Denys Vlasenkobcdae632011-10-31 01:10:47 +010076# "input" file is bzipped file with "a\n" data
77testing "bzcat can print many files" \
Ron Yorstonecaec1d2018-02-09 09:01:19 +000078"bzcat input input; echo \$?" \
Denys Vlasenkobcdae632011-10-31 01:10:47 +010079"\
80a
81a
820
83" "\
84\x42\x5a\x68\x39\x31\x41\x59\x26\x53\x59\x63\x3e\xd6\xe2\x00\x00\
85\x00\xc1\x00\x00\x10\x20\x00\x20\x00\x21\x00\x82\xb1\x77\x24\x53\
86\x85\x09\x06\x33\xed\x6e\x20\
87" ""
88
89# "input" file is bzipped zero byte file
90testing "bzcat can handle compressed zero-length bzip2 files" \
Ron Yorstonecaec1d2018-02-09 09:01:19 +000091"bzcat input input; echo \$?" \
Denys Vlasenkobcdae632011-10-31 01:10:47 +010092"0\n" \
93"\x42\x5a\x68\x39\x17\x72\x45\x38\x50\x90\x00\x00\x00\x00" ""
94
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020095## compress algorithm
96
97# "input" file is compressed (.Z) file with "a\n" data
Denys Vlasenko69c8c692015-10-11 16:27:55 +020098test x"$CONFIG_UNCOMPRESS" = x"y" && \
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +020099testing "zcat can print many files" \
Ron Yorstonecaec1d2018-02-09 09:01:19 +0000100"zcat input input; echo \$?" \
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +0200101"\
102a
103a
1040
105" "\
106\x1f\x9d\x90\x61\x14\x00\
107" ""
108
109# "input" file is compressed (.Z) zero byte file
Denys Vlasenko69c8c692015-10-11 16:27:55 +0200110test x"$CONFIG_UNCOMPRESS" = x"y" && \
111testing "zcat can handle compressed zero-length (.Z) files" \
Ron Yorstonecaec1d2018-02-09 09:01:19 +0000112"zcat input input; echo \$?" \
Thiago Jung Bauermann17b16222015-05-11 17:18:59 +0200113"0\n" \
114"\x1f\x9d\x90\x00" ""
115
Denys Vlasenkobcdae632011-10-31 01:10:47 +0100116
117
Denys Vlasenkoc0e37b42011-10-31 01:08:35 +0100118exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255))