Denis Vlasenko | ab9eef2 | 2007-03-07 22:02:23 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Ron Yorston | ecaec1d | 2018-02-09 09:01:19 +0000 | [diff] [blame] | 3 | test -f "$bindir/.config" && . "$bindir/.config" |
| 4 | |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 5 | FAILCOUNT=0 |
Dan Fandrich | 140ac91 | 2010-08-29 04:47:03 +0200 | [diff] [blame] | 6 | |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 7 | bb="busybox " |
Denis Vlasenko | ab9eef2 | 2007-03-07 22:02:23 +0000 | [diff] [blame] | 8 | |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 9 | unset LC_ALL |
| 10 | unset LC_MESSAGES |
| 11 | unset LANG |
| 12 | unset LANGUAGE |
Denis Vlasenko | ab9eef2 | 2007-03-07 22:02:23 +0000 | [diff] [blame] | 13 | |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 14 | hello_Z() { |
| 15 | # Compressed "HELLO\n" |
| 16 | $ECHO -ne "\x1f\x9d\x90\x48\x8a\x30\x61\xf2\x44\x01" |
| 17 | } |
| 18 | |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 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 | |
Denys Vlasenko | 9459379 | 2018-06-27 13:15:10 +0200 | [diff] [blame] | 33 | test x"$CONFIG_ZCAT" = x"y" && \ |
Denys Vlasenko | 69c8c69 | 2015-10-11 16:27:55 +0200 | [diff] [blame] | 34 | for ext in \ |
Denys Vlasenko | 9459379 | 2018-06-27 13:15:10 +0200 | [diff] [blame] | 35 | `test x"$CONFIG_FEATURE_SEAMLESS_GZ" = x"y" && echo gz` \ |
| 36 | `test x"$CONFIG_FEATURE_SEAMLESS_BZ2" = x"y" && echo bz2` \ |
| 37 | `test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && echo Z` |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 38 | do |
| 39 | prep() { |
| 40 | rm -f t1.$ext t2.$ext t_actual |
| 41 | hello_$ext >t1.$ext |
| 42 | hello_$ext >t2.$ext |
| 43 | } |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 44 | |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 45 | check() { |
| 46 | eval $2 >t_actual 2>&1 |
| 47 | if $ECHO -ne "$expected" | cmp - t_actual; then |
| 48 | echo "PASS: $1" |
| 49 | else |
| 50 | echo "FAIL: $1" |
Denys Vlasenko | a429d5d | 2018-06-27 10:35:45 +0200 | [diff] [blame] | 51 | #echo "t_actual:" |
| 52 | #cat t_actual |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 53 | FAILCOUNT=$((FAILCOUNT + 1)) |
| 54 | fi |
| 55 | } |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 56 | |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 57 | mkdir testdir 2>/dev/null |
| 58 | ( |
| 59 | cd testdir || { echo "cannot cd testdir!"; exit 1; } |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 60 | expected="HELLO\nok\n" |
Denys Vlasenko | 69c8c69 | 2015-10-11 16:27:55 +0200 | [diff] [blame] | 61 | prep |
| 62 | check "zcat: dont delete $ext src" "${bb}zcat t2.$ext; test -f t2.$ext && echo ok" |
| 63 | exit $FAILCOUNT |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 64 | ) |
Denys Vlasenko | 69c8c69 | 2015-10-11 16:27:55 +0200 | [diff] [blame] | 65 | FAILCOUNT=$? |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 66 | rm -rf testdir |
| 67 | done |
Denys Vlasenko | bcdae63 | 2011-10-31 01:10:47 +0100 | [diff] [blame] | 68 | |
| 69 | |
| 70 | # Copyright 2011 by Denys Vlasenko |
| 71 | # Licensed under GPLv2, see file LICENSE in this source tree. |
| 72 | |
| 73 | . ./testing.sh |
| 74 | |
| 75 | # testing "test name" "command" "expected result" "file input" "stdin" |
| 76 | |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 77 | ## bzip algorithm |
| 78 | |
Denys Vlasenko | bcdae63 | 2011-10-31 01:10:47 +0100 | [diff] [blame] | 79 | # "input" file is bzipped file with "a\n" data |
| 80 | testing "bzcat can print many files" \ |
Ron Yorston | ecaec1d | 2018-02-09 09:01:19 +0000 | [diff] [blame] | 81 | "bzcat input input; echo \$?" \ |
Denys Vlasenko | bcdae63 | 2011-10-31 01:10:47 +0100 | [diff] [blame] | 82 | "\ |
| 83 | a |
| 84 | a |
| 85 | 0 |
| 86 | " "\ |
| 87 | \x42\x5a\x68\x39\x31\x41\x59\x26\x53\x59\x63\x3e\xd6\xe2\x00\x00\ |
| 88 | \x00\xc1\x00\x00\x10\x20\x00\x20\x00\x21\x00\x82\xb1\x77\x24\x53\ |
| 89 | \x85\x09\x06\x33\xed\x6e\x20\ |
| 90 | " "" |
| 91 | |
| 92 | # "input" file is bzipped zero byte file |
| 93 | testing "bzcat can handle compressed zero-length bzip2 files" \ |
Ron Yorston | ecaec1d | 2018-02-09 09:01:19 +0000 | [diff] [blame] | 94 | "bzcat input input; echo \$?" \ |
Denys Vlasenko | bcdae63 | 2011-10-31 01:10:47 +0100 | [diff] [blame] | 95 | "0\n" \ |
| 96 | "\x42\x5a\x68\x39\x17\x72\x45\x38\x50\x90\x00\x00\x00\x00" "" |
| 97 | |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 98 | ## compress algorithm |
| 99 | |
| 100 | # "input" file is compressed (.Z) file with "a\n" data |
Denys Vlasenko | 9459379 | 2018-06-27 13:15:10 +0200 | [diff] [blame] | 101 | test x"$CONFIG_ZCAT" = x"y" && \ |
Denys Vlasenko | a429d5d | 2018-06-27 10:35:45 +0200 | [diff] [blame] | 102 | test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \ |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 103 | testing "zcat can print many files" \ |
Ron Yorston | ecaec1d | 2018-02-09 09:01:19 +0000 | [diff] [blame] | 104 | "zcat input input; echo \$?" \ |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 105 | "\ |
| 106 | a |
| 107 | a |
| 108 | 0 |
| 109 | " "\ |
| 110 | \x1f\x9d\x90\x61\x14\x00\ |
| 111 | " "" |
| 112 | |
| 113 | # "input" file is compressed (.Z) zero byte file |
Denys Vlasenko | 9459379 | 2018-06-27 13:15:10 +0200 | [diff] [blame] | 114 | test x"$CONFIG_ZCAT" = x"y" && \ |
Denys Vlasenko | a429d5d | 2018-06-27 10:35:45 +0200 | [diff] [blame] | 115 | test x"$CONFIG_FEATURE_SEAMLESS_Z" = x"y" && \ |
Denys Vlasenko | 69c8c69 | 2015-10-11 16:27:55 +0200 | [diff] [blame] | 116 | testing "zcat can handle compressed zero-length (.Z) files" \ |
Ron Yorston | ecaec1d | 2018-02-09 09:01:19 +0000 | [diff] [blame] | 117 | "zcat input input; echo \$?" \ |
Thiago Jung Bauermann | 17b1622 | 2015-05-11 17:18:59 +0200 | [diff] [blame] | 118 | "0\n" \ |
| 119 | "\x1f\x9d\x90\x00" "" |
| 120 | |
Denys Vlasenko | bcdae63 | 2011-10-31 01:10:47 +0100 | [diff] [blame] | 121 | |
| 122 | |
Denys Vlasenko | c0e37b4 | 2011-10-31 01:08:35 +0100 | [diff] [blame] | 123 | exit $((FAILCOUNT <= 255 ? FAILCOUNT : 255)) |