// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2019 // MIT License #include #include TEST_CASE("JsonVariant and strings") { DynamicJsonDocument doc(4096); JsonVariant variant = doc.to(); SECTION("stores const char* by reference") { char str[16]; strcpy(str, "hello"); variant.set(static_cast(str)); strcpy(str, "world"); REQUIRE(variant == "world"); } SECTION("stores char* by copy") { char str[16]; strcpy(str, "hello"); variant.set(str); strcpy(str, "world"); REQUIRE(variant == "hello"); } SECTION("stores unsigned char* by copy") { char str[16]; strcpy(str, "hello"); variant.set(reinterpret_cast(str)); strcpy(str, "world"); REQUIRE(variant == "hello"); } SECTION("stores signed char* by copy") { char str[16]; strcpy(str, "hello"); variant.set(reinterpret_cast(str)); strcpy(str, "world"); REQUIRE(variant == "hello"); } #ifdef HAS_VARIABLE_LENGTH_ARRAY SECTION("stores VLA by copy") { int n = 16; char str[n]; strcpy(str, "hello"); variant.set(str); strcpy(str, "world"); REQUIRE(variant == "hello"); } #endif SECTION("stores std::string by copy") { std::string str; str = "hello"; variant.set(str); str.replace(0, 5, "world"); REQUIRE(variant == "hello"); } SECTION("stores static JsonString by reference") { char str[16]; strcpy(str, "hello"); variant.set(JsonString(str, true)); strcpy(str, "world"); REQUIRE(variant == "hello"); } SECTION("stores non-static JsonString by copy") { char str[16]; strcpy(str, "hello"); variant.set(JsonString(str, false)); strcpy(str, "world"); REQUIRE(variant == "hello"); } } TEST_CASE("JsonVariant with not enough memory") { StaticJsonDocument<1> doc; JsonVariant v = doc.to(); SECTION("std::string") { v.set(std::string("hello world!!")); REQUIRE(v.isNull()); } SECTION("Serialized") { v.set(serialized(std::string("hello world!!"))); REQUIRE(v.isNull()); } }