-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.cpp
360 lines (311 loc) · 12.3 KB
/
tests.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#include <filesystem>
#include <fstream>
#include <gtest/gtest.h>
#include "src/parse-states/unparsed.h"
#include "src/parse-states/divided.h"
#include "src/parse-states/parsed.h"
#include "src/ReadFile.h"
#include "src/builtinfunction.h"
#include "src/value.h"
#include "src/expression.h"
/**
* \test Case, where it continues with string it should
*/
TEST ( unparsed_continueWith, true_case )
{
TooReadable::ParseStates::Unparsed test = std::string("abcdef");
EXPECT_EQ(test.ContinueWith("abc", false), "");
}
/**
* \test Case, where it continues with string it shouldn't
*/
TEST ( unparsed_continueWith, false_case )
{
TooReadable::ParseStates::Unparsed test = std::string("abcdef");
EXPECT_EQ(test.ContinueWith("test", false), "abcd");
}
/**
* \test Multiple cases.
*/
TEST ( unparsed_continueWith, multiple_cases )
{
TooReadable::ParseStates::Unparsed test = std::string("abcdefghijk");
EXPECT_EQ(test.ContinueWith("abc", false), "");
EXPECT_EQ(test.ContinueWith("def", false), "");
EXPECT_EQ(test.ContinueWith("test", false), "ghij");
}
/**
* \test Multiple cases and instances of `Unparsed`.
*/
TEST ( unparsed_continueWith, multiple_cases_and_instances )
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcdefghijklmno");
EXPECT_EQ(test1.ContinueWith("abc", false), "");
EXPECT_EQ(test1.ContinueWith("def", false), "");
TooReadable::ParseStates::Unparsed test2 = std::string("testing_str");
EXPECT_EQ(test1.ContinueWith("ghi", false), "");
EXPECT_EQ(test2.ContinueWith("test", false), "");
EXPECT_EQ(test2.ContinueWith("Hello!", false), "ing_st");
EXPECT_EQ(test1.ContinueWith("jk", false), "");
EXPECT_EQ(test1.ContinueWith("end", false), "lmn");
}
/**
* \test Make sure it doesn't break on false case.
*/
TEST ( unparsed_continueWith, true_case_after_false_case )
{
TooReadable::ParseStates::Unparsed test = std::string("abcdefghijk");
EXPECT_EQ(test.ContinueWith("abc", false), "");
EXPECT_EQ(test.ContinueWith("def", false), "");
EXPECT_EQ(test.ContinueWith("test", false), "ghij");
EXPECT_EQ(test.ContinueWith("gh", false), "");
}
/**
* \test continuesWith argument overhangs the string.
*/
TEST ( unparsed_continueWith, overhang )
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcd");
EXPECT_EQ(test1.ContinueWith("super_test", false), "abcd");
}
/**
* \test continuesWith argument overhangs the string.
*/
TEST ( unparsed_continueWith, overhang_almost_true )
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcd");
EXPECT_EQ(test1.ContinueWith("abcdef", false), "abcd");
}
/**
* \test continuesWith Ensure, that the Unparsed throws the exception, if the code does not continue with given string.
*/
TEST ( unparsed_continueWith, throw_exception )
{
TooReadable::ParseStates::Unparsed test = std::string("abcdef");
EXPECT_THROW({
test.ContinueWith("test");
}, TooReadable::ParseStates::Unparsed::ArgNotFoundException);
}
/**
* \test Test of `unparsed.skipTo`.
*/
TEST ( unparsed_skipTo, basic )
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcdefghijklmnopqrstuv");
EXPECT_EQ(test1.SkipTo("de"), "abc");
EXPECT_EQ(test1.SkipTo("hi"), "fg");
EXPECT_EQ(test1.SkipTo("nopq"), "jklm");
EXPECT_THROW({
test1.SkipTo("opq");
}, TooReadable::ParseStates::Unparsed::ArgNotFoundException);
EXPECT_EQ(test1.SkipTo("uv"), "rst");
}
/**
* \test Test of `unparsed.skipTo` and `unparsed.continueWith`.
*/
TEST ( unparsed, skipTo_continueWith )
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcdefghijklmnopqrstuv");
EXPECT_EQ(test1.SkipTo("de"), "abc");
EXPECT_EQ(test1.SkipTo("hi"), "fg");
EXPECT_EQ(test1.ContinueWith("jkl"), "");
EXPECT_THROW({
test1.SkipTo("lmn");
}, TooReadable::ParseStates::Unparsed::ArgNotFoundException);
EXPECT_EQ(test1.SkipTo("uv"), "mnopqrst");
}
/**
* \test Test of `expectEnd`, shouldn't throw anything.
*/
TEST ( unparsed_expectEnd, success)
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcd");
test1.SkipTo("cd");
test1.ExpectEnd();
}
/**
* \test Test of `expectEnd`, should throw.
*/
TEST ( unparsed_expectEnd, failture )
{
TooReadable::ParseStates::Unparsed test1 = std::string("abcde");
test1.SkipTo("cd");
EXPECT_THROW(test1.ExpectEnd(), TooReadable::ParseStates::Unparsed::ExpectedEndException);
}
// Sample TOR program used across the tests
//const std::string sampleProgram = "Please run the sample program.\n\nHow to run the sample program\n=============================\n\n 1. Greet everything and everyone.\n - Test argument 1: `Test`\n - Second testing argument: `Another test`\n 2. Propagate TooReadable.\n\nHow to greet everything and everyone\n====================================\n\nWhat do we need to know\n-----------------------\n\nTo Greet everything and everyone, we need to also know theese values:\n - Test argument 1\n - Second testing argument\n\nInstructions\n------------\n\n 1. Greet the world.\n 2. Greet the user.\n";
const std::string sampleProgram() {
std::ifstream inFile("test_code/testing_code.tor");
return ReadFile(inFile);
}
/**
* \test divided Test creating \c TooReadable::ParseStates::Divided class from \c sampleProgram.
*/
TEST ( divided, program )
{
TooReadable::ParseStates::Divided test1;
try {
test1 = TooReadable::ParseStates::Unparsed(sampleProgram());
} catch (TooReadable::ParseStates::Unparsed::ArgNotFoundException err) {
std::cout << err.what();
}
EXPECT_EQ(test1.mainFunc, "run the sample program");
// ----- Run the sample program -----
EXPECT_EQ(test1.functions[0].name, "run the sample program");
EXPECT_EQ(test1.functions[0].steps[0].funcName, "greet the user");
EXPECT_EQ(test1.functions[0].steps[0].parentFunc, test1.functions[0].name);
EXPECT_EQ(test1.functions[0].steps[1].funcName, "say something to user");
EXPECT_EQ(test1.functions[0].steps[1].parentFunc, test1.functions[0].name);
// In the testing program, arguments are listed in wrong order (it should be allowed)
// Arguments are put to correct order in constructor of `Parsed`.
EXPECT_EQ(test1.functions[0].steps[0].outOfLineArgs[0].name, "User's name");
EXPECT_EQ(test1.functions[0].steps[0].outOfLineArgs[0].value, "`Tester`");
EXPECT_EQ(test1.functions[0].steps[0].outOfLineArgs[1].name, "Weather");
EXPECT_EQ(test1.functions[0].steps[0].outOfLineArgs[1].value, "`Sunny`");
EXPECT_EQ(test1.functions[0].outOfLineArgs.size(), 0);
EXPECT_EQ(test1.functions[1].outOfLineArgs.size(), 2);
// ----- Greet the user -----
EXPECT_EQ(test1.functions[1].name, "greet the user");
EXPECT_EQ(test1.functions[1].outOfLineArgs, std::vector<std::string>({ "User's name", "Weather" }));
}
/**
* \test parsed_constructor Test parsing \c sampleProgram.
*/
TEST ( parsed_constructor, program )
{
TooReadable::ParseStates::Parsed test1 = TooReadable::ParseStates::Divided(TooReadable::ParseStates::Unparsed(sampleProgram()));
EXPECT_EQ(test1.mainFunc, test1.funcs[0]); // The main function is correct
// Check names of functions
EXPECT_EQ(test1.funcs[0]->name, "run the sample program");
EXPECT_EQ(test1.funcs[1]->name, "greet the user");
// Check bodies of functions (not full, I'm too lazy to write test for the entire program)
EXPECT_EQ(test1.funcs[0]->body[0].toCall->name, "greet the user");
EXPECT_EQ(test1.funcs[0]->body[0].toCall, test1.funcs[1]);
EXPECT_EQ(test1.funcs[0]->body[1].toCall->name, "say something to user");
EXPECT_EQ(test1.funcs[0]->body[2].toCall->name, "let user write something");
EXPECT_EQ(test1.funcs[1]->body[0].toCall->name, "join two texts");
EXPECT_EQ(test1.funcs[1]->body[2].toCall->name, "join two texts");
EXPECT_EQ(test1.funcs[1]->body[3].toCall->name, "join two texts");
EXPECT_EQ(test1.funcs[1]->body[1].toCall->name, "say something to user");
// TODO: Write test on arguments, something like this:
// ```
// std::vector<TooReadable::Value> emptyVec;
// EXPECT_EQ((std::string)test1.funcs[0]->body[3].args[0].evaluate(&emptyVec), "Sam");
// ```
}
/**
* \test overall Testing, that parsing programs, that shouldn't be parsed (eg. syntax errors) throws an error.
*/
TEST ( overall, failtures ) {
std::string pathToFailing = "./test_code/parsing_fails"; // Directory with invalid code sample.
for (const auto & entry : std::filesystem::directory_iterator(pathToFailing)) { // For each file in `test_code/parsing_fails`
std::cout << "TESTING: " << entry.path() << std::endl;
std::ifstream inputFile = std::ifstream ( entry.path() ); // Read the file with invalid code.
EXPECT_ANY_THROW({ // The programs should not be parsed.
// Try to parse the code
TooReadable::ParseStates::Unparsed code = ReadFile ( inputFile );
TooReadable::ParseStates::Divided dividedCode = code;
TooReadable::ParseStates::Parsed parsedCode = dividedCode;
});
}
}
/**
* \test builtin_funcs Ensure, that all builtin functions doesn't throw anything.
*/
// TODO: Uncomment and fix
// TEST ( builtin_funcs, not_crashing ) {
// for (TooReadable::BuiltinFunction* func : TooReadable::BuiltinFuncs::list)
// func->run();
// }
/**
* @test value Ensure, that conversion of `Value` to `bool` and `bool` to `Value` is done properly.
*/
TEST( value, bool_cast ) {
TooReadable::Value t;
t = true;
EXPECT_TRUE(t);
t = false;
std::cout << std::string(t) << '\n';
EXPECT_FALSE(t);
t = "YES"; EXPECT_TRUE(t);
t = "Yes"; EXPECT_TRUE(t);
t = "yes"; EXPECT_TRUE(t);
t = "NO"; EXPECT_FALSE(t);
t = "No"; EXPECT_FALSE(t);
t = "no"; EXPECT_FALSE(t);
t = "Hello world";
EXPECT_THROW(
bool aa = t,
TooReadable::Value::InvalidBoolConv
);
}
/**
* @test value Ensure, that conversion of `Value` to `int` and `int` to `Value` is done properly.
*/
TEST( value, int_cast ) {
TooReadable::Value t;
t = 123;
EXPECT_EQ((float)t, 123);
EXPECT_EQ(std::string(t), "123");
t = "-137";
EXPECT_EQ((float)t, -137);
EXPECT_EQ(std::string(t), "-137");
}
/**
* @test value Ensure, that conversion of literal to `Value` works properly
*/
TEST( value, from_literal ) {
TooReadable::Value t = TooReadable::Value::FromLiteral("12");
EXPECT_EQ((float)t, 12);
t = TooReadable::Value::FromLiteral("`My text`");
EXPECT_EQ((std::string)t, "My text");
EXPECT_THROW({
t = TooReadable::Value::FromLiteral("Haha invalid literal");
}, TooReadable::Value::BadLiteral);
t = "-137";
EXPECT_EQ((float)t, -137);
EXPECT_EQ(std::string(t), "-137");
}
/**
* @test expression Test if saving and reading literals from expressions works
*
*/
TEST( expression, literal ) {
TooReadable::Expression e = TooReadable::Value("aa");
EXPECT_EQ(e.type(), TooReadable::Expression::Literal);
EXPECT_EQ((std::string)e.evaluate({}, {}), "aa");
}
/**
* @test expression Test if saving and reading variables from expressions works
*
*/
TEST( expression, variable ) {
TooReadable::Expression e(3, false);
std::vector<TooReadable::Value> vars = {123, 45, 887, 778, 56};
EXPECT_EQ(e.type(), TooReadable::Expression::Variable);
EXPECT_EQ((float)e.evaluate(&vars, {}), 778);
}
/**
* @test expression Test if saving and reading variables from expressions works
*
*/
TEST( expression, return_value) {
TooReadable::Expression e(3, true);
std::vector<TooReadable::Value> retVals = {123, 45, 887, 778, 56};
EXPECT_EQ(e.type(), TooReadable::Expression::ReturnValue);
EXPECT_EQ((float)e.evaluate({}, &retVals), 778);
}
/**
* @test expression Test if parsing expressions works
*
*/
TEST( expression, parse ) {
std::vector<std::string> varNames = {"My first variable", "Some second variable"};
std::vector<TooReadable::Value> vars = {123, 45};
TooReadable::Expression e = TooReadable::Expression::Parse("`Hello world`", varNames);
EXPECT_EQ(e.type(), TooReadable::Expression::Literal);
EXPECT_EQ((std::string)e.evaluate(&vars, {}), "Hello world");
e = TooReadable::Expression::Parse("Some second variable", varNames);
EXPECT_EQ(e.type(), TooReadable::Expression::Variable);
EXPECT_EQ((std::string)e.evaluate(&vars, {}), "45");
}