mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-10-09 04:50:57 +02:00
105 lines
2.9 KiB
C++
105 lines
2.9 KiB
C++
// ArduinoJson - https://arduinojson.org
|
|
// Copyright © 2014-2025, Benoit BLANCHON
|
|
// MIT License
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <catch.hpp>
|
|
|
|
#include "Allocators.hpp"
|
|
|
|
TEST_CASE("deserialize MsgPack array") {
|
|
SpyingAllocator spy;
|
|
JsonDocument doc(&spy);
|
|
|
|
SECTION("fixarray") {
|
|
SECTION("empty") {
|
|
const char* input = "\x90";
|
|
|
|
DeserializationError error = deserializeMsgPack(doc, input);
|
|
JsonArray array = doc.as<JsonArray>();
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(array.size() == 0);
|
|
}
|
|
|
|
SECTION("two integers") {
|
|
const char* input = "\x92\x01\x02";
|
|
|
|
DeserializationError error = deserializeMsgPack(doc, input);
|
|
JsonArray array = doc.as<JsonArray>();
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(array.size() == 2);
|
|
REQUIRE(array[0] == 1);
|
|
REQUIRE(array[1] == 2);
|
|
}
|
|
|
|
SECTION("tiny strings") {
|
|
DeserializationError error =
|
|
deserializeMsgPack(doc, "\x92\xA3xxx\xA3yyy");
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(doc.is<JsonArray>());
|
|
REQUIRE(doc.size() == 2);
|
|
REQUIRE(doc[0] == "xxx");
|
|
REQUIRE(doc[1] == "yyy");
|
|
REQUIRE(spy.log() == AllocatorLog{
|
|
Allocate(sizeofPool()),
|
|
Allocate(sizeofString("xxx")),
|
|
// Buffer is reused for the next string
|
|
Deallocate(sizeofString("xxx")),
|
|
Reallocate(sizeofPool(), sizeofPool(2)),
|
|
});
|
|
}
|
|
}
|
|
|
|
SECTION("array 16") {
|
|
SECTION("empty") {
|
|
const char* input = "\xDC\x00\x00";
|
|
|
|
DeserializationError error = deserializeMsgPack(doc, input);
|
|
JsonArray array = doc.as<JsonArray>();
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(array.size() == 0);
|
|
}
|
|
|
|
SECTION("two strings") {
|
|
const char* input = "\xDC\x00\x02\xA5hello\xA5world";
|
|
|
|
DeserializationError error = deserializeMsgPack(doc, input);
|
|
JsonArray array = doc.as<JsonArray>();
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(array.size() == 2);
|
|
REQUIRE(array[0] == "hello");
|
|
REQUIRE(array[1] == "world");
|
|
}
|
|
}
|
|
|
|
SECTION("array 32") {
|
|
SECTION("empty") {
|
|
const char* input = "\xDD\x00\x00\x00\x00";
|
|
|
|
DeserializationError error = deserializeMsgPack(doc, input);
|
|
JsonArray array = doc.as<JsonArray>();
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(array.size() == 0);
|
|
}
|
|
|
|
SECTION("two floats") {
|
|
const char* input =
|
|
"\xDD\x00\x00\x00\x02\xCA\x00\x00\x00\x00\xCA\x40\x48\xF5\xC3";
|
|
|
|
DeserializationError error = deserializeMsgPack(doc, input);
|
|
JsonArray array = doc.as<JsonArray>();
|
|
|
|
REQUIRE(error == DeserializationError::Ok);
|
|
REQUIRE(array.size() == 2);
|
|
REQUIRE(array[0] == 0.0f);
|
|
REQUIRE(array[1] == 3.14f);
|
|
}
|
|
}
|
|
}
|