-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_jlc_func_def_func_new.cpp
163 lines (132 loc) · 4.38 KB
/
test_jlc_func_def_func_new.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
#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)
{
// new struct
{
std::string input_str = "typedef struct A_t { int x; }* A;\n"
"void f(){ A a = new A_t;}";
init_checker();
// check the parse tree
run_checker();
}
// new a undefined struct type
{
std::string input_str = "void f(){ A a = new A_t;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// new a class
{
std::string input_str = "class A { int x; }\n"
"void f(){ A a = new A;}";
init_checker();
// check the parse tree
run_checker();
}
// new a undefined class type
{
std::string input_str = "void f(){ A a = new A;}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// new basic type array
{
std::string input_str = "void f(){ int[] a = new int[10];}";
init_checker();
// check the parse tree
run_checker();
}
// new basic two dimension array
{
std::string input_str = "void f(){ int[][] a = new int[10][10];}";
init_checker();
// check the parse tree
run_checker();
}
// invalid array size
{
std::string input_str = "void f(){ int[] a = new int[1.0];}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// invalid array size
{
std::string input_str = "double f2(){return 0.0;} \n"
"void f(){ int[][] a = new int[1][f2()];}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
// new struct array
{
std::string input_str = "typedef struct A_t { int x; }* A;\n"
"void f(){ A[] a = new A[10];}";
init_checker();
// check the parse tree
run_checker();
}
// new class array
{
std::string input_str = "class A { int x; }\n"
"void f(){ A[] a = new A[10];}";
init_checker();
// check the parse tree
run_checker();
}
// new struct two dimension array
{
std::string input_str = "typedef struct A_t { int x; }* A;\n"
"void f(){ A[][] a = new A[10][10];}";
init_checker();
// check the parse tree
run_checker();
}
// new class two dimension array
{
std::string input_str = "class A { int x; }\n"
"void f(){ A[][] a = new A[10][10];}";
init_checker();
// check the parse tree
run_checker();
}
// new struct array with invalid size
{
std::string input_str = "typedef struct A_t { int x; }* A;\n"
"void f(){ A[] a = new A[1.0];}";
init_checker();
// check the parse tree
TEST_EXPECT_EXCEPTION(
run_checker());
}
TEST_PASS();
}