2021-03-29 17:14:01 +02:00
|
|
|
|
// ArduinoJson - https://arduinojson.org
|
2025-02-24 15:18:26 +01:00
|
|
|
|
// Copyright © 2014-2025, Benoit BLANCHON
|
2017-07-14 10:51:46 +02:00
|
|
|
|
// MIT License
|
|
|
|
|
|
|
2018-05-17 13:46:23 +02:00
|
|
|
|
#include <ArduinoJson/Numbers/FloatParts.hpp>
|
2017-07-14 10:51:46 +02:00
|
|
|
|
#include <catch.hpp>
|
|
|
|
|
|
|
2023-02-14 10:04:48 +01:00
|
|
|
|
using namespace ArduinoJson::detail;
|
2017-07-14 10:51:46 +02:00
|
|
|
|
|
2024-09-03 11:44:35 +02:00
|
|
|
|
TEST_CASE("decomposeFloat()") {
|
2017-07-14 10:51:46 +02:00
|
|
|
|
SECTION("1.7976931348623157E+308") {
|
2024-09-03 11:44:35 +02:00
|
|
|
|
auto parts = decomposeFloat(1.7976931348623157E+308, 9);
|
2017-07-14 10:51:46 +02:00
|
|
|
|
REQUIRE(parts.integral == 1);
|
|
|
|
|
|
REQUIRE(parts.decimal == 797693135);
|
|
|
|
|
|
REQUIRE(parts.decimalPlaces == 9);
|
|
|
|
|
|
REQUIRE(parts.exponent == 308);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SECTION("4.94065645841247e-324") {
|
2024-09-03 11:44:35 +02:00
|
|
|
|
auto parts = decomposeFloat(4.94065645841247e-324, 9);
|
2017-07-14 10:51:46 +02:00
|
|
|
|
REQUIRE(parts.integral == 4);
|
|
|
|
|
|
REQUIRE(parts.decimal == 940656458);
|
|
|
|
|
|
REQUIRE(parts.decimalPlaces == 9);
|
|
|
|
|
|
REQUIRE(parts.exponent == -324);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SECTION("3.4E+38") {
|
2024-09-03 11:44:35 +02:00
|
|
|
|
auto parts = decomposeFloat(3.4E+38f, 6);
|
2017-07-14 10:51:46 +02:00
|
|
|
|
REQUIRE(parts.integral == 3);
|
|
|
|
|
|
REQUIRE(parts.decimal == 4);
|
|
|
|
|
|
REQUIRE(parts.decimalPlaces == 1);
|
|
|
|
|
|
REQUIRE(parts.exponent == 38);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SECTION("1.17549435e−38") {
|
2024-09-03 11:44:35 +02:00
|
|
|
|
auto parts = decomposeFloat(1.17549435e-38f, 6);
|
2017-07-14 10:51:46 +02:00
|
|
|
|
REQUIRE(parts.integral == 1);
|
|
|
|
|
|
REQUIRE(parts.decimal == 175494);
|
|
|
|
|
|
REQUIRE(parts.decimalPlaces == 6);
|
|
|
|
|
|
REQUIRE(parts.exponent == -38);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|