| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- // ArduinoJson - arduinojson.org
- // Copyright Benoit Blanchon 2014-2018
- // MIT License
- #include <ArduinoJson.h>
- #include <catch.hpp>
- TEST_CASE("JsonObject::operator[]") {
- DynamicJsonDocument doc;
- JsonObject& obj = doc.to<JsonObject>();
- SECTION("int") {
- obj["hello"] = 123;
- REQUIRE(123 == obj["hello"].as<int>());
- REQUIRE(true == obj["hello"].is<int>());
- REQUIRE(false == obj["hello"].is<bool>());
- }
- SECTION("volatile int") { // issue #415
- volatile int i = 123;
- obj["hello"] = i;
- REQUIRE(123 == obj["hello"].as<int>());
- REQUIRE(true == obj["hello"].is<int>());
- REQUIRE(false == obj["hello"].is<bool>());
- }
- SECTION("double") {
- obj["hello"] = 123.45;
- REQUIRE(true == obj["hello"].is<double>());
- REQUIRE(false == obj["hello"].is<long>());
- REQUIRE(123.45 == obj["hello"].as<double>());
- }
- SECTION("bool") {
- obj["hello"] = true;
- REQUIRE(true == obj["hello"].is<bool>());
- REQUIRE(false == obj["hello"].is<long>());
- REQUIRE(true == obj["hello"].as<bool>());
- }
- SECTION("const char*") {
- obj["hello"] = "h3110";
- REQUIRE(true == obj["hello"].is<const char*>());
- REQUIRE(false == obj["hello"].is<long>());
- REQUIRE(std::string("h3110") == obj["hello"].as<const char*>());
- REQUIRE(std::string("h3110") == obj["hello"].as<char*>()); // <- short hand
- }
- SECTION("array") {
- DynamicJsonDocument doc2;
- JsonArray& arr = doc2.to<JsonArray>();
- obj["hello"] = arr;
- REQUIRE(&arr == &obj["hello"].as<JsonArray&>());
- REQUIRE(&arr == &obj["hello"].as<JsonArray>()); // <- short hand
- REQUIRE(&arr == &obj["hello"].as<const JsonArray&>());
- REQUIRE(&arr == &obj["hello"].as<const JsonArray>()); // <- short hand
- REQUIRE(true == obj["hello"].is<JsonArray&>());
- REQUIRE(true == obj["hello"].is<JsonArray>());
- REQUIRE(true == obj["hello"].is<const JsonArray&>());
- REQUIRE(true == obj["hello"].is<const JsonArray>());
- REQUIRE(false == obj["hello"].is<JsonObject&>());
- }
- SECTION("object") {
- DynamicJsonDocument doc2;
- JsonObject& obj2 = doc2.to<JsonObject>();
- obj["hello"] = obj2;
- REQUIRE(&obj2 == &obj["hello"].as<JsonObject&>());
- REQUIRE(&obj2 == &obj["hello"].as<JsonObject>()); // <- short hand
- REQUIRE(&obj2 == &obj["hello"].as<const JsonObject&>());
- REQUIRE(&obj2 == &obj["hello"].as<const JsonObject>()); // <- short hand
- REQUIRE(true == obj["hello"].is<JsonObject&>());
- REQUIRE(true == obj["hello"].is<JsonObject>());
- REQUIRE(true == obj["hello"].is<const JsonObject&>());
- REQUIRE(true == obj["hello"].is<const JsonObject>());
- REQUIRE(false == obj["hello"].is<JsonArray&>());
- }
- SECTION("array subscript") {
- DynamicJsonDocument doc2;
- JsonArray& arr = doc2.to<JsonArray>();
- arr.add(42);
- obj["a"] = arr[0];
- REQUIRE(42 == obj["a"]);
- }
- SECTION("object subscript") {
- DynamicJsonDocument doc2;
- JsonObject& obj2 = doc2.to<JsonObject>();
- obj2.set("x", 42);
- obj["a"] = obj2["x"];
- REQUIRE(42 == obj["a"]);
- }
- SECTION("char key[]") { // issue #423
- char key[] = "hello";
- obj[key] = 42;
- REQUIRE(42 == obj[key]);
- }
- SECTION("should not duplicate const char*") {
- obj["hello"] = "world";
- const size_t expectedSize = JSON_OBJECT_SIZE(1);
- REQUIRE(expectedSize == doc.memoryUsage());
- }
- SECTION("should duplicate char* value") {
- obj["hello"] = const_cast<char*>("world");
- const size_t expectedSize = JSON_OBJECT_SIZE(1) + 6;
- REQUIRE(expectedSize == doc.memoryUsage());
- }
- SECTION("should duplicate char* key") {
- obj[const_cast<char*>("hello")] = "world";
- const size_t expectedSize = JSON_OBJECT_SIZE(1) + 6;
- REQUIRE(expectedSize == doc.memoryUsage());
- }
- SECTION("should duplicate char* key&value") {
- obj[const_cast<char*>("hello")] = const_cast<char*>("world");
- const size_t expectedSize = JSON_OBJECT_SIZE(1) + 12;
- REQUIRE(expectedSize <= doc.memoryUsage());
- }
- SECTION("should duplicate std::string value") {
- obj["hello"] = std::string("world");
- const size_t expectedSize = JSON_OBJECT_SIZE(1) + 6;
- REQUIRE(expectedSize == doc.memoryUsage());
- }
- SECTION("should duplicate std::string key") {
- obj[std::string("hello")] = "world";
- const size_t expectedSize = JSON_OBJECT_SIZE(1) + 6;
- REQUIRE(expectedSize == doc.memoryUsage());
- }
- SECTION("should duplicate std::string key&value") {
- obj[std::string("hello")] = std::string("world");
- const size_t expectedSize = JSON_OBJECT_SIZE(1) + 12;
- REQUIRE(expectedSize <= doc.memoryUsage());
- }
- }
|