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.
26 lines
571 B
26 lines
571 B
3 years ago
|
#define ARDUINOJSON_ENABLE_NAN 0
|
||
|
#include <ArduinoJson.h>
|
||
|
|
||
|
#include <catch.hpp>
|
||
|
#include <limits>
|
||
|
|
||
|
TEST_CASE("ARDUINOJSON_ENABLE_NAN == 0") {
|
||
|
DynamicJsonDocument doc(4096);
|
||
|
JsonObject root = doc.to<JsonObject>();
|
||
|
|
||
|
SECTION("serializeJson()") {
|
||
|
root["X"] = std::numeric_limits<double>::signaling_NaN();
|
||
|
|
||
|
std::string json;
|
||
|
serializeJson(doc, json);
|
||
|
|
||
|
REQUIRE(json == "{\"X\":null}");
|
||
|
}
|
||
|
|
||
|
SECTION("deserializeJson()") {
|
||
|
DeserializationError err = deserializeJson(doc, "{\"X\":NaN}");
|
||
|
|
||
|
REQUIRE(err == DeserializationError::InvalidInput);
|
||
|
}
|
||
|
}
|