]>
Commit | Line | Data |
---|---|---|
0049ec86 | 1 | # Java tests for simple calculator. -*- Autotest -*- |
8405b70c | 2 | |
0049ec86 | 3 | # Copyright (C) 2007 Free Software Foundation, Inc. |
8405b70c | 4 | |
f16b0819 | 5 | # This program is free software: you can redistribute it and/or modify |
8405b70c | 6 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
7 | # the Free Software Foundation, either version 3 of the License, or |
8 | # (at your option) any later version. | |
9 | # | |
8405b70c PB |
10 | # This program is distributed in the hope that it will be useful, |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
f16b0819 | 14 | # |
8405b70c | 15 | # You should have received a copy of the GNU General Public License |
f16b0819 | 16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
8405b70c PB |
17 | |
18 | AT_BANNER([[Java Calculator.]]) | |
19 | ||
20 | ||
21 | # ------------------------- # | |
22 | # Helping Autotest macros. # | |
23 | # ------------------------- # | |
24 | ||
25 | ||
01b477c6 | 26 | # _AT_DATA_JAVA_CALC_Y($1, $2, $3, [BISON-DIRECTIVES]) |
8405b70c PB |
27 | # ---------------------------------------------------------------------- |
28 | # Produce `calc.y'. Don't call this macro directly, because it contains | |
29 | # some occurrences of `$1' etc. which will be interpreted by m4. So | |
30 | # you should call it with $1, $2, and $3 as arguments, which is what | |
31 | # AT_DATA_JAVA_CALC_Y does. | |
32 | m4_define([_AT_DATA_JAVA_CALC_Y], | |
33 | [m4_if([$1$2$3], $[1]$[2]$[3], [], | |
34 | [m4_fatal([$0: Invalid arguments: $@])])dnl | |
35 | AT_DATA([Calc.y], | |
36 | [[/* Infix notation calculator--calc */ | |
37 | %language "Java" | |
01b477c6 | 38 | %name-prefix "Calc" |
8405b70c PB |
39 | %define parser_class_name "Calc" |
40 | %define public | |
41 | ||
01b477c6 PB |
42 | ]$4[ |
43 | ||
8405b70c PB |
44 | %code imports { |
45 | import java.io.StreamTokenizer; | |
46 | import java.io.InputStream; | |
47 | import java.io.InputStreamReader; | |
48 | import java.io.Reader; | |
49 | import java.io.IOException; | |
50 | } | |
51 | ||
52 | /* Bison Declarations */ | |
53 | %token <Integer> NUM "number" | |
54 | %type <Integer> exp | |
55 | ||
56 | %nonassoc '=' /* comparison */ | |
57 | %left '-' '+' | |
58 | %left '*' '/' | |
59 | %left NEG /* negation--unary minus */ | |
60 | %right '^' /* exponentiation */ | |
61 | ||
62 | /* Grammar follows */ | |
63 | %% | |
64 | input: | |
65 | line | |
66 | | input line | |
67 | ; | |
68 | ||
69 | line: | |
70 | '\n' | |
71 | | exp '\n' | |
72 | | error '\n' | |
73 | ; | |
74 | ||
75 | exp: | |
76 | NUM { $$ = $1; } | |
77 | | exp '=' exp | |
78 | { | |
79 | if ($1.intValue () != $3.intValue ()) | |
80 | yyerror ("calc: error: " + $1 + " != " + $3); | |
81 | } | |
82 | | exp '+' exp { $$ = new Integer ($1.intValue () + $3.intValue ()); } | |
83 | | exp '-' exp { $$ = new Integer ($1.intValue () - $3.intValue ()); } | |
84 | | exp '*' exp { $$ = new Integer ($1.intValue () * $3.intValue ()); } | |
85 | | exp '/' exp { $$ = new Integer ($1.intValue () / $3.intValue ()); } | |
86 | | '-' exp %prec NEG { $$ = new Integer (-$2.intValue ()); } | |
87 | | exp '^' exp { $$ = new Integer ((int) | |
88 | Math.pow ($1.intValue (), | |
89 | $3.intValue ())); } | |
90 | | '(' exp ')' { $$ = $2; } | |
91 | | '(' error ')' { $$ = new Integer (1111); } | |
92 | | '!' { $$ = new Integer (0); return YYERROR; } | |
93 | | '-' error { $$ = new Integer (0); return YYERROR; } | |
94 | ; | |
01b477c6 PB |
95 | |
96 | ]AT_LEXPARAM_IF([[ | |
97 | %code lexer { | |
98 | ]], | |
99 | [[ | |
8405b70c | 100 | %% |
01b477c6 PB |
101 | class CalcLexer implements Calc.Lexer { |
102 | ]])[ | |
103 | StreamTokenizer st; | |
104 | ||
105 | public ]AT_LEXPARAM_IF([[YYLexer]], [[CalcLexer]]) (InputStream is) | |
106 | { | |
107 | st = new StreamTokenizer (new InputStreamReader (is)); | |
108 | st.resetSyntax (); | |
109 | st.eolIsSignificant (true); | |
110 | st.whitespaceChars (9, 9); | |
111 | st.whitespaceChars (32, 32); | |
112 | st.wordChars (48, 57); | |
113 | } | |
114 | ||
115 | AT_LOCATION_IF([[ | |
116 | Position yystartpos; | |
117 | Position yyendpos = new Position (1); | |
8405b70c | 118 | |
01b477c6 PB |
119 | public Position getStartPos() { |
120 | return yystartpos; | |
8405b70c PB |
121 | } |
122 | ||
01b477c6 PB |
123 | public Position getEndPos() { |
124 | return yyendpos; | |
125 | } | |
126 | ||
127 | public void yyerror (Calc.Location l, String s) | |
128 | { | |
129 | if (l == null) | |
130 | System.err.println (s); | |
131 | else | |
132 | System.err.println (l.begin + ": " + s); | |
133 | } | |
134 | ]], [[ | |
135 | public void yyerror (String s) | |
136 | { | |
137 | System.err.println (s); | |
138 | } | |
139 | ]])[ | |
140 | ||
141 | Integer yylval; | |
142 | ||
143 | public Object getLVal() { | |
144 | return yylval; | |
145 | } | |
146 | ||
147 | public int yylex () throws IOException { | |
148 | int ttype = st.nextToken (); | |
149 | ]AT_LOCATION_IF([[yystartpos = yyendpos;]])[ | |
150 | if (ttype == st.TT_EOF) | |
151 | return Calc.EOF; | |
152 | ||
153 | else if (ttype == st.TT_EOL) | |
154 | { | |
155 | ]AT_LOCATION_IF([[yyendpos = new Position (yyendpos.lineno () + 1);]])[ | |
156 | return (int) '\n'; | |
157 | } | |
158 | ||
159 | else if (ttype == st.TT_WORD) | |
160 | { | |
161 | yylval = new Integer (st.sval); | |
162 | return Calc.NUM; | |
163 | } | |
164 | ||
165 | else | |
166 | return st.ttype; | |
167 | } | |
168 | ||
169 | ||
170 | ]AT_LEXPARAM_IF([[ | |
171 | }; | |
172 | %%]], [[ | |
173 | }]]) | |
174 | ||
175 | [ | |
176 | class Position { | |
177 | public int line; | |
178 | ||
179 | public Position () | |
180 | { | |
181 | line = 0; | |
182 | } | |
183 | ||
184 | public Position (int l) | |
185 | { | |
186 | line = l; | |
187 | } | |
188 | ||
189 | public long getHashCode () | |
190 | { | |
191 | return line; | |
192 | } | |
193 | ||
194 | public boolean equals (Position l) | |
195 | { | |
196 | return l.line == line; | |
197 | } | |
198 | ||
199 | public String toString () | |
200 | { | |
201 | return Integer.toString (line); | |
202 | } | |
203 | ||
204 | public int lineno () | |
205 | { | |
206 | return line; | |
207 | } | |
208 | } | |
209 | ||
210 | ]]) | |
8405b70c PB |
211 | ])# _AT_DATA_JAVA_CALC_Y |
212 | ||
213 | ||
01b477c6 | 214 | # AT_DATA_CALC_Y([BISON-OPTIONS]) |
8405b70c PB |
215 | # ------------------------------------------------- |
216 | # Produce `calc.y'. | |
217 | m4_define([AT_DATA_JAVA_CALC_Y], | |
01b477c6 | 218 | [_AT_DATA_JAVA_CALC_Y($[1], $[2], $[3], [$1]) |
8405b70c PB |
219 | ]) |
220 | ||
221 | ||
222 | ||
223 | # AT_JAVA_COMPILE(SOURCE) | |
224 | # ----------------------- | |
225 | # Compile SOURCES into Java class files. Skip the test if java or javac is | |
226 | # not installed. | |
227 | m4_define([AT_JAVA_COMPILE], | |
0049ec86 PB |
228 | [AT_CHECK([test -n "$CONF_JAVA" || exit 77 |
229 | test -n "$CONF_JAVAC" || exit 77]) | |
8405b70c PB |
230 | AT_CHECK([$SHELL ../../../javacomp.sh $1], |
231 | 0, [ignore], [ignore])]) | |
232 | ||
233 | ||
234 | # AT_JAVA_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR, [PRE]) | |
235 | # ----------------------------------------------------------------- | |
236 | m4_define([AT_JAVA_PARSER_CHECK], | |
237 | [AT_CHECK([$5 $SHELL ../../../javaexec.sh $1], [$2], [$3], [$4])]) | |
238 | ||
239 | ||
240 | # _AT_CHECK_JAVA_CALC_ERROR(BISON-OPTIONS, INPUT, | |
241 | # [VERBOSE-AND-LOCATED-ERROR-MESSAGE]) | |
242 | # --------------------------------------------------------- | |
243 | # Run `calc' on INPUT, and expect a `syntax error' message. | |
244 | # | |
245 | # If INPUT starts with a slash, it is used as absolute input file name, | |
246 | # otherwise as contents. | |
247 | # | |
248 | # The VERBOSE-AND-LOCATED-ERROR-MESSAGE is stripped of locations | |
249 | # and expected tokens if necessary, and compared with the output. | |
250 | m4_define([_AT_CHECK_JAVA_CALC_ERROR], | |
251 | [m4_bmatch([$2], [^/], | |
252 | [AT_JAVA_PARSER_CHECK([Calc < $2], 0, [], [stderr])], | |
253 | [AT_DATA([[input]], | |
254 | [[$2 | |
255 | ]]) | |
256 | AT_JAVA_PARSER_CHECK([Calc < input], 0, [], [stderr])]) | |
257 | ||
258 | # Normalize the observed and expected error messages, depending upon the | |
259 | # options. | |
260 | # 1. Create the reference error message. | |
261 | AT_DATA([[expout]], | |
262 | [$3 | |
263 | ]) | |
264 | # 2. If locations are not used, remove them. | |
265 | AT_YYERROR_SEES_LOC_IF([], | |
266 | [[sed 's/^[-0-9.]*: //' expout >at-expout | |
267 | mv at-expout expout]]) | |
268 | # 3. If error-verbose is not used, strip the`, unexpected....' part. | |
269 | m4_bmatch([$1], [%error-verbose], [], | |
270 | [[sed 's/syntax error, .*$/syntax error/' expout >at-expout | |
271 | mv at-expout expout]]) | |
272 | # 4. Check | |
273 | AT_CHECK([cat stderr], 0, [expout]) | |
274 | ]) | |
275 | ||
01b477c6 | 276 | # _AT_CHECK_JAVA_CALC([BISON-DIRECTIVES], [BISON-CODE]) |
8405b70c PB |
277 | # ----------------------------------------------------------------------- |
278 | # Start a testing chunk which compiles `calc' grammar with | |
279 | # BISON-DIRECTIVES, and performs several tests over the parser. | |
280 | m4_define([_AT_CHECK_JAVA_CALC], | |
281 | [# We use integers to avoid dependencies upon the precision of doubles. | |
282 | AT_SETUP([Calculator $1]) | |
283 | ||
284 | AT_BISON_OPTION_PUSHDEFS([$1]) | |
285 | ||
286 | AT_DATA_JAVA_CALC_Y([$1 | |
287 | %code { | |
288 | $2 | |
01b477c6 | 289 | }]) |
8405b70c PB |
290 | |
291 | AT_CHECK([bison -o Calc.java Calc.y]) | |
292 | AT_JAVA_COMPILE([Calc.java]) | |
293 | ||
294 | # Test the priorities. | |
295 | AT_DATA([[input]], | |
296 | [[1 + 2 * 3 = 7 | |
297 | 1 + 2 * -3 = -5 | |
298 | ||
299 | -1^2 = -1 | |
300 | (-1)^2 = 1 | |
301 | ||
302 | ---1 = -1 | |
303 | ||
304 | 1 - 2 - 3 = -4 | |
305 | 1 - (2 - 3) = 2 | |
306 | ||
307 | 2^2^3 = 256 | |
308 | (2^2)^3 = 64 | |
309 | ]]) | |
310 | AT_JAVA_PARSER_CHECK([Calc < input], 0, [], [stderr]) | |
311 | ||
312 | ||
313 | # Some syntax errors. | |
314 | _AT_CHECK_JAVA_CALC_ERROR([$1], [0 0], | |
315 | [1: syntax error, unexpected number]) | |
316 | _AT_CHECK_JAVA_CALC_ERROR([$1], [1//2], | |
317 | [1: syntax error, unexpected '/', expecting number or '-' or '(' or '!']) | |
318 | _AT_CHECK_JAVA_CALC_ERROR([$1], [error], | |
319 | [1: syntax error, unexpected $undefined]) | |
320 | _AT_CHECK_JAVA_CALC_ERROR([$1], [1 = 2 = 3], | |
321 | [1: syntax error, unexpected '=']) | |
322 | _AT_CHECK_JAVA_CALC_ERROR([$1], [ | |
323 | +1], | |
324 | [2: syntax error, unexpected '+']) | |
325 | # Exercise error messages with EOF: work on an empty file. | |
326 | _AT_CHECK_JAVA_CALC_ERROR([$1], [/dev/null], | |
327 | [1: syntax error, unexpected end of input]) | |
328 | ||
329 | # Exercise the error token: without it, we die at the first error, | |
330 | # hence be sure to | |
331 | # | |
332 | # - have several errors which exercise different shift/discardings | |
333 | # - (): nothing to pop, nothing to discard | |
334 | # - (1 + 1 + 1 +): a lot to pop, nothing to discard | |
335 | # - (* * *): nothing to pop, a lot to discard | |
336 | # - (1 + 2 * *): some to pop and discard | |
337 | # | |
338 | # - test the action associated to `error' | |
339 | # | |
340 | # - check the lookahead that triggers an error is not discarded | |
341 | # when we enter error recovery. Below, the lookahead causing the | |
342 | # first error is ")", which is needed to recover from the error and | |
343 | # produce the "0" that triggers the "0 != 1" error. | |
344 | # | |
345 | _AT_CHECK_JAVA_CALC_ERROR([$1], | |
346 | [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1], | |
347 | [1: syntax error, unexpected ')', expecting number or '-' or '(' or '!' | |
348 | 1: syntax error, unexpected ')', expecting number or '-' or '(' or '!' | |
349 | 1: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
350 | 1: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
351 | calc: error: 4444 != 1]) | |
352 | ||
353 | # The same, but this time exercising explicitly triggered syntax errors. | |
354 | # POSIX says the lookahead causing the error should not be discarded. | |
355 | _AT_CHECK_JAVA_CALC_ERROR([$1], [(!) + (0 0) = 1], | |
356 | [1: syntax error, unexpected number | |
357 | calc: error: 2222 != 1]) | |
358 | _AT_CHECK_JAVA_CALC_ERROR([$1], [(- *) + (0 0) = 1], | |
359 | [1: syntax error, unexpected '*', expecting number or '-' or '(' or '!' | |
360 | 1: syntax error, unexpected number | |
361 | calc: error: 2222 != 1]) | |
362 | AT_BISON_OPTION_POPDEFS | |
363 | ||
364 | AT_CLEANUP | |
365 | ])# _AT_CHECK_JAVA_CALC | |
366 | ||
367 | ||
01b477c6 | 368 | # AT_CHECK_JAVA_CALC([BISON-DIRECTIVES]) |
8405b70c PB |
369 | # -------------------------------------------------------- |
370 | # Start a testing chunk which compiles `calc' grammar with | |
371 | # BISON-DIRECTIVES, and performs several tests over the parser. | |
372 | # Run the test with and without %error-verbose. | |
373 | m4_define([AT_CHECK_JAVA_CALC], | |
01b477c6 PB |
374 | [_AT_CHECK_JAVA_CALC([$1], [$2]) |
375 | _AT_CHECK_JAVA_CALC([%error-verbose $1], [$2]) | |
376 | _AT_CHECK_JAVA_CALC([%locations $1], [$2]) | |
377 | _AT_CHECK_JAVA_CALC([%error-verbose %locations $1], [$2]) | |
8405b70c PB |
378 | ])# AT_CHECK_JAVA_CALC |
379 | ||
380 | ||
381 | # ------------------------ # | |
382 | # Simple LALR Calculator. # | |
383 | # ------------------------ # | |
384 | ||
01b477c6 | 385 | AT_CHECK_JAVA_CALC([], [[ |
8405b70c PB |
386 | public static void main (String args[]) throws IOException |
387 | { | |
388 | CalcLexer l = new CalcLexer (System.in); | |
389 | Calc p = new Calc (l); | |
390 | p.parse (); | |
391 | } | |
01b477c6 | 392 | ]]) |
8405b70c | 393 | |
01b477c6 PB |
394 | AT_CHECK_JAVA_CALC([%lex-param { InputStream is } ], [[ |
395 | public static void main (String args[]) throws IOException | |
8405b70c | 396 | { |
01b477c6 | 397 | new Calc (System.in).parse (); |
8405b70c | 398 | } |
8405b70c | 399 | ]]) |