2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-01-25 09:14:15 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
2019-01-17 09:55:51 +01:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
|
|
|
|
TEST_CASE("JsonDocument::nesting()") {
|
|
|
|
DynamicJsonDocument doc(4096);
|
|
|
|
|
|
|
|
SECTION("return 0 if uninitialized") {
|
|
|
|
REQUIRE(doc.nesting() == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("returns 0 for string") {
|
|
|
|
JsonVariant var = doc.to<JsonVariant>();
|
|
|
|
var.set("hello");
|
|
|
|
REQUIRE(doc.nesting() == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("returns 1 for empty object") {
|
|
|
|
doc.to<JsonObject>();
|
|
|
|
REQUIRE(doc.nesting() == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("returns 1 for empty array") {
|
|
|
|
doc.to<JsonArray>();
|
|
|
|
REQUIRE(doc.nesting() == 1);
|
|
|
|
}
|
|
|
|
}
|