libbb/hash_sha.c -> libbb/hash_md5_sha.c
[oweals/busybox.git] / testsuite / awk.tests
1 #!/bin/sh
2
3 # Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
4 # Licensed under GPLv2, see file LICENSE in this source tree.
5
6 . ./testing.sh
7
8 # testing "description" "command" "result" "infile" "stdin"
9
10 testing "awk -F case 0" "awk -F '[#]' '{ print NF }'" ""    "" ""
11 testing "awk -F case 1" "awk -F '[#]' '{ print NF }'" "0\n" "" "\n"
12 testing "awk -F case 2" "awk -F '[#]' '{ print NF }'" "2\n" "" "#\n"
13 testing "awk -F case 3" "awk -F '[#]' '{ print NF }'" "3\n" "" "#abc#\n"
14 testing "awk -F case 4" "awk -F '[#]' '{ print NF }'" "3\n" "" "#abc#zz\n"
15 testing "awk -F case 5" "awk -F '[#]' '{ print NF }'" "4\n" "" "#abc##zz\n"
16 testing "awk -F case 6" "awk -F '[#]' '{ print NF }'" "4\n" "" "z#abc##zz\n"
17 testing "awk -F case 7" "awk -F '[#]' '{ print NF }'" "5\n" "" "z##abc##zz\n"
18
19 # 4294967295 = 0xffffffff
20 testing "awk bitwise op"  "awk '{ print or(4294967295,1) }'" "4.29497e+09\n" "" "\n"
21 optional DESKTOP
22 testing "awk hex const 1" "awk '{ print or(0xffffffff,1) }'" "4.29497e+09\n" "" "\n"
23 testing "awk hex const 2" "awk '{ print or(0x80000000,1) }'" "2.14748e+09\n" "" "\n"
24 testing "awk oct const"   "awk '{ print or(01234,1) }'"      "669\n"         "" "\n"
25 SKIP=
26
27 # check that "hex/oct integer" heuristic doesn't kick in on 00NN.NNN
28 testing "awk floating const with leading zeroes" \
29         "awk '{ printf \"%f %f\n\", \"000.123\", \"009.123\" }'" \
30         "0.123000 9.123000\n" \
31         "" "\n"
32
33 # long field seps requiring regex
34 testing "awk long field sep" "awk -F-- '{ print NF, length(\$NF), \$NF }'" \
35         "2 0 \n3 0 \n4 0 \n5 0 \n" \
36         "" \
37         "a--\na--b--\na--b--c--\na--b--c--d--"
38
39 # '@(samp|code|file)\{' is an invalid extended regex (unmatched '{'),
40 # but gawk 3.1.5 does not bail out on it.
41 testing "awk gsub falls back to non-extended-regex" \
42         "awk 'gsub(\"@(samp|code|file)\{\",\"\");'; echo \$?" "0\n" "" "Hi\n"
43
44 optional TAR BUNZIP2 FEATURE_SEAMLESS_BZ2
45 test x"$SKIP" != x"1" && tar xjf awk_t1.tar.bz2
46 testing "awk 'gcc build bug'" \
47         "awk -f awk_t1_opt-functions.awk -f awk_t1_opth-gen.awk <awk_t1_input | md5sum" \
48         "f842e256461a5ab1ec60b58d16f1114f  -\n" \
49         "" ""
50 rm -rf awk_t1_* 2>/dev/null
51 SKIP=
52
53 Q='":"'
54
55 testing "awk NF in BEGIN" \
56         "awk 'BEGIN { print ${Q} NF ${Q} \$0 ${Q} \$1 ${Q} \$2 ${Q} }'" \
57         ":0::::\n" \
58         "" ""
59
60 prg='
61 function b(tmp) {
62         tmp = 0;
63         print "" tmp; #this line causes the bug
64         return tmp;
65 }
66 function c(tmpc) {
67         tmpc = b(); return tmpc;
68 }
69 BEGIN {
70         print (c() ? "string" : "number");
71 }'
72 testing "awk string cast (bug 725)" \
73         "awk '$prg'" \
74         "0\nnumber\n" \
75         "" ""
76
77 testing "awk handles whitespace before array subscript" \
78         "awk 'BEGIN { arr [3] = 1; print arr [3] }'" "1\n" "" ""
79
80 prg='
81 BEGIN {
82   u["a"]=1
83   u["b"]=1
84   u["c"]=1
85   v["d"]=1
86   v["e"]=1
87   v["f"]=1
88   for (l in u) {
89     print "outer1", l;
90     for (l in v) {
91       print " inner", l;
92     }
93     print "outer2", l;
94   }
95   print "end", l;
96   l="a"
97   exit;
98 }'
99 testing "awk nested loops with the same variable" \
100         "awk '$prg'" \
101         "\
102 outer1 a
103  inner d
104  inner e
105  inner f
106 outer2 f
107 outer1 b
108  inner d
109  inner e
110  inner f
111 outer2 f
112 outer1 c
113  inner d
114  inner e
115  inner f
116 outer2 f
117 end f
118 " \
119         "" ""
120
121 prg='
122 BEGIN {
123   u["a"]=1
124   u["b"]=1
125   u["c"]=1
126   v["d"]=1
127   v["e"]=1
128   v["f"]=1
129   for (l in u) {
130     print "outer1", l;
131     for (l in v) {
132       print " inner", l;
133       break;
134     }
135     print "outer2", l;
136   }
137   print "end", l;
138   l="a"
139   exit;
140 }'
141 # It's not just buggy, it enters infinite loop. Thus disabled
142 false && test x"$SKIP_KNOWN_BUGS" = x"" && testing "awk nested loops with the same variable and break" \
143         "awk '$prg'" \
144         "\
145 outer1 a
146  inner d
147 outer2 d
148 outer1 b
149  inner d
150 outer2 d
151 outer1 c
152  inner d
153 outer2 d
154 end d
155 " \
156         "" ""
157
158 prg='
159 function f() {
160   for (l in v) {
161     print " inner", l;
162     return;
163   }
164 }
165
166 BEGIN {
167   u["a"]=1
168   u["b"]=1
169   u["c"]=1
170   v["d"]=1
171   v["e"]=1
172   v["f"]=1
173   for (l in u) {
174     print "outer1", l;
175     f();
176     print "outer2", l;
177   }
178   print "end", l;
179   l="a"
180   exit;
181 }'
182 # It's not just buggy, it enters infinite loop. Thus disabled
183 false && test x"$SKIP_KNOWN_BUGS" = x"" && testing "awk nested loops with the same variable and return" \
184         "awk '$prg'" \
185         "\
186 outer1 a
187  inner d
188 outer2 d
189 outer1 b
190  inner d
191 outer2 d
192 outer1 c
193  inner d
194 outer2 d
195 end d
196 " \
197         "" ""
198
199 exit $FAILCOUNT