-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunittests.cpp
173 lines (154 loc) · 4.87 KB
/
unittests.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
#include <string>
#include <cassert>
#include <cstdarg>
#include <iostream>
#include "utils.h"
#include "eval.h"
#include "ajs_parsing.h"
using std::string;
using std::vector;
using std::cout;
using std::endl;
bool test_skip_brackets(const char *t, const size_t last_brace_offset)
{
string s = t;
string::iterator end = skip_brackets(s.begin(), s.end());
if (s.begin() + last_brace_offset != end) {
cout << "Error, skip_brackets(" << s << ") was wrong\n";
return false;
}
return true;
};
void tests_skip_brackets(void)
{
assert(test_skip_brackets("", 0));
assert(test_skip_brackets("a", 0));
assert(test_skip_brackets("()", 1));
assert(test_skip_brackets("()a", 1));
assert(test_skip_brackets("(a)", 2));
assert(test_skip_brackets("a()", 0));
assert(test_skip_brackets("()()", 1));
assert(test_skip_brackets("(())", 3));
assert(test_skip_brackets("(()())", 5));
assert(test_skip_brackets("a(())", 0));
assert(test_skip_brackets("(a())", 4));
assert(test_skip_brackets("((a))", 4));
assert(test_skip_brackets("(()a)", 4));
assert(test_skip_brackets("(())a", 3));
}
bool
test_split_sum(const char *t, const size_t num, ...)
{
va_list va;
string s = t;
vector<string> tokens;
bool ok = true;
va_start(va, num);
tokens = split_sum(s.begin(), s.end());
if (tokens.size() != num) {
ok = false;
cout << "Error, split_sum(" << s << ") returned " << tokens.size()
<< " items, expected " << num << "\n";
}
// cout << "Input: " << t << endl;
for (vector<string>::iterator it = tokens.begin(); ok && it != tokens.end(); it++) {
const char *expected_token = va_arg (va, const char *);
if (*it != expected_token) {
ok = false;
cout << "Error, got token " << *it << " but expected "
<< expected_token << endl;
}
}
va_end(va);
return ok;
}
bool tests_split_sum()
{
return
test_split_sum("a", 1, "a") &&
// I'm not really sure what these cases should return, but we test
// that they at least return at all
test_split_sum("+", 1, "+") &&
test_split_sum("-", 1, "-") &&
test_split_sum("++", 1, "+") &&
test_split_sum("+a", 1, "+a") &&
test_split_sum("a+", 1, "a") &&
test_split_sum("aa", 1, "aa") &&
test_split_sum("-a", 1, "-a") &&
test_split_sum("a-", 2, "a", "-") &&
test_split_sum("a+b", 2, "a", "b") &&
test_split_sum("a-b", 2, "a", "-b") &&
test_split_sum("-a+b", 2, "-a", "b") &&
test_split_sum("-a-b", 2, "-a", "-b");
}
bool
test_eval(const char *expression, eval_type expected_result, size_t expected_parse_len = SIZE_MAX);
bool
test_eval(const char *expression, eval_type expected_result, size_t expected_parse_len)
{
const char *endp;
bool ok = true;
if (expected_parse_len == SIZE_MAX)
expected_parse_len = strlen(expression);
eval_type result = eval(expression, &endp);
if (result != expected_result) {
cout << "Error evaluating " << expression << ", got result " << result << " but expected " << expected_result << endl;
ok = false;;
}
if (endp != expression + expected_parse_len) {
cout << "Error evaluating " << expression << ", parsed "
<< (endp - expression) << " characters but expected to parse "
<< expected_parse_len << endl;
}
return ok;
}
bool
tests_eval()
{
return test_eval("a", 0, 0) &&
test_eval("1", 1) &&
test_eval("1+2", 3) &&
test_eval("1-2", -1) &&
test_eval("-1+2", 1) &&
test_eval("-1-2", -3) &&
test_eval("1*2", 2) &&
test_eval("1*(2+3)", 5) &&
test_eval("(1+2)*3", 9) &&
test_eval("(1+2)*(3+4)", 21) &&
test_eval("1+(-((2+3)))*(4+5)-6", -50) &&
test_eval("6/2", 3) &&
test_eval("1/2", 0) &&
test_eval("(1+2)*(2+2)/6", 2) &&
test_eval(" ( 12 + 34 )*( 56 + 78 ) / 23", 268) &&
test_eval(" ( 0xc + 0x22 )*( 0x38 + 0x4E ) / 0x17", 268);
}
bool
test_parse_pointer_intel(const char *ptr_text, uint32_t const size)
{
asmjit::X86Mem ptr;
string ptr_string = ptr_text;
ptr = parse_pointer_intel(ptr_string, size, true);
return true;
}
bool
tests_parse_pointer_intel()
{
test_parse_pointer_intel("[123]", 4);
test_parse_pointer_intel("[rbx]", 4);
test_parse_pointer_intel("[123+rbx]", 4);
test_parse_pointer_intel("[rbx*8]", 4);
test_parse_pointer_intel("[123+rbx*8]", 4);
test_parse_pointer_intel("[rbx+rsi]", 4);
test_parse_pointer_intel("[123+rbx+rsi]", 4);
test_parse_pointer_intel("[123+rbx*8+rsi]", 4);
test_parse_pointer_intel("[12-4+rbx*8+rsi+(-7*8)]", 4);
return true;
}
int main()
{
tests_skip_brackets();
tests_split_sum();
tests_eval();
tests_parse_pointer_intel();
return(0);
}