-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_jlc_func_def_func_control.cpp
322 lines (243 loc) · 7.26 KB
/
test_jlc_func_def_func_control.cpp
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#include "typechecker/jlc_tc_udt_def.h"
#include "typechecker/jlc_tc_udt_dcl.h"
#include "typechecker/jlc_tc_func_dcl.h"
#include "typechecker/jlc_tc_func_def.h"
#include "common/jlc_context.h"
#include "common/test.h"
#include <iostream>
#include <string>
#define init_checker() \
auto parse_tree = gen_ast(input_str); \
auto context = std::make_shared<JLC::CONTEXT::JLCContext>(); \
auto type_decl_checker = \
std::make_shared<JLC::TC::JLC_UDT_DC_Checker>(context); \
auto func_decl_checker = \
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context); \
auto type_def_checker = \
std::make_shared<JLC::TC::JLC_TC_UDT_DEF_Checker>(context); \
auto func_def_checker = \
std::make_shared<JLC::TC::JLC_FUNC_DEF_Checker>(context);
#define run_checker() \
parse_tree->accept(type_decl_checker.get()); \
parse_tree->accept(func_decl_checker.get()); \
parse_tree->accept(type_def_checker.get()); \
parse_tree->accept(func_def_checker.get());
int main(int argc, char **argv)
{
// if statement
{
std::string input_str = "int f(){ if (true) return 1; return 0;}";
init_checker();
// check the parse tree
run_checker();
}
// if
{
std::string input_str = "void f(){ if (1) {int x;}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// if else
{
std::string input_str = "void f(){ if (false) {int x;} else {int y;}}";
init_checker();
// check the parse tree
run_checker();
}
// if else if
{
std::string input_str = "void f(){ if (1) {int x;} else if (true) {int y;}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// while
{
std::string input_str = "void f(){ while (true) {int x;}}";
init_checker();
// check the parse tree
run_checker();
}
// while
{
std::string input_str = "void f(){ while (1) {int x;}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// for each statement
{
std::string input_str = "void f(){ int[] a = new int[10]; for (int x : a) {}}";
init_checker();
// check the parse tree
run_checker();
}
// for each statement
{
std::string input_str = "void f(){ int[] a = new int[10]; int b; for (int x : b) {}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// for each statement
{
std::string input_str = "void f(){ int[][] a = new int[10][10]; for (int x : a) {}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// variable shadowing in for each statement
{
std::string input_str = "void f(){ double b; int[] a = new int[10]; for (int b : a) {int c =b;}}";
init_checker();
// check the parse tree
run_checker();
}
// return void
{
std::string input_str = "void f(){ return;}";
init_checker();
// check the parse tree
run_checker();
}
// return int
{
std::string input_str = "int f(){ return 1;}";
init_checker();
// check the parse tree
run_checker();
}
// return double
{
std::string input_str = "double f(){ return 1.0;}";
init_checker();
// check the parse tree
run_checker();
}
// return boolean
{
std::string input_str = "boolean f(){ return true;}";
init_checker();
// check the parse tree
run_checker();
}
// return array
{
std::string input_str = "int[] f(){ int[] a = new int[10]; return a;}";
init_checker();
// check the parse tree
run_checker();
}
// return array
{
std::string input_str = "int[][] f(){ int[][] a = new int[10][10]; return a;}";
init_checker();
// check the parse tree
run_checker();
}
// void return without return
{
std::string input_str = "void f(){}";
init_checker();
// check the parse tree
run_checker();
}
// not void return without return
{
std::string input_str = "int f(){}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// all branches must have return
{
std::string input_str = "int f(){ if (true) return 1;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
// run_checker();
}
// if else
{
std::string input_str = "int f(){ if (true) return 1; else {};}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// if else
{
std::string input_str = "int f(){ if (true) return 1; else return 0;}";
init_checker();
// check the parse tree
run_checker();
}
// if nested
{
std::string input_str = "int f(){ if (true) {if (true) return 1;} return 0;}";
init_checker();
// check the parse tree
run_checker();
}
// if nested
{
std::string input_str = "int f(){ if (true) {if (true) return 1; else {}}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// while loop with return
{
std::string input_str = "int f(){ while (true) {return 1;}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// for each loop with return
{
std::string input_str = "int f(){ int[] a = new int[10]; for (int x : a) {return 1;}}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// for each loop without return
{
std::string input_str = "int f(){ int[] a = new int[10]; for (int x : a) {} return 0;}";
init_checker();
// check the parse tree
run_checker();
}
// legal expression
{
std::string input_str = "void f(){}";
init_checker();
// check the parse tree
run_checker();
}
// illegal expression
{
std::string input_str = "void f(){1;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// illegal expression
{
std::string input_str = "void f(){int a; a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// illegal expression class member
{
std::string input_str = "class A{int a; void f(){} } void f(){A a; a.f();}";
init_checker();
// check the parse tree
run_checker();
}
TEST_PASS();
}