-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsonStringValueTestsGroup.cpp
188 lines (146 loc) · 5.98 KB
/
JsonStringValueTestsGroup.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
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "JsonWrapper.h"
#include "CppUTest/CommandLineTestRunner.h"
int main(int ac, char **av) { return RUN_ALL_TESTS(ac, av); }
TEST_GROUP(JsonStringValueGroup){void setup(){} void teardown(){}};
TEST(JsonStringValueGroup, JsonField_VeryLong_Name_Test) {
JsonFieldsContainer container;
JsonValue<char *> testable(&container, "testString0 testString1 testString2 testString3 testString4 testString0 testString1 testString2 testString3 "
"testStrintestString0 testString1 testString2 testString3 testString4testString0 testString1 testString2 testString3 "
"testStrintestString0 testString1 testString2 testString3 testString4testString0 testString1 testString2 testString3 testString4g4g4");
CHECK_EQUAL(strlen(testable.Name), 355);
STRCMP_CONTAINS("testString0 testString1 testString2 testString3 testString4 ", testable.Name);
}
TEST(JsonStringValueGroup, JsonStringValue_TryParse_Test) {
JsonFieldsContainer container;
JsonValue<char *> testable(&container, "testString");
rapidjson::Document doc;
doc.Parse("{\"testString\":\"User1\"}");
CHECK_TRUE(testable.TryParse(&doc));
STRCMP_EQUAL(testable.Get(), "User1");
doc.Parse("{\"testString\":null}");
CHECK_TRUE(testable.TryParse(&doc));
CHECK_EQUAL(testable.Get(), NULL);
}
TEST(JsonStringValueGroup, JsonStringValue_WriteTo_Test) {
JsonFieldsContainer container;
JsonValue<char *> testable(&container, "testString", "1234567");
rapidjson::Document doc;
doc.SetObject();
testable.WriteToDoc(&doc);
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
doc.Accept(writer);
const char *jsonStr = buffer.GetString();
STRCMP_EQUAL(jsonStr, "{\"testString\":\"1234567\"}");
}
TEST(JsonStringValueGroup, JsonStringValue_SetValue_Test) {
JsonFieldsContainer container;
JsonValue<char *> testable(&container, "testString");
STRCMP_EQUAL(testable.Get(), NULL);
testable.Set("0123456789");
STRCMP_EQUAL(testable.Get(), "0123456789");
}
TEST(JsonStringValueGroup, JsonStringValue_Equals_Test) {
JsonFieldsContainer container;
JsonValue<char *> testable1(&container, "test", "testString");
JsonValue<char *> testable01(&container, "test", "testString");
JsonValue<char *> testable001(&container, "testOtherField", "testString");
CHECK_TRUE(testable1 == testable01);
CHECK_FALSE(testable1 != testable01);
CHECK_TRUE(testable1.Equals(&testable01));
CHECK_TRUE(testable01.Equals(&testable1));
testable01.Set("otherValue");
CHECK_TRUE(testable1 != testable01);
CHECK_FALSE(testable1 == testable01);
CHECK_FALSE(testable1.Equals(&testable01));
CHECK_FALSE(testable01.Equals(&testable1));
CHECK_FALSE(testable001 == testable1);
CHECK_FALSE(testable1 == testable001);
CHECK_FALSE(testable001.Equals(&testable1));
CHECK_FALSE(testable1.Equals(&testable001));
JsonValue<char *> testable2(&container, "test");
JsonValue<char *> testable02(&container, "test", NULL);
CHECK_TRUE(testable2 == testable02);
testable2.Set("123");
CHECK_FALSE(testable2 == testable02);
testable2.Set(NULL);
CHECK_TRUE(testable2 == testable02);
testable02.Set("123");
CHECK_FALSE(testable2 == testable02);
}
TEST(JsonStringValueGroup, JsonStringValue_CloneTo_Test) {
JsonFieldsContainer container;
JsonValue<char *> testable1(&container, "test", "0123456789");
JsonValue<char *> clone1(&container, "test");
testable1.CloneTo((JsonValueBase *)&clone1);
testable1.Set("check the full data buffer is cloned");
STRCMP_EQUAL(clone1.Get(), "0123456789");
}
TEST(JsonStringValueGroup, JsonStringValue_Common_TryParse_Test) {
JsonFieldsContainer container;
JsonCommonValue<char *> testable1(&container, "test", "0123456789");
CHECK_FALSE(testable1.Presented());
CHECK_FALSE(testable1.IsNull());
rapidjson::Document doc;
doc.Parse("{\"testOther\":\"01234\"}");
CHECK_TRUE(testable1.TryParse(&doc));
CHECK_FALSE(testable1.Presented());
CHECK_FALSE(testable1.IsNull());
testable1.ResetToNull();
doc.Parse("{\"test\":\"01234\"}");
CHECK_TRUE(testable1.TryParse(&doc));
STRCMP_EQUAL(testable1.Get(), "01234");
CHECK_TRUE(testable1.Presented());
CHECK_FALSE(testable1.IsNull());
doc.Parse("{\"test\":null}");
CHECK_TRUE(testable1.TryParse(&doc));
CHECK_TRUE(testable1.Presented());
CHECK_TRUE(testable1.IsNull());
}
TEST(JsonStringValueGroup, JsonStringValue_Null_And_Empty_Value_Test) {
JsonFieldsContainer container;
JsonValue<char *> testDefault(&container, "testDefault");
JsonValue<char *> testNull(&container, "testNull", NULL);
JsonValue<char *> testEmpty(&container, "testEmpty", "");
JsonCommonValue<char *> testCommonDefault(&container, "testDefault");
JsonCommonValue<char *> testCommonNull(&container, "testNull", NULL);
JsonCommonValue<char *> testCommonEmpty(&container, "testEmpty", "");
CHECK_EQUAL(testDefault.Get(), NULL);
CHECK_EQUAL(testNull.Get(), NULL);
STRCMP_EQUAL(testEmpty.Get(), "");
CHECK_TRUE(testCommonDefault.IsNull());
CHECK_TRUE(testCommonNull.IsNull());
CHECK_FALSE(testCommonEmpty.IsNull());
CHECK_EQUAL(testCommonDefault.Get(), NULL);
CHECK_EQUAL(testCommonNull.Get(), NULL);
STRCMP_EQUAL(testCommonEmpty.Get(), "");
testDefault.Set("");
STRCMP_EQUAL(testDefault.Get(), "");
testEmpty.Set(NULL);
CHECK_EQUAL(testEmpty.Get(), NULL);
testCommonDefault.Set("");
STRCMP_EQUAL(testCommonDefault.Get(), "");
testCommonEmpty.Set(NULL);
CHECK_EQUAL(testCommonEmpty.Get(), NULL);
}
TEST(JsonStringValueGroup, JsonStringValue_Common_Change_Presented_After_Set_Value_Test) {
JsonFieldsContainer container;
JsonCommonValue<char *> testable1(&container, "test");
CHECK_FALSE(testable1.Presented());
testable1.Set("");
CHECK_TRUE(testable1.Presented());
}
TEST(JsonStringValueGroup, JsonStringValue_Common_Change_IsNull_After_Set_Value_Test) {
JsonFieldsContainer container;
JsonCommonValue<char *> testable1(&container, "test");
rapidjson::Document doc;
doc.Parse("{\"test\":null}");
CHECK_TRUE(testable1.TryParse(&doc));
CHECK_TRUE(testable1.IsNull());
testable1.Set("");
CHECK_FALSE(testable1.IsNull());
}