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.
39 lines
889 B
39 lines
889 B
#define ARDUINOJSON_ENABLE_INFINITY 1
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
#include <limits>
|
|
|
|
namespace my {
|
|
using ARDUINOJSON_NAMESPACE::isinf;
|
|
} // namespace my
|
|
|
|
TEST_CASE("ARDUINOJSON_ENABLE_INFINITY == 1") {
|
|
DynamicJsonDocument doc(4096);
|
|
|
|
SECTION("serializeJson()") {
|
|
doc.add(std::numeric_limits<double>::infinity());
|
|
doc.add(-std::numeric_limits<double>::infinity());
|
|
|
|
std::string json;
|
|
serializeJson(doc, json);
|
|
|
|
REQUIRE(json == "[Infinity,-Infinity]");
|
|
}
|
|
|
|
SECTION("deserializeJson()") {
|
|
DeserializationError err =
|
|
deserializeJson(doc, "[Infinity,-Infinity,+Infinity]");
|
|
float a = doc[0];
|
|
float b = doc[1];
|
|
float c = doc[2];
|
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
REQUIRE(my::isinf(a));
|
|
REQUIRE(a > 0);
|
|
REQUIRE(my::isinf(b));
|
|
REQUIRE(b < 0);
|
|
REQUIRE(my::isinf(c));
|
|
REQUIRE(c > 0);
|
|
}
|
|
}
|
|
|