/* @file dimension.test.cpp */ #include "xo/unit/unit.hpp" #include "xo/reflect/Reflect.hpp" #include "xo/cxxutil/demangle.hpp" #include "xo/indentlog/scope.hpp" #include "xo/indentlog/print/tag.hpp" #include #include namespace xo { namespace ut { /* compile-time tests */ using xo::reflect::Reflect; using xo::obs::dim; using xo::obs::native_unit_abbrev_v; using xo::obs::units::scaled_native_unit_abbrev_v; //using xo::obs::native_dim_abbrev; using xo::obs::stringliteral_compare; using xo::obs::literal_size_v; using xo::obs::stringliteral_from_digit; using xo::obs::stringliteral_from_int_v; using xo::obs::stringliteral; #ifndef __clang__ using xo::obs::stringliteral_concat; using xo::obs::stringliteral_from_ratio; using xo::obs::bpu_assemble_abbrev_helper; using xo::obs::bpu_assemble_abbrev; #endif using xo::obs::bpu_node; using xo::obs::wrap_unit; using xo::obs::unit_abbrev_v; //using xo::obs::dim_abbrev_v; using xo::obs::di_cartesian_product; using xo::obs::di_cartesian_product1; using xo::obs::unit_cartesian_product_t; using xo::obs::bpu_cartesian_product; using xo::obs::bpu_cartesian_product_helper; using xo::obs::unit_invert_t; using xo::obs::units::gram; using xo::obs::units::second; using xo::print::ccs; template int unused() { return 1; } template constexpr bool unused_same(typename std::enable_if_t::value, bool> result = true) { return result; } TEST_CASE("native_unit_abbrev", "[native_dim_abbrev]") { constexpr bool c_debug_flag = true; // can get bits from /dev/random by uncommenting the 2nd line below //uint64_t seed = xxx; //rng::Seed seed; //auto rng = xo::rng::xoshiro256ss(seed); scope log(XO_DEBUG2(c_debug_flag, "TEST_CASE.native_dim_abbrev")); //log && log("(A)", xtag("foo", foo)); /* NOTE: the .value_ expression below will fail to compile if missing specialization for * native_dim_abbrev on native_dim_id::foo; that's the point :) */ REQUIRE(strcmp(scaled_native_unit_abbrev_v>.value_, "g") == 0); REQUIRE(strcmp(scaled_native_unit_abbrev_v>.value_, "s") == 0); REQUIRE(strcmp(scaled_native_unit_abbrev_v>.value_, "ccy") == 0); REQUIRE(strcmp(scaled_native_unit_abbrev_v>.value_, "px") == 0); #ifdef OBSOLETE REQUIRE(strcmp(native_dim_abbrev().value_, "") != 0); REQUIRE(strcmp(native_dim_abbrev().value_, "") != 0); REQUIRE(strcmp(native_dim_abbrev().value_, "") != 0); REQUIRE(strcmp(native_dim_abbrev().value_, "") != 0); #endif static_assert(stringliteral_compare(stringliteral_from_digit(0), stringliteral("0")) == 0); static_assert(stringliteral_compare(stringliteral_from_digit(1), stringliteral("1")) == 0); static_assert(stringliteral_compare(stringliteral_from_digit(9), stringliteral("9")) == 0); static_assert(literal_size_v<0> == 1); static_assert(literal_size_v<10> == 2); static_assert(literal_size_v<99> == 2); static_assert(literal_size_v<100> == 3); static_assert(literal_size_v<999> == 3); static_assert(stringliteral_compare(stringliteral_from_int_v<0>(), stringliteral("0")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<9>(), stringliteral("9")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<1, 1, false>(), stringliteral("1")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<9, 1, false>(), stringliteral("9")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<9>(), stringliteral("9")) == 0); /* NOTE: clang16 complains starting here; gcc is fine */ #ifndef __clang__ if constexpr (stringliteral_concat("a", "b").size() == 3) { REQUIRE(true); } else { REQUIRE(false); } static_assert(stringliteral_compare(stringliteral_concat("hello", " ", "world"), stringliteral("hello world")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<10, 2, false>(), stringliteral("10")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<10>(), stringliteral("10")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<99, 2, false>(), stringliteral("99")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<99>(), stringliteral("99")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<100, 3, false>(), stringliteral("100")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<100>(), stringliteral("100")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<999, 3, false>(), stringliteral("999")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<999>(), stringliteral("999")) == 0); //std::cerr << "test=" << stringliteral_from_int_v<-1, 2, true>().value_ << std::endl; static_assert(stringliteral_compare(stringliteral_from_int_v<-1, 2, true>(), stringliteral("-1")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-1>(), stringliteral("-1")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-9, 2, true>(), stringliteral("-9")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-9>(), stringliteral("-9")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-10, 3, true>(), stringliteral("-10")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-10>(), stringliteral("-10")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-99, 3, true>(), stringliteral("-99")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-99>(), stringliteral("-99")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-100, 4, true>(), stringliteral("-100")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-100>(), stringliteral("-100")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-999, 4, true>(), stringliteral("-999")) == 0); static_assert(stringliteral_compare(stringliteral_from_int_v<-999>(), stringliteral("-999")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("(2/3)")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("(2/3)")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("-1")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("-2")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("-2")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("-(3/2)")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("-(3/2)")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("-(1/2)")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("(1/2)")) == 0); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("(3/2)")) == 0); //log && log(xtag("ratio<2>", stringliteral_from_ratio>().c_str())); static_assert(stringliteral_compare(stringliteral_from_ratio>(), stringliteral("2")) == 0); static_assert(stringliteral_compare(bpu_assemble_abbrev_helper, std::ratio<1>>(), stringliteral("g")) == 0); //log && log(xtag("s^(-1/2)", bpu_assemble_abbrev_helper, std::ratio<-1,2>>().c_str())); static_assert(stringliteral_compare(bpu_assemble_abbrev_helper, std::ratio<-1,2>>(), stringliteral("s^-(1/2)")) == 0); //stringliteral_compare(stringliteral_from_ratio>(), stringliteral("^2")) == 0); #endif //static_assert(stringliteral_compare(stringliteral_from_int_v<10>(), obs::stringliteral("10")) == 0); //REQUIRE(strcmp(obs::stringliteral_from_digit(1).value_, "1") == 0); //REQUIRE(strcmp(obs::ratio2str>().value_, "") == 0); } /*TEST_CASE(native_dim_abbrev)*/ TEST_CASE("dimension", "[dimension]") { constexpr bool c_debug_flag = true; scope log(XO_DEBUG2(c_debug_flag, "TEST_CASE.dimension")); //log && log("(A)", xtag("foo", foo)); using t1 = obs::bpu>; static_assert(t1::c_native_dim == obs::dim::currency); static_assert(t1::power_type::num == 1); static_assert(t1::power_type::den == 1); using t2 = obs::bpu, std::ratio<-1,2>>; static_assert(t2::c_native_dim == obs::dim::time); static_assert(t2::power_type::num == -1); static_assert(t2::power_type::den == 2); using dim1 = wrap_unit, bpu_node>; using d1 = dim1::dim_type; /* ccy */ REQUIRE(unused_same()); REQUIRE(unused_same::power_unit_type, t1>()); #ifdef NOT_USING static_assert(obs::lo_basis_elt_of::c_lo_basis == t1::c_basis); #endif static_assert(obs::native_lo_bwp_of::bwp_type::c_index == 0); static_assert(obs::native_lo_bwp_of::bwp_type::c_basis == obs::dim::currency); using dim2 = wrap_unit, bpu_node>; using d2 = dim2::dim_type; /* t^(-1/2) */ REQUIRE(unused_same()); REQUIRE(unused_same::power_unit_type, t2>()); static_assert(obs::native_lo_bwp_of::bwp_type::c_index == 0); static_assert(obs::native_lo_bwp_of::bwp_type::c_basis == obs::dim::time); using dim3 = wrap_unit, bpu_node>>; using d3 = dim3::dim_type; /* ccy.t^(-1/2) */ REQUIRE(unused_same::power_unit_type, t1>()); { using type = obs::lookup_bpu::power_unit_type; //std::cerr << "obs::power_unit_of::power_unit_type" << xtag("type", reflect::type_name()) << std::endl; REQUIRE(unused_same()); } #ifdef NOT_USING static_assert(obs::lo_basis_elt_of::c_lo_basis == t2::c_basis); #endif /* lowest is in pos 1, beacuse t2=time before t1=currency */ static_assert(obs::native_lo_bwp_of::bwp_type::c_index == 1); static_assert(unused_same::dim_type, d2>()); //using type = obs::without_elt::dim_type; //std::cerr << "obs::without_elt::dim_type" << xtag("type", reflect::type_name()) << std::endl; static_assert(unused_same::dim_type, d1>()); using d3b = wrap_unit, bpu_node>>::dim_type; /* t^(-1/2).ccy */ //using d3b = obs::dimension_impl>; /* t^(-1/2).ccy */ REQUIRE(unused_same::power_unit_type, t2>()); REQUIRE(unused_same::power_unit_type, t1>()); /* lowest is in pos 0 */ static_assert(obs::native_lo_bwp_of::bwp_type::c_index == 0); static_assert(unused_same::dim_type, d1>()); static_assert(unused_same::dim_type, d2>()); static_assert(unused_same, obs::canonical_t>()); log && log(xtag("d1.abbrev", unit_abbrev_v.c_str())); log && log(xtag("d2.abbrev", unit_abbrev_v.c_str())); log && log(xtag("d3.abbrev", unit_abbrev_v.c_str())); } TEST_CASE("dimension2", "[dimension2]") { constexpr bool c_debug_flag = true; // can get bits from /dev/random by uncommenting the 2nd line below //uint64_t seed = xxx; //rng::Seed seed; //auto rng = xo::rng::xoshiro256ss(seed); scope log(XO_DEBUG2(c_debug_flag, "TEST_CASE.dimension2")); //log && log("(A)", xtag("foo", foo)); using di = di_cartesian_product; log && log(xtag("di", Reflect::require()->canonical_name())); log && log(xtag("di::outer_scalefactor_type", Reflect::require()->canonical_name())); log && log(xtag("di::bpu_list_type", Reflect::require()->canonical_name())); using u1 = unit_cartesian_product_t; log && log(xtag("u1", Reflect::require()->canonical_name())); log && log(xtag("u1", ccs(unit_abbrev_v.value_))); } /*TEST_CASE(dimension2)*/ TEST_CASE("dimension3", "[dimension3]") { constexpr bool c_debug_flag = true; // can get bits from /dev/random by uncommenting the 2nd line below //uint64_t seed = xxx; //rng::Seed seed; //auto rng = xo::rng::xoshiro256ss(seed); scope log(XO_DEBUG2(c_debug_flag, "TEST_CASE.dimension3")); //log && log("(A)", xtag("foo", foo)); using u1 = unit_invert_t; log && log(xtag("second^-1", Reflect::require()->canonical_name())); log && log(xtag("u1", unit_abbrev_v.c_str())); REQUIRE(strcmp(unit_abbrev_v.c_str(), "s^-1") == 0); using u2 = second; log && log(xtag("second", Reflect::require()->canonical_name())); log && log(xtag("u2", unit_abbrev_v.c_str())); using u1u2 = unit_cartesian_product_t; log && log(xtag("u1u2", Reflect::require()->canonical_name())); #ifdef NOT_USING using di1 = d1::dim_type; using di2 = d2::dim_type; using di1di2 = di_cartesian_product::type; log && log(xtag("di1di2", Reflect::require()->canonical_name())); #endif using f1 = u1::dim_type::front_type; using r1 = u1::dim_type::rest_type; using tmp = di_cartesian_product1; log && log(xtag("f1", Reflect::require()->canonical_name())); log && log(xtag("r1", Reflect::require()->canonical_name())); log && log(xtag("(f1.r1).outer_scalefactor_type", Reflect::require()->canonical_name())); log && log(xtag("(f1.r1).bpu_list_type", Reflect::require()->canonical_name())); using tmp2 = bpu_cartesian_product; log && log(xtag("(f1.u2).outer_scalefactor_type", Reflect::require()->canonical_name())); log && log(xtag("(f1.u2).bpu_list_type", Reflect::require()->canonical_name())); using f2 = u2::dim_type::front_type; log && log(xtag("f2", Reflect::require()->canonical_name())); using tmp3 = bpu_cartesian_product_helper; log && log(xtag("(f1.f2).outer_scalefactor_type", Reflect::require()->canonical_name())); log && log(xtag("(f1.f2).bpu_list_type", Reflect::require()->canonical_name())); } /*TEST_CASE(dimension3)*/ } /*namespace ut*/ } /*namespace xo*/ /* end dimension.test.cpp */