mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 20:42:24 +02:00
86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2023, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <catch.hpp>
|
|
|
|
#include "Allocators.hpp"
|
|
|
|
using namespace Catch::Matchers;
|
|
|
|
using ArduinoJson::detail::sizeofObject;
|
|
|
|
TEST_CASE("deserializeJson(JsonDocument&)") {
|
|
SpyingAllocator spy;
|
|
JsonDocument doc(&spy);
|
|
|
|
SECTION("Edge cases") {
|
|
SECTION("null char*") {
|
|
DeserializationError err = deserializeJson(doc, static_cast<char*>(0));
|
|
|
|
REQUIRE(err != DeserializationError::Ok);
|
|
}
|
|
|
|
SECTION("null const char*") {
|
|
DeserializationError err =
|
|
deserializeJson(doc, static_cast<const char*>(0));
|
|
|
|
REQUIRE(err != DeserializationError::Ok);
|
|
}
|
|
|
|
SECTION("Empty input") {
|
|
DeserializationError err = deserializeJson(doc, "");
|
|
|
|
REQUIRE(err == DeserializationError::EmptyInput);
|
|
}
|
|
|
|
SECTION("Only spaces") {
|
|
DeserializationError err = deserializeJson(doc, " \t\n\r");
|
|
|
|
REQUIRE(err == DeserializationError::EmptyInput);
|
|
}
|
|
|
|
SECTION("issue #628") {
|
|
DeserializationError err = deserializeJson(doc, "null");
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
REQUIRE(doc.is<float>() == false);
|
|
}
|
|
|
|
SECTION("Garbage") {
|
|
DeserializationError err = deserializeJson(doc, "%*$£¤");
|
|
|
|
REQUIRE(err == DeserializationError::InvalidInput);
|
|
}
|
|
}
|
|
|
|
SECTION("Booleans") {
|
|
SECTION("True") {
|
|
DeserializationError err = deserializeJson(doc, "true");
|
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
REQUIRE(doc.is<bool>());
|
|
REQUIRE(doc.as<bool>() == true);
|
|
}
|
|
|
|
SECTION("False") {
|
|
DeserializationError err = deserializeJson(doc, "false");
|
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
REQUIRE(doc.is<bool>());
|
|
REQUIRE(doc.as<bool>() == false);
|
|
}
|
|
}
|
|
|
|
SECTION("Should clear the JsonVariant") {
|
|
deserializeJson(doc, "[1,2,3]");
|
|
deserializeJson(doc, "{}");
|
|
|
|
REQUIRE(doc.is<JsonObject>());
|
|
REQUIRE(spy.log() == AllocatorLog{
|
|
Allocate(sizeofPool()),
|
|
Deallocate(sizeofPool()),
|
|
});
|
|
}
|
|
}
|