-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoken_tests.cpp
More file actions
118 lines (83 loc) · 2.69 KB
/
token_tests.cpp
File metadata and controls
118 lines (83 loc) · 2.69 KB
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
#include "catch.hpp"
#include "token.hpp"
TEST_CASE("Test Token creation", "[token]") {
Token tko(Token::OPEN);
REQUIRE(tko.type() == Token::OPEN);
REQUIRE(tko.asString() == "(");
Token tkc(Token::CLOSE);
REQUIRE(tkc.type() == Token::CLOSE);
REQUIRE(tkc.asString() == ")");
Token tks("thevalue");
REQUIRE(tks.type() == Token::STRING);
REQUIRE(tks.asString() == "thevalue");
}
TEST_CASE("Tokenize string literals", "[token]") {
std::string input = R"(
("This is a string")
)";
std::istringstream iss(input);
TokenSequenceType tokens = tokenize(iss);
REQUIRE(tokens.front().type() == Token::OPEN);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "\"This is a string\"");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::CLOSE);
tokens.pop_front();
REQUIRE(tokens.empty());
}
TEST_CASE("Tokenize bad string literals", "[token]") {
std::string input = R"(
("This is a "string")
)";
std::istringstream iss(input);
TokenSequenceType tokens = tokenize(iss);
REQUIRE(tokens.front().type() == Token::OPEN);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "\"This is a \"");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "string\"");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::CLOSE);
tokens.pop_front();
REQUIRE(tokens.empty());
}
TEST_CASE("Test tokenize", "[token]") {
std::string input = R"(
( A a aa )aal ; a comment
(aalii)) 3
)";
std::istringstream iss(input);
TokenSequenceType tokens = tokenize(iss);
REQUIRE(tokens.front().type() == Token::OPEN);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "A");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "a");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "aa");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::CLOSE);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "aal");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::OPEN);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "aalii");
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::CLOSE);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::CLOSE);
tokens.pop_front();
REQUIRE(tokens.front().type() == Token::STRING);
REQUIRE(tokens.front().asString() == "3");
tokens.pop_front();
REQUIRE(tokens.empty());
}