blob: 40ae1728fe3cc4440317a84021c4d0bea46ddad6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
#!/bin/bash
cd -- "$(dirname "$0")"
if test -z "$BASE32"; then
BASE32=../base32
fi
b="$PREFIX $BASE32"
f="MY======"
fo="MZXQ===="
foo="MZXW6==="
foob="MZXW6YQ="
fooba="MZXW6YTB"
foobar="MZXW6YTBOI======"
report ()
{
if test $1 = 0; then
printf "\033[1;32mTest %s OK\033[m\n" "$2"
else
printf "\033[1;31mTest %s FAILED\033[m\n" "$2"
fi
}
report_np ()
{
if test $1 = 0; then
printf "\033[1;32mTest %s OK (NON-STANDARD)\033[m\n" "$2"
else
printf "\033[1;31mTest %s FAILED (NON-STANDARD)\033[m\n" "$2"
fi
}
test_string ()
{
test "$(printf "%s" "$1" | $b)" = "$2"
report $? "$1"
test "$(printf "%s" "$2" | $b -d)" = "$1"
report $? "$1 -d"
}
empty ()
{
test "$(printf "%s" "" | $b)" = ""
report $? "empty"
test "$(printf "%s" "" | $b -d)" = ""
report $? "empty -d"
}
f () { test_string "f" "$f"; }
fo () { test_string "fo" "$fo"; }
foo () { test_string "foo" "$foo"; }
foob () { test_string "foob" "$foob"; }
fooba () { test_string "fooba" "$fooba"; }
foobar () { test_string "foobar" "$foobar"; }
massive ()
{
diff <(seq 10000 | $b | tr -d $'\n') <(tr -d $'\n' < massive) > /dev/null
report $? "massive"
diff <($b -d < massive) <(seq 10000) > /dev/null
report $? "massive -d"
}
file ()
{
test $($b <(printf "foo")) = "$foo"
report $? "file"
test $($b -d <(printf "$foo")) = "foo"
report $? "file -d"
}
dash ()
{
test $(printf "foo" | $b -) = "$foo"
report $? "dash"
test $(printf "$foo" | $b -d -) = "foo"
report $? "dash -d"
}
ddash ()
{
test $(printf "foo" | $b --) = "$foo"
report $? "ddash"
test $(printf "$foo" | $b -d --) = "foo"
report $? "ddash -d"
}
iflag ()
{
test $(printf "$foo" | sed 's/./\%&/g' | $b -di) = "foo"
report_np $? "iflag -d"
}
iflagless ()
{
! printf "$foo" | sed 's/./\%&/g' | $b -d >/dev/null 2>/dev/null
report_np $? "iflagless -d"
}
wflag ()
{
diff <(seq 10000 | $b -w10) <(tr -d $'\n' < massive | sed 's/........../&\n/g' ; echo) > /dev/null
report_np $? "wflag"
}
w0flag ()
{
diff <(seq 10000 | $b -w0) <(tr -d $'\n' < massive ; echo) > /dev/null ||
diff <(seq 10000 | $b -w0) <(tr -d $'\n' < massive) > /dev/null
report_np $? "w0flag"
}
if test $# = 0; then
set empty f fo foo foob fooba foobar massive file dash ddash iflag iflagless wflag w0flag
fi
(
for F in $@; do
$F
done
) | tee result
! grep FAILED < result > /dev/null
ret=$?
if test $ret != 0; then
if test $(grep FAILED < result | grep -v NON-STANDARD | wc -l) = 0; then
ret=1
else
ret=2
fi
fi
rm result
exit $ret
|