You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
971 B
40 lines
971 B
3 years ago
|
// ArduinoJson - https://arduinojson.org
|
||
|
// Copyright Benoit Blanchon 2014-2021
|
||
|
// MIT License
|
||
|
|
||
|
#include <ArduinoJson.h>
|
||
|
#include <catch.hpp>
|
||
|
#include <string>
|
||
|
|
||
|
TEST_CASE("JsonVariant::memoryUsage()") {
|
||
|
DynamicJsonDocument doc(4096);
|
||
|
JsonVariant var = doc.to<JsonVariant>();
|
||
|
|
||
|
SECTION("returns 0 if uninitialized") {
|
||
|
JsonVariant unitialized;
|
||
|
REQUIRE(unitialized.memoryUsage() == 0);
|
||
|
}
|
||
|
|
||
|
SECTION("returns size of object") {
|
||
|
JsonObject obj = var.to<JsonObject>();
|
||
|
obj["hello"] = 42;
|
||
|
REQUIRE(var.memoryUsage() == JSON_OBJECT_SIZE(1));
|
||
|
}
|
||
|
|
||
|
SECTION("returns size of array") {
|
||
|
JsonArray arr = var.to<JsonArray>();
|
||
|
arr.add(42);
|
||
|
REQUIRE(var.memoryUsage() == JSON_ARRAY_SIZE(1));
|
||
|
}
|
||
|
|
||
|
SECTION("returns size of owned string") {
|
||
|
var.set(std::string("hello"));
|
||
|
REQUIRE(var.memoryUsage() == 6);
|
||
|
}
|
||
|
|
||
|
SECTION("returns size of owned raw") {
|
||
|
var.set(serialized(std::string("hello")));
|
||
|
REQUIRE(var.memoryUsage() == 5);
|
||
|
}
|
||
|
}
|