// ArduinoJson - https://arduinojson.org // Copyright © 2014-2022, Benoit BLANCHON // MIT License #include #include TEST_CASE("JsonObject::set()") { DynamicJsonDocument doc1(4096); DynamicJsonDocument doc2(4096); JsonObject obj1 = doc1.to(); JsonObject obj2 = doc2.to(); SECTION("doesn't copy static string in key or value") { obj1["hello"] = "world"; bool success = obj2.set(obj1); REQUIRE(success == true); REQUIRE(doc1.memoryUsage() == doc2.memoryUsage()); REQUIRE(obj2["hello"] == std::string("world")); } SECTION("copy local string value") { obj1["hello"] = std::string("world"); bool success = obj2.set(obj1); REQUIRE(success == true); REQUIRE(doc1.memoryUsage() == doc2.memoryUsage()); REQUIRE(obj2["hello"] == std::string("world")); } SECTION("copy local key") { obj1[std::string("hello")] = "world"; bool success = obj2.set(obj1); REQUIRE(success == true); REQUIRE(doc1.memoryUsage() == doc2.memoryUsage()); REQUIRE(obj2["hello"] == std::string("world")); } SECTION("copy string from deserializeJson()") { deserializeJson(doc1, "{'hello':'world'}"); bool success = obj2.set(obj1); REQUIRE(success == true); REQUIRE(doc1.memoryUsage() == doc2.memoryUsage()); REQUIRE(obj2["hello"] == std::string("world")); } SECTION("copy string from deserializeMsgPack()") { deserializeMsgPack(doc1, "\x81\xA5hello\xA5world"); bool success = obj2.set(obj1); REQUIRE(success == true); REQUIRE(doc1.memoryUsage() == doc2.memoryUsage()); REQUIRE(obj2["hello"] == std::string("world")); } SECTION("should work with JsonObjectConst") { obj1["hello"] = "world"; obj2.set(static_cast(obj1)); REQUIRE(doc1.memoryUsage() == doc2.memoryUsage()); REQUIRE(obj2["hello"] == std::string("world")); } SECTION("destination too small to store the key") { StaticJsonDocument doc3; JsonObject obj3 = doc3.to(); obj1[std::string("hello")] = "world"; bool success = obj3.set(obj1); REQUIRE(success == false); REQUIRE(doc3.as() == "{}"); } SECTION("destination too small to store the value") { StaticJsonDocument doc3; JsonObject obj3 = doc3.to(); obj1["hello"] = std::string("world"); bool success = obj3.set(obj1); REQUIRE(success == false); REQUIRE(doc3.as() == "{\"hello\":null}"); } SECTION("destination is null") { JsonObject null; obj1["hello"] = "world"; bool success = null.set(obj1); REQUIRE(success == false); } SECTION("source is null") { JsonObject null; obj1["hello"] = "world"; bool success = obj1.set(null); REQUIRE(success == false); } }