| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- // ArduinoJson - arduinojson.org
- // Copyright Benoit Blanchon 2014-2018
- // MIT License
- #include <ArduinoJson.h>
- #include <catch.hpp>
- TEST_CASE("JsonVariant::operator[]") {
- DynamicJsonDocument doc;
- JsonVariant var = doc.to<JsonVariant>();
- SECTION("The JsonVariant is undefined") {
- REQUIRE(0 == var.size());
- REQUIRE(var["0"].isNull());
- REQUIRE(var[0].isNull());
- }
- SECTION("The JsonVariant is a string") {
- var.set("hello world");
- REQUIRE(0 == var.size());
- REQUIRE(var["0"].isNull());
- REQUIRE(var[0].isNull());
- }
- SECTION("The JsonVariant is a JsonArray") {
- JsonArray array = var.to<JsonArray>();
- SECTION("get value") {
- array.add("element at index 0");
- array.add("element at index 1");
- REQUIRE(2 == var.size());
- REQUIRE(std::string("element at index 0") == var[0]);
- REQUIRE(std::string("element at index 1") == var[1]);
- REQUIRE(std::string("element at index 0") ==
- var[static_cast<unsigned char>(0)]); // issue #381
- REQUIRE(var[666].isNull());
- REQUIRE(var[3].isNull());
- REQUIRE(var["0"].isNull());
- }
- SECTION("set value") {
- array.add("hello");
- var[0] = "world";
- REQUIRE(1 == var.size());
- REQUIRE(std::string("world") == var[0]);
- }
- SECTION("set value in a nested object") {
- array.createNestedObject();
- var[0]["hello"] = "world";
- REQUIRE(1 == var.size());
- REQUIRE(1 == var[0].size());
- REQUIRE(std::string("world") == var[0]["hello"]);
- }
- }
- SECTION("The JsonVariant is a JsonObject") {
- JsonObject object = var.to<JsonObject>();
- SECTION("get value") {
- object["a"] = "element at key \"a\"";
- object["b"] = "element at key \"b\"";
- REQUIRE(2 == var.size());
- REQUIRE(std::string("element at key \"a\"") == var["a"]);
- REQUIRE(std::string("element at key \"b\"") == var["b"]);
- REQUIRE(var["c"].isNull());
- REQUIRE(var[0].isNull());
- }
- SECTION("set value, key is a const char*") {
- var["hello"] = "world";
- REQUIRE(1 == var.size());
- REQUIRE(std::string("world") == var["hello"]);
- }
- SECTION("set value, key is a char[]") {
- char key[] = "hello";
- var[key] = "world";
- key[0] = '!'; // make sure the key is duplicated
- REQUIRE(1 == var.size());
- REQUIRE(std::string("world") == var["hello"]);
- }
- SECTION("var[key].to<JsonArray>()") {
- JsonArray arr = var["hello"].to<JsonArray>();
- REQUIRE(arr.isNull() == false);
- }
- }
- #if defined(HAS_VARIABLE_LENGTH_ARRAY) && \
- !defined(SUBSCRIPT_CONFLICTS_WITH_BUILTIN_OPERATOR)
- SECTION("key is a VLA") {
- int i = 16;
- char vla[i];
- strcpy(vla, "hello");
- deserializeJson(doc, "{\"hello\":\"world\"}");
- JsonVariant variant = doc.as<JsonVariant>();
- REQUIRE(std::string("world") == variant[vla]);
- }
- SECTION("key is a VLA, const JsonVariant") {
- int i = 16;
- char vla[i];
- strcpy(vla, "hello");
- deserializeJson(doc, "{\"hello\":\"world\"}");
- const JsonVariant variant = doc.as<JsonVariant>();
- REQUIRE(std::string("world") == variant[vla]);
- }
- #endif
- }
|