1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

- fixed bugs and added test cases

This commit is contained in:
Niels
2013-07-04 17:06:53 +02:00
parent ac6ced6fb8
commit 206e15dff7
2 changed files with 123 additions and 25 deletions

View File

@ -74,6 +74,14 @@ void test_null() {
}
}
void test_bool() {
JSON True = true;
JSON False = false;
bool x = True;
}
void test_string() {
/* a string object */
@ -135,6 +143,13 @@ void test_string() {
} catch (const std::exception& ex) {
assert(ex.what() == std::string("cannot cast string to JSON Boolean"));
}
{
// get payload
std::string* s1 = static_cast<std::string*>(a.data());
std::string s2 = a;
assert(*s1 == s2);
}
}
void test_array() {
@ -200,6 +215,13 @@ void test_array() {
std::cerr << element << '\n';
}
#endif
{
// get payload
std::vector<JSON>* array = static_cast<std::vector<JSON>*>(a.data());
assert(array->size() == a.size());
assert(array->empty() == a.empty());
}
}
void test_streaming() {
@ -224,10 +246,35 @@ void test_streaming() {
o >> k;
assert(j.toString() == k.toString());
}
// check numbers
{
std::stringstream number_stream;
number_stream << "[0, -1, 1, 1.0, -1.0, 1.0e+1, 1.0e-1, 1.0E+1, 1.0E-1, -1.2345678e-12345678]";
JSON j;
j << number_stream;
}
// check Unicode
{
std::stringstream unicode_stream;
unicode_stream << "[\"öäüÖÄÜß\", \"ÀÁÂÃĀĂȦ\", \"★☆→➠♥︎♦︎☁︎\"]";
JSON j;
j << unicode_stream;
}
// check escaped strings
{
std::stringstream escaped_stream;
escaped_stream << "[\"\\\"Hallo\\\"\", \"\u0123\"]";
JSON j;
j << escaped_stream;
}
}
int main() {
test_null();
test_bool();
test_string();
test_array();
test_streaming();