mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
291 lines
11 KiB
C++
291 lines
11 KiB
C++
/******************************************************************************
|
|
The MIT License(MIT)
|
|
|
|
Embedded Template Library.
|
|
https://github.com/ETLCPP/etl
|
|
https://www.etlcpp.com
|
|
|
|
Documentation:
|
|
|
|
Copyright(c) 2025 John Wellbelove
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files(the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include "etl/platform.h"
|
|
|
|
#include "unit_test_framework.h"
|
|
|
|
#include "etl/chrono.h"
|
|
|
|
// Set to 0 to reference against std::chrono
|
|
#define ETL_USING_ETL_CHRONO 1
|
|
|
|
#if ETL_USING_ETL_CHRONO
|
|
#define Chrono etl::chrono
|
|
#define Ratio etl::ratio
|
|
#else
|
|
#if ETL_USING_CPP20
|
|
#include <chrono>
|
|
#define Chrono std::chrono
|
|
#define Ratio std::ratio
|
|
#else
|
|
#error std::chrono not supported
|
|
#endif
|
|
#endif
|
|
|
|
namespace
|
|
{
|
|
SUITE(test_chrono_hh_mm_ss)
|
|
{
|
|
//*************************************************************************
|
|
TEST(test_default_constructor)
|
|
{
|
|
using duration_type = Chrono::seconds;
|
|
|
|
// Create a duration of 0 hour, 0 minutes, 0 seconds
|
|
Chrono::hh_mm_ss<duration_type> time;
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(Chrono::hours(0).count(), h.count());
|
|
CHECK_EQUAL(Chrono::minutes(0).count(), m.count());
|
|
CHECK_EQUAL(Chrono::seconds(0).count(), s.count());
|
|
CHECK_EQUAL(duration_type(0).count(), sub.count());
|
|
CHECK_EQUAL(0, dur.count());
|
|
CHECK_FALSE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_seconds)
|
|
{
|
|
using duration_type = Chrono::seconds;
|
|
|
|
// Create a duration of 1 hour, 2 minutes, 3 seconds
|
|
duration_type duration = Chrono::hours(1) + Chrono::minutes(2) + Chrono::seconds(3);
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(Chrono::hours(1).count(), h.count());
|
|
CHECK_EQUAL(Chrono::minutes(2).count(), m.count());
|
|
CHECK_EQUAL(Chrono::seconds(3).count(), s.count());
|
|
CHECK_EQUAL(duration_type(0).count(), sub.count());
|
|
CHECK_EQUAL(3723, dur.count());
|
|
CHECK_FALSE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_negative_seconds)
|
|
{
|
|
using duration_type = Chrono::seconds;
|
|
|
|
// Create a duration of minus 1 hour, 2 minutes, 3 seconds
|
|
duration_type duration = -(Chrono::hours(1) + Chrono::minutes(2) + Chrono::seconds(3));
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(Chrono::hours(1).count(), h.count());
|
|
CHECK_EQUAL(Chrono::minutes(2).count(), m.count());
|
|
CHECK_EQUAL(Chrono::seconds(3).count(), s.count());
|
|
CHECK_EQUAL(duration_type(0).count(), sub.count());
|
|
CHECK_EQUAL(-3723, dur.count());
|
|
CHECK_TRUE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_milliseconds)
|
|
{
|
|
using duration_type = Chrono::milliseconds;
|
|
|
|
// Create a duration of 1 hour, 2 minutes, 3 seconds, 456 milliseconds
|
|
duration_type duration = Chrono::hours(1) + Chrono::minutes(2) + Chrono::seconds(3) + duration_type(456);
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(Chrono::hours(1).count(), h.count());
|
|
CHECK_EQUAL(Chrono::minutes(2).count(), m.count());
|
|
CHECK_EQUAL(Chrono::seconds(3).count(), s.count());
|
|
CHECK_EQUAL(duration_type(456).count(), sub.count());
|
|
CHECK_EQUAL(3723456, dur.count());
|
|
CHECK_FALSE(time.is_negative());
|
|
CHECK_EQUAL(3, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_negative_milliseconds)
|
|
{
|
|
using duration_type = Chrono::milliseconds;
|
|
|
|
// Create a duration of minus 1 hour, 2 minutes, 3 seconds, 456
|
|
// milliseconds
|
|
duration_type duration = -(Chrono::hours(1) + Chrono::minutes(2) + Chrono::seconds(3) + duration_type(456));
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(Chrono::hours(1).count(), h.count());
|
|
CHECK_EQUAL(Chrono::minutes(2).count(), m.count());
|
|
CHECK_EQUAL(Chrono::seconds(3).count(), s.count());
|
|
CHECK_EQUAL(duration_type(456).count(), sub.count());
|
|
CHECK_EQUAL(-3723456, dur.count());
|
|
CHECK_TRUE(time.is_negative());
|
|
CHECK_EQUAL(3, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_float_seconds)
|
|
{
|
|
using duration_type = Chrono::duration<float, Ratio<1, 1>>;
|
|
|
|
// Create a duration of 1 hour, 2 minutes, 3.456 seconds
|
|
duration_type duration = Chrono::hours(1) + Chrono::minutes(2) + duration_type(3.456);
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(1, h.count());
|
|
CHECK_EQUAL(2, m.count());
|
|
CHECK_EQUAL(3, s.count());
|
|
CHECK_CLOSE(0.456f, sub.count(), 0.0001f);
|
|
CHECK_CLOSE(3723.456f, dur.count(), 0.0001f);
|
|
CHECK_FALSE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_negative_float_seconds)
|
|
{
|
|
using duration_type = Chrono::duration<float, Ratio<1, 1>>;
|
|
|
|
// Create a duration of 1 hour, 2 minutes, 3.456 seconds
|
|
duration_type duration = -(Chrono::hours(1) + Chrono::minutes(2) + duration_type(3.456));
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(1, h.count());
|
|
CHECK_EQUAL(2, m.count());
|
|
CHECK_EQUAL(3, s.count());
|
|
CHECK_CLOSE(0.456f, sub.count(), 0.0001f);
|
|
CHECK_CLOSE(-3723.456f, dur.count(), 0.0001f);
|
|
CHECK_TRUE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_double_seconds)
|
|
{
|
|
using duration_type = Chrono::duration<double, Ratio<1, 1>>;
|
|
|
|
// Create a duration of 1 hour, 2 minutes, 3.456 seconds
|
|
duration_type duration = Chrono::hours(1) + Chrono::minutes(2) + duration_type(3.456);
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(1, h.count());
|
|
CHECK_EQUAL(2, m.count());
|
|
CHECK_EQUAL(3, s.count());
|
|
CHECK_CLOSE(0.456, sub.count(), 0.0001);
|
|
CHECK_CLOSE(3723.456, dur.count(), 0.0001);
|
|
CHECK_FALSE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
|
|
//*************************************************************************
|
|
TEST(test_construction_with_negative_double_seconds)
|
|
{
|
|
using duration_type = Chrono::duration<double, Ratio<1, 1>>;
|
|
|
|
// Create a duration of 1 hour, 2 minutes, 3.456 seconds
|
|
duration_type duration = -(Chrono::hours(1) + Chrono::minutes(2) + duration_type(3.456));
|
|
|
|
Chrono::hh_mm_ss<duration_type> time(duration);
|
|
|
|
auto h = time.hours();
|
|
auto m = time.minutes();
|
|
auto s = time.seconds();
|
|
auto sub = time.subseconds();
|
|
auto dur = time.to_duration();
|
|
|
|
CHECK_EQUAL(1, h.count());
|
|
CHECK_EQUAL(2, m.count());
|
|
CHECK_EQUAL(3, s.count());
|
|
CHECK_CLOSE(0.456, sub.count(), 0.0001);
|
|
CHECK_CLOSE(-3723.456, dur.count(), 0.0001);
|
|
CHECK_TRUE(time.is_negative());
|
|
CHECK_EQUAL(0, time.fractional_width);
|
|
CHECK_TRUE((std::is_same<duration_type, Chrono::hh_mm_ss<duration_type>::precision>::value));
|
|
}
|
|
}
|
|
} // namespace
|