2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2023-02-16 11:45:01 +01:00
|
|
|
// Copyright © 2014-2023, Benoit BLANCHON
|
2018-04-17 21:27:45 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
|
2023-07-24 17:21:25 +02:00
|
|
|
#include "Allocators.hpp"
|
|
|
|
|
2023-07-31 17:34:17 +02:00
|
|
|
using ArduinoJson::detail::sizeofArray;
|
|
|
|
|
2023-07-27 14:52:58 +02:00
|
|
|
TEST_CASE("deserializeJson() misc cases") {
|
2023-07-25 14:53:54 +02:00
|
|
|
SpyingAllocator spy;
|
|
|
|
JsonDocument doc(&spy);
|
2018-04-17 21:27:45 +02:00
|
|
|
|
2023-07-27 14:52:58 +02:00
|
|
|
SECTION("null") {
|
|
|
|
DeserializationError err = deserializeJson(doc, "null");
|
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
|
|
REQUIRE(doc.is<float>() == false);
|
2018-04-17 21:27:45 +02:00
|
|
|
}
|
|
|
|
|
2023-07-27 14:52:58 +02:00
|
|
|
SECTION("true") {
|
|
|
|
DeserializationError err = deserializeJson(doc, "true");
|
2018-04-17 21:27:45 +02:00
|
|
|
|
2023-07-27 14:52:58 +02:00
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
|
|
REQUIRE(doc.is<bool>());
|
|
|
|
REQUIRE(doc.as<bool>() == true);
|
|
|
|
}
|
2018-04-17 21:27:45 +02:00
|
|
|
|
2023-07-27 14:52:58 +02:00
|
|
|
SECTION("false") {
|
|
|
|
DeserializationError err = deserializeJson(doc, "false");
|
2018-04-17 21:27:45 +02:00
|
|
|
|
2023-07-27 14:52:58 +02:00
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
|
|
REQUIRE(doc.is<bool>());
|
|
|
|
REQUIRE(doc.as<bool>() == false);
|
2018-05-14 17:12:59 +02:00
|
|
|
}
|
|
|
|
|
2019-02-15 13:29:30 +01:00
|
|
|
SECTION("Should clear the JsonVariant") {
|
|
|
|
deserializeJson(doc, "[1,2,3]");
|
2023-07-31 17:34:17 +02:00
|
|
|
spy.clearLog();
|
|
|
|
|
2019-02-15 13:29:30 +01:00
|
|
|
deserializeJson(doc, "{}");
|
2018-11-12 18:28:34 +01:00
|
|
|
|
2019-02-15 13:29:30 +01:00
|
|
|
REQUIRE(doc.is<JsonObject>());
|
2023-07-26 06:06:38 +02:00
|
|
|
REQUIRE(spy.log() == AllocatorLog{
|
2023-07-31 17:34:17 +02:00
|
|
|
Deallocate(sizeofArray(3)),
|
2023-07-26 06:06:38 +02:00
|
|
|
});
|
2018-11-12 18:28:34 +01:00
|
|
|
}
|
2018-04-17 21:27:45 +02:00
|
|
|
}
|