| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- #include <gtest/gtest.h>
- #include <JsonArray.h>
- #include <JsonObject.h>
- #include <JsonValue.h>
- #include <StaticJsonBuffer.h>
- class JsonObject_Serialization_Tests : public testing::Test
- {
- protected:
- virtual void SetUp()
- {
- object = json.createObject();
- }
- void outputMustBe(const char* expected)
- {
- char actual[256];
- int result = object.printTo(actual, sizeof(actual));
- EXPECT_STREQ(expected, actual);
- EXPECT_EQ(strlen(expected), result);
- }
- JsonObject object;
- StaticJsonBuffer<5> json;
- };
- TEST_F(JsonObject_Serialization_Tests, EmptyObject)
- {
- outputMustBe("{}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneString)
- {
- object["key"] = "value";
- outputMustBe("{\"key\":\"value\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, TwoStrings)
- {
- object["key1"] = "value1";
- object["key2"] = "value2";
- outputMustBe("{\"key1\":\"value1\",\"key2\":\"value2\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, RemoveFirst)
- {
- object["key1"] = "value1";
- object["key2"] = "value2";
- object.remove("key1");
- outputMustBe("{\"key2\":\"value2\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, RemoveLast)
- {
- object["key1"] = "value1";
- object["key2"] = "value2";
- object.remove("key2");
- outputMustBe("{\"key1\":\"value1\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, RemoveUnexistingKey)
- {
- object["key1"] = "value1";
- object["key2"] = "value2";
- object.remove("key3");
- outputMustBe("{\"key1\":\"value1\",\"key2\":\"value2\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, ReplaceExistingKey)
- {
- object["key"] = "value1";
- object["key"] = "value2";
- outputMustBe("{\"key\":\"value2\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneStringOverCapacity)
- {
- object["key1"] = "value1";
- object["key2"] = "value2";
- object["key3"] = "value3";
- outputMustBe("{\"key1\":\"value1\",\"key2\":\"value2\"}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneInteger)
- {
- object["key"] = 1;
- outputMustBe("{\"key\":1}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneDoubleFourDigits)
- {
- object["key"].set(3.14159265358979323846, 4);
- outputMustBe("{\"key\":3.1416}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneDoubleDefaultDigits)
- {
- object["key"] = 3.14159265358979323846;
- outputMustBe("{\"key\":3.14}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneNull)
- {
- object["key"] = (char*) 0;
- outputMustBe("{\"key\":null}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneTrue)
- {
- object["key"] = true;
- outputMustBe("{\"key\":true}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneFalse)
- {
- object["key"] = false;
- outputMustBe("{\"key\":false}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneEmptyNestedArrayViaProxy)
- {
- JsonArray nestedArray = json.createArray();
- object["key"] = nestedArray;
- outputMustBe("{\"key\":[]}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneEmptyNestedObjectViaProxy)
- {
- JsonObject nestedArray = json.createObject();
- object["key"] = nestedArray;
- outputMustBe("{\"key\":{}}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneEmptyNestedObject)
- {
- object.createNestedObject("key");
- outputMustBe("{\"key\":{}}");
- }
- TEST_F(JsonObject_Serialization_Tests, OneEmptyNestedArray)
- {
- object.createNestedArray("key");
- outputMustBe("{\"key\":[]}");
- }
|