-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_jlctcfuncdcl.cpp
212 lines (169 loc) · 6.19 KB
/
test_jlctcfuncdcl.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
#include "typechecker/jlc_tc_func_dcl.h"
#include "typechecker/jlc_tc_error.h"
#include "common/test.h"
#include <iostream>
#include <string>
int main(int argc, char **argv)
{
// global defined functions
{
std::string input_str = "int foo(int a) { return a; }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context = std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
parse_tree->accept(checker.get());
// check the result
auto name = context->get_scope_name("foo", "global");
TEST_ASSERT(name == "foo");
TEST_ASSERT(context->has_func(name) == true);
TEST_ASSERT(context->get_func(name)->name == name);
// check return type
auto func = context->get_func(name);
TEST_ASSERT(*func->return_type ==
JLC::TYPE::JLCType(JLC::TYPE::type_enum::INT));
// check arguments number
TEST_ASSERT(func->args.size() == 1);
// check argument type
TEST_ASSERT(*func->args[0].get_type() ==
JLC::TYPE::JLCType(JLC::TYPE::type_enum::INT));
}
// redefine function
{
std::string input_str = "int foo(int a) { return a; } int foo(int a) { return a; }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context = std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
TEST_EXPECT_EXCEPTION(
parse_tree->accept(checker.get()));
}
// local defined functions (class methods)
{
std::string input_str =
"class A { int foo(int a) { return a; } }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
parse_tree->accept(checker.get());
// check the result
auto name = context->get_scope_name("foo", "A");
TEST_ASSERT(name == "A::foo");
TEST_ASSERT(context->has_func(name) == true);
TEST_ASSERT(context->get_func(name)->name == name);
// check return type
auto func = context->get_func(name);
TEST_ASSERT(*func->return_type ==
JLC::TYPE::JLCType(JLC::TYPE::type_enum::INT));
// check arguments number
TEST_ASSERT(func->args.size() == 1);
// check argument type
TEST_ASSERT(*func->args[0].get_type() ==
JLC::TYPE::JLCType(JLC::TYPE::type_enum::INT));
}
// global function has same name as class method
{
std::string input_str =
"int foo(int a) { return a; }"
"class A { int foo(int a) { return a; } }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
parse_tree->accept(checker.get());
// check the parse tree
TEST_ASSERT(
context->has_func("foo") == true);
TEST_ASSERT(
context->has_func("A::foo") == true);
}
// different class's method has same name
{
std::string input_str =
"class A { int foo(int a) { return a; } }"
"class B { int foo(int a) { return a; } }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
parse_tree->accept(checker.get());
// check the parse tree
TEST_ASSERT(
context->has_func("A::foo") == true);
TEST_ASSERT(
context->has_func("B::foo") == true);
}
// void parameter is not allowed
{
std::string input_str = "int foo(void x) { return 0; }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
TEST_EXPECT_EXCEPTION(
parse_tree->accept(checker.get()));
}
// parameters with same name
{
std::string input_str = "int foo(int a, int a) { return 0; }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
TEST_EXPECT_EXCEPTION(
parse_tree->accept(checker.get()));
}
// main function must have return type INT
{
std::string input_str = "void main() { return; }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
TEST_EXPECT_EXCEPTION(
parse_tree->accept(checker.get()));
}
// main function must have return type INT
{
std::string input_str = "int main() { return 0; }";
auto parse_tree = gen_ast(input_str);
// create a type checker
// new context
auto context =
std::make_shared<JLC::CONTEXT::JLCContext>();
auto checker =
std::make_shared<JLC::TC::JLC_FUNC_CD_Checker>(context);
// check the parse tree
parse_tree->accept(checker.get());
}
TEST_PASS();
}