| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- // ArduinoJson - arduinojson.org
- // Copyright Benoit Blanchon 2014-2023
- // MIT License
- #include <ArduinoJson.h>
- #include <stdint.h>
- #include <catch.hpp>
- TEST_CASE("JsonArray::operator[]") {
- DynamicJsonBuffer _jsonBuffer;
- JsonArray& _array = _jsonBuffer.createArray();
- _array.add(0);
- SECTION("int") {
- _array[0] = 123;
- REQUIRE(123 == _array[0].as<int>());
- REQUIRE(true == _array[0].is<int>());
- REQUIRE(false == _array[0].is<bool>());
- }
- #if ARDUINOJSON_USE_LONG_LONG || ARDUINOJSON_USE_INT64
- SECTION("long long") {
- _array[0] = 9223372036854775807;
- REQUIRE(9223372036854775807 == _array[0].as<long long>());
- REQUIRE(true == _array[0].is<int>());
- REQUIRE(false == _array[0].is<bool>());
- }
- #endif
- SECTION("double") {
- _array[0] = 123.45;
- REQUIRE(123.45 == _array[0].as<double>());
- REQUIRE(true == _array[0].is<double>());
- REQUIRE(false == _array[0].is<int>());
- }
- SECTION("bool") {
- _array[0] = true;
- REQUIRE(true == _array[0].as<bool>());
- REQUIRE(true == _array[0].is<bool>());
- REQUIRE(false == _array[0].is<int>());
- }
- SECTION("const char*") {
- const char* str = "hello";
- _array[0] = str;
- REQUIRE(str == _array[0].as<const char*>());
- REQUIRE(str == _array[0].as<char*>()); // <- short hand
- REQUIRE(true == _array[0].is<const char*>());
- REQUIRE(false == _array[0].is<int>());
- }
- SECTION("nested array") {
- JsonArray& arr = _jsonBuffer.createArray();
- _array[0] = arr;
- REQUIRE(&arr == &_array[0].as<JsonArray&>());
- REQUIRE(&arr == &_array[0].as<JsonArray>()); // <- short hand
- REQUIRE(&arr == &_array[0].as<const JsonArray&>());
- REQUIRE(&arr == &_array[0].as<const JsonArray>()); // <- short hand
- REQUIRE(true == _array[0].is<JsonArray&>());
- REQUIRE(false == _array[0].is<int>());
- }
- SECTION("nested object") {
- JsonObject& obj = _jsonBuffer.createObject();
- _array[0] = obj;
- REQUIRE(&obj == &_array[0].as<JsonObject&>());
- REQUIRE(&obj == &_array[0].as<JsonObject>()); // <- short hand
- REQUIRE(&obj == &_array[0].as<const JsonObject&>());
- REQUIRE(&obj == &_array[0].as<const JsonObject>()); // <- short hand
- REQUIRE(true == _array[0].is<JsonObject&>());
- REQUIRE(false == _array[0].is<int>());
- }
- SECTION("array subscript") {
- JsonArray& arr = _jsonBuffer.createArray();
- const char* str = "hello";
- arr.add(str);
- _array[0] = arr[0];
- REQUIRE(str == _array[0]);
- }
- SECTION("object subscript") {
- JsonObject& obj = _jsonBuffer.createObject();
- const char* str = "hello";
- obj["x"] = str;
- _array[0] = obj["x"];
- REQUIRE(str == _array[0]);
- }
- SECTION("should not duplicate const char*") {
- _array[0] = "world";
- const size_t expectedSize = JSON_ARRAY_SIZE(1);
- REQUIRE(expectedSize == _jsonBuffer.size());
- }
- SECTION("should duplicate char*") {
- _array[0] = const_cast<char*>("world");
- const size_t expectedSize = JSON_ARRAY_SIZE(1) + 6;
- REQUIRE(expectedSize == _jsonBuffer.size());
- }
- SECTION("should duplicate std::string") {
- _array[0] = std::string("world");
- const size_t expectedSize = JSON_ARRAY_SIZE(1) + 6;
- REQUIRE(expectedSize == _jsonBuffer.size());
- }
- }
|