-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_jlc_func_def_var.cpp
280 lines (242 loc) · 7.7 KB
/
test_jlc_func_def_var.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
#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)
{
// define variables no init
{
std::string input_str = "void f(){ int a; int b; double c,d;}";
init_checker();
// check the parse tree
run_checker();
// @need a better way to check the result, currently vars will be released after the function is done
// check the result
// auto func_obj = context->get_func(
// context->get_scope_name("f", func_def_checker->GLOBAL_SCOPE));
// // check the variables
// DEBUG_PRINT(func_obj->str());(
// TEST_ASSERT(func_obj->has_var("a"));
// TEST_ASSERT(func_obj->has_var("b"));)
// TEST_ASSERT(func_obj->has_var("c"));
// TEST_ASSERT(func_obj->has_var("d"));
}
// redefined variable in a scope
{
std::string input_str = "void f(){ int a; int b; double a;}";
init_checker();
// check the parse tree
parse_tree->accept(type_decl_checker.get());
parse_tree->accept(func_decl_checker.get());
parse_tree->accept(type_def_checker.get());
TEST_EXPECT_EXCEPTION(
parse_tree->accept(func_def_checker.get()));
}
// shadow parameter
{
std::string input_str = "void f(int a){ double a; int b;}";
init_checker();
// check the parse tree
run_checker();
}
// shadow outer variable
{
std::string input_str = "void f(int a){ double a; int b; {double b;{int a;}}}";
init_checker();
// check the parse tree
run_checker();
}
// with initialization
{
std::string input_str = "void f(int a){int a, b=1; double c=0.0, d; }";
init_checker();
// check the parse tree
run_checker();
}
// void type
{
std::string input_str = "void f(int a){int a, b=1; void c, d; }";
init_checker();
// check the parse tree
parse_tree->accept(type_decl_checker.get());
parse_tree->accept(func_decl_checker.get());
parse_tree->accept(type_def_checker.get());
TEST_EXPECT_EXCEPTION(
parse_tree->accept(func_def_checker.get()));
}
// array
{
std::string input_str = "void f(){int[] a; int[][]b;}";
init_checker();
// check the parse tree
run_checker();
}
// struct
{
std::string input_str = "typedef struct a_t{int a;} * A; \n"
"void f(){A a;}";
init_checker();
// check the parse tree
run_checker();
}
// enum
{
std::string input_str = "enum A {a,b,c}; \n"
"void f(){A a;}";
init_checker();
// check the parse tree
run_checker();
}
// class
{
std::string input_str = "class A {int a;} \n"
"void f(){A a;}";
init_checker();
// check the parse tree
run_checker();
}
// init with other variable
{
std::string input_str = "void f(){int a=1; int b=a;}";
init_checker();
// check the parse tree
run_checker();
}
// init with other variable but not defined
{
std::string input_str = "void f(){int b=a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// init with other variable but not the same type
{
std::string input_str = "void f(){int a=1; double b=a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// shadow outer variable with init
{
std::string input_str = "void f(int a){ double a; double b; {int b=1;{int a=b;}}}";
init_checker();
// check the parse tree
run_checker();
}
// array . length
{
std::string input_str = "void f(){int[] a; int b=a.length;}";
init_checker();
// check the parse tree
run_checker();
}
// enum variable
{
std::string input_str = "enum A {a,b,c}; \n"
"void f(){A a= A.b;}";
init_checker();
// check the parse tree
run_checker();
}
// struct variable
{
std::string input_str = "typedef struct a_t{int a;} * A; \n"
"void f(){A a; int b = a.a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// -> operator
{
std::string input_str = "typedef struct a_t{int a;} * A; \n"
"void f(){A a; int b = a->a;}";
init_checker();
// check the parse tree
run_checker();
}
// -> op on non struct
{
std::string input_str = "void f(){int a; int b = a->a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// -> on class
{
std::string input_str = "class A {int a;} \n"
"void f(){A a; int b = a->a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(run_checker());
}
// class variable
{
std::string input_str = "class A {int a;} \n"
"void f(){A a; int b = a.a;}";
init_checker();
// check the parse tree
run_checker();
}
// class variable not the same type
{
std::string input_str = "class A {int a;} \n"
"void f(){A a; double b = a.a;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// self var in class function
{
std::string input_str =
"class A {int a; \n"
"int f(){return 1;} \n"
"int f1(){return self.f();}} \n";
init_checker();
run_checker();
}
// child class init parente class
{
std::string input_str =
"class A {int a;} \n"
"class B extends A {int b;}\n"
"void f(){ A a = new B;}";
init_checker();
run_checker();
}
// parent class init child class
{
std::string input_str =
"class A {int a;} \n"
"class B extends A {int b;}\n"
"void f(){ B a = new A;}";
init_checker();
TEST_EXPECT_EXCEPTION(
run_checker());
}
TEST_PASS();
}