-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_assert_primitive.cpp
176 lines (149 loc) · 3.12 KB
/
test_assert_primitive.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
#include "../source/h2_unit.cpp"
SUITE(OK Primitive [api])
{
Case(unary)
{
OK(1);
OK(!0);
OK(true);
OK((std::is_same<long, long int>::value));
}
Case(compare integer)
{
OK(1 == 1);
OK(1 != 2);
OK(1 < 2);
OK(1 <= 2);
OK(1 <= 1);
OK(2 > 1);
OK(2 >= 1);
OK(2 >= 2);
}
Case(compare double)
{
OK(1.0 == 1);
OK(1.0 != 2);
OK(1.0 < 2);
OK(1.0 <= 2);
OK(1.0 <= 1);
OK(2.0 > 1);
OK(2.0 >= 1);
OK(2.0 >= 2);
}
Case(compare string)
{
OK("abc" == "abc");
OK("abc" != "xyz");
const char* a1 = "def";
OK("abc" != a1);
}
Case(compare pointer)
{
const char* a1 = "def";
OK(NULL != a1);
OK(a1 != NULL);
const char* a2 = nullptr;
OK(NULL == a2);
OK(a2 == NULL);
int* b1 = (int*)12345678;
OK(NULL != b1);
OK(b1 != NULL);
int* b2 = nullptr;
OK(NULL == b2);
OK(b2 == NULL);
void* c1 = (void*)12345678;
OK(NULL != c1);
OK(c1 != NULL);
void* c2 = nullptr;
OK(NULL == c2);
OK(c2 == NULL);
}
Case(dual)
{
OK(1, 1);
OK(true, (std::is_same<long, long int>::value));
}
Case(Any)
{
OK(_, 1);
OK(Any(), "A");
OK((_), "A");
OK((Any()), "A");
}
Case(Je)
{
OK(~Je("{'name': /hello.*world/, 'age': 18}"), "{'Name': \"hello world\", 'age': 18}");
OK(!Je("{'name': /hello.*world/, 'age': 18}"), "{'Name': \"hello world\", 'age': 18}");
}
}
SUITE(JE Primitive)
{
Case(normal)
{
JE("{'name': \"hello world\"}", "{'name': \"hello world\", 'age': [18, 20]}");
}
Case(selector)
{
JE("hello world", "{'name': \"hello world\", 'age': [18, 20]}", ".name");
JE("18", "{'name': \"hello world\", 'age': [18, 20]}", ".age[0]");
JE("20", "{'name': \"hello world\", 'age': [18, 20]}", ".age[-1]");
OK(Je("hello world", ".name"), "{'name': \"hello world\", 'age': [18, 20]}");
OK(Je("18", ".age[0]"), "{'name': \"hello world\", 'age': [18, 20]}");
}
Case(selector empty)
{
OK(!Je("hello world", ".say"), "{'name': \"hello world\", 'age': [18, 20]}");
}
}
SUITE(KO Primitive [api])
{
Case(unary)
{
KO(!1);
KO(0);
KO(false);
KO((std::is_same<long long, long int>::value));
}
Case(compare integer)
{
KO(1 != 1);
KO(1 == 2);
KO(1 > 2);
KO(1 >= 2);
}
Case(compare string)
{
KO("abc" != "abc");
KO("abc" == "xyz");
}
Case(compare pointer)
{
const char* a1 = "def";
KO(NULL == a1);
KO(a1 == NULL);
const char* a2 = nullptr;
KO(NULL != a2);
KO(a2 != NULL);
}
Case(dual)
{
KO(1, 2);
KO(false, (std::is_same<long, long int>::value));
}
Case(Je)
{
KO(Je("{'name': /hello.*world/, 'age': 18}"), "{'Name': \"hello world\", 'age': 18}");
}
}
SUITE(Warning Primitive [api])
{
Case(warning OK)
{
Warning OK(1);
Warning OK("abc" != "xyz");
}
Case(warning JE)
{
Warning JE("[1]", "[1]");
}
}