-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparser_test.cpp
118 lines (106 loc) · 3.01 KB
/
parser_test.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
#include <gtest/gtest.h>
#include <sstream>
#include <vector>
#include <string>
#include "lexer.h"
#include "parser.h"
class CalculatorV1ParserTest : public ::testing::Test {
protected:
CalculatorV1ParserTest() :ts(iss), parser(ts) {}
std::istringstream iss;
Token_stream ts;
Parser parser;
};
TEST_F(CalculatorV1ParserTest, Expression) {
std::vector<std::pair<std::string, double>> test_cases = {
{"8;", 8},
{"1+2*3;", 7},
{"1-2*3+4;", -1},
{"1-34/50;", 0.32},
{"42+(11-4)/8-9*(32.5+24.7);", -471.925}
};
for (const auto& t : test_cases) {
iss.str(t.first);
EXPECT_DOUBLE_EQ(parser.expression(), t.second);
ts.ignore();
}
}
TEST_F(CalculatorV1ParserTest, ExpressionLexerError) {
std::vector<std::string> input = {
"!+2", "1*2/3%4+5-6;", "'a';", "1@2", "[2.5]",
"Mary had a little lamb",
"srtvrqtiewcbet7rewaewre–wqcntrretewru754389652743nvcqnwq;",
"!@#$%^&*()~:;"
};
for (const auto& s : input) {
iss.str(s);
EXPECT_THROW(parser.expression(), Lexer_error);
ts.ignore();
}
}
TEST_F(CalculatorV1ParserTest, ExpressionParserError) {
std::vector<std::string> input = {
";;;", "(1+3;", "(1+);", "();", "1+;", "+1;", "1++;", "1/0;",
"1++2;", "-2;", "q", "1+q"
};
for (const auto& s : input) {
iss.str(s);
EXPECT_THROW(parser.expression(), Parser_error);
ts.ignore();
}
}
TEST_F(CalculatorV1ParserTest, Term) {
std::vector<std::pair<std::string, double>> test_cases = {
{"3.14;", 3.14},
{"2*3/4;", 1.5},
{"(1+2)*(3-4*5)/8;", -6.375}
};
for (const auto& t : test_cases) {
iss.str(t.first);
EXPECT_DOUBLE_EQ(parser.term(), t.second);
ts.ignore();
}
}
TEST_F(CalculatorV1ParserTest, TermDevidedByZero) {
std::vector<std::string> input = {"1/0;", "3/(8-4*2);"};
for (const auto& s : input) {
iss.str(s);
EXPECT_THROW(parser.term(), Parser_error);
ts.ignore();
}
}
TEST_F(CalculatorV1ParserTest, TermPutBack) {
std::vector<std::pair<std::string, char>> test_cases = {
{"2*3/4;", ';'},
{"1+2*3;", '+'},
{"(1+2*3);", ';'},
{"1/2-3", '-'}
};
for (const auto& t : test_cases) {
iss.str(t.first);
parser.term();
EXPECT_EQ(ts.get().kind, t.second);
ts.ignore();
}
}
TEST_F(CalculatorV1ParserTest, Primary) {
std::vector<std::pair<std::string, double>> test_cases = {
{"12.345;", 12.345},
{"(1+2*3);", 7},
{"1+2*3;", 1},
{"((3+4)/2)*5;", 3.5},
{"12 34;", 12},
{"(8);", 8}
};
for (const auto& t : test_cases) {
iss.str(t.first);
EXPECT_DOUBLE_EQ(parser.primary(), t.second);
}
}
TEST_F(CalculatorV1ParserTest, PrimaryError) {
std::vector<std::string> input = {"+2-3;", "(1+2;"};
for (const auto& s : input) {
iss.str(s);
EXPECT_THROW(parser.primary(), Parser_error);
}
}