123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- // ArduinoJson - https://arduinojson.org
- // Copyright © 2014-2022, Benoit BLANCHON
- // MIT License
- #include "progmem_emulation.hpp"
- #define ARDUINOJSON_ENABLE_PROGMEM 1
- #include <ArduinoJson.h>
- #include <catch.hpp>
- TEST_CASE("Flash strings") {
- DynamicJsonDocument doc(2048);
- SECTION("deserializeJson()") {
- DeserializationError err = deserializeJson(doc, F("{'hello':'world'}"));
- REQUIRE(err == DeserializationError::Ok);
- REQUIRE(doc["hello"] == "world");
- }
- SECTION("JsonDocument::operator[]") {
- doc[F("hello")] = F("world");
- REQUIRE(doc["hello"] == "world");
- }
- SECTION("JsonDocument::add()") {
- doc.add(F("world"));
- REQUIRE(doc[0] == "world");
- }
- SECTION("JsonVariant::set()") {
- JsonVariant var = doc.to<JsonVariant>();
- var.set(F("world"));
- REQUIRE(var == "world");
- }
- SECTION("MemberProxy::operator==") {
- doc["hello"] = "world";
- REQUIRE(doc["hello"] == F("world"));
- }
- SECTION("ElementProxy::operator==") {
- doc.add("world");
- REQUIRE(doc[0] == F("world"));
- }
- }
- TEST_CASE("parseNumber()") { // tables are in Flash
- using ARDUINOJSON_NAMESPACE::parseNumber;
- CHECK(parseNumber<float>("1") == 1.f);
- CHECK(parseNumber<float>("1.23") == 1.23f);
- CHECK(parseNumber<float>("-1.23e34") == -1.23e34f);
- }
- TEST_CASE("strlen_P") {
- CHECK(strlen_P(PSTR("")) == 0);
- CHECK(strlen_P(PSTR("a")) == 1);
- CHECK(strlen_P(PSTR("ac")) == 2);
- }
- TEST_CASE("strncmp_P") {
- CHECK(strncmp_P("a", PSTR("b"), 0) == 0);
- CHECK(strncmp_P("a", PSTR("b"), 1) == -1);
- CHECK(strncmp_P("b", PSTR("a"), 1) == 1);
- CHECK(strncmp_P("a", PSTR("a"), 0) == 0);
- CHECK(strncmp_P("a", PSTR("b"), 2) == -1);
- CHECK(strncmp_P("b", PSTR("a"), 2) == 1);
- CHECK(strncmp_P("a", PSTR("a"), 2) == 0);
- }
- TEST_CASE("strcmp_P") {
- CHECK(strcmp_P("a", PSTR("b")) == -1);
- CHECK(strcmp_P("b", PSTR("a")) == 1);
- CHECK(strcmp_P("a", PSTR("a")) == 0);
- CHECK(strcmp_P("aa", PSTR("ab")) == -1);
- CHECK(strcmp_P("ab", PSTR("aa")) == 1);
- CHECK(strcmp_P("aa", PSTR("aa")) == 0);
- }
- TEST_CASE("memcpy_P") {
- char dst[4];
- CHECK(memcpy_P(dst, PSTR("ABC"), 4) == dst);
- CHECK(dst[0] == 'A');
- CHECK(dst[1] == 'B');
- CHECK(dst[2] == 'C');
- CHECK(dst[3] == 0);
- }
- TEST_CASE("BoundedReader<const __FlashStringHelper*>") {
- using namespace ARDUINOJSON_NAMESPACE;
- SECTION("read") {
- BoundedReader<const __FlashStringHelper*> reader(F("\x01\xFF"), 2);
- REQUIRE(reader.read() == 0x01);
- REQUIRE(reader.read() == 0xFF);
- REQUIRE(reader.read() == -1);
- REQUIRE(reader.read() == -1);
- }
- SECTION("readBytes() all at once") {
- BoundedReader<const __FlashStringHelper*> reader(F("ABCD"), 3);
- char buffer[8] = "abcd";
- REQUIRE(reader.readBytes(buffer, 4) == 3);
- REQUIRE(buffer[0] == 'A');
- REQUIRE(buffer[1] == 'B');
- REQUIRE(buffer[2] == 'C');
- REQUIRE(buffer[3] == 'd');
- }
- SECTION("readBytes() in two parts") {
- BoundedReader<const __FlashStringHelper*> reader(F("ABCDEF"), 6);
- char buffer[8] = "abcdefg";
- REQUIRE(reader.readBytes(buffer, 4) == 4);
- REQUIRE(reader.readBytes(buffer + 4, 4) == 2);
- REQUIRE(buffer[0] == 'A');
- REQUIRE(buffer[1] == 'B');
- REQUIRE(buffer[2] == 'C');
- REQUIRE(buffer[3] == 'D');
- REQUIRE(buffer[4] == 'E');
- REQUIRE(buffer[5] == 'F');
- REQUIRE(buffer[6] == 'g');
- }
- }
- TEST_CASE("Reader<const __FlashStringHelper*>") {
- using namespace ARDUINOJSON_NAMESPACE;
- SECTION("read()") {
- Reader<const __FlashStringHelper*> reader(F("\x01\xFF\x00\x12"));
- REQUIRE(reader.read() == 0x01);
- REQUIRE(reader.read() == 0xFF);
- REQUIRE(reader.read() == 0);
- REQUIRE(reader.read() == 0x12);
- }
- SECTION("readBytes() all at once") {
- Reader<const __FlashStringHelper*> reader(F("ABCD"));
- char buffer[8] = "abcd";
- REQUIRE(reader.readBytes(buffer, 3) == 3);
- REQUIRE(buffer[0] == 'A');
- REQUIRE(buffer[1] == 'B');
- REQUIRE(buffer[2] == 'C');
- REQUIRE(buffer[3] == 'd');
- }
- SECTION("readBytes() in two parts") {
- Reader<const __FlashStringHelper*> reader(F("ABCDEF"));
- char buffer[8] = "abcdefg";
- REQUIRE(reader.readBytes(buffer, 4) == 4);
- REQUIRE(reader.readBytes(buffer + 4, 2) == 2);
- REQUIRE(buffer[0] == 'A');
- REQUIRE(buffer[1] == 'B');
- REQUIRE(buffer[2] == 'C');
- REQUIRE(buffer[3] == 'D');
- REQUIRE(buffer[4] == 'E');
- REQUIRE(buffer[5] == 'F');
- REQUIRE(buffer[6] == 'g');
- }
- }
- static void testStringification(DeserializationError error,
- std::string expected) {
- const __FlashStringHelper* s = error.f_str();
- CHECK(reinterpret_cast<const char*>(convertFlashToPtr(s)) == expected);
- }
- #define TEST_STRINGIFICATION(symbol) \
- testStringification(DeserializationError::symbol, #symbol)
- TEST_CASE("DeserializationError::f_str()") {
- TEST_STRINGIFICATION(Ok);
- TEST_STRINGIFICATION(EmptyInput);
- TEST_STRINGIFICATION(IncompleteInput);
- TEST_STRINGIFICATION(InvalidInput);
- TEST_STRINGIFICATION(NoMemory);
- TEST_STRINGIFICATION(TooDeep);
- }
|