libcruft-util/test/tuple/type.cpp

115 lines
2.9 KiB
C++
Raw Normal View History

2015-04-20 17:16:18 +10:00
#include "tap.hpp"
2018-04-05 13:54:42 +10:00
#include "tuple/type.hpp"
2018-04-05 13:54:42 +10:00
#include <typeindex>
2015-04-20 17:16:18 +10:00
2015-04-21 14:19:56 +10:00
template <typename T>
struct int_mapper
{
typedef int type;
};
2018-04-05 13:54:42 +10:00
2015-04-20 17:16:18 +10:00
int
2018-04-05 13:54:42 +10:00
main (void)
2015-04-20 17:16:18 +10:00
{
cruft::TAP::logger tap;
2015-04-20 17:16:18 +10:00
{
2018-04-05 13:54:42 +10:00
using tuple_t = std::tuple<float,int,void>;
tap.expect_eq (cruft::tuple::type::index<tuple_t,int>::value, 1u, "tuple index extraction");
2015-04-20 17:16:18 +10:00
}
{
using tuple_t = std::tuple<float,int,void>;
tap.expect (
std::is_same_v<
cruft::tuple::type::nth_t<tuple_t,1>,
int
>,
"tuple type indexing with 'nth'"
);
}
2015-04-20 17:16:18 +10:00
{
2018-04-05 13:54:42 +10:00
#if !defined(NO_RTTI)
2015-04-20 17:16:18 +10:00
auto tuple = std::make_tuple (1u, 1, 1.f, 1.);
std::vector<std::type_index> expected {
std::type_index (typeid (1u)),
std::type_index (typeid (1)),
std::type_index (typeid (1.f)),
std::type_index (typeid (1.))
};
std::vector<std::type_index> actual;
cruft::tuple::type::each<decltype(tuple)> ([&actual] (auto i) {
2015-04-20 17:16:18 +10:00
actual.push_back (typeid (typename decltype(i)::type));
});
tap.expect_eq (actual, expected, "type iteration");
2018-04-05 13:54:42 +10:00
#else
2016-05-12 17:59:08 +10:00
tap.skip ("type iteration because no-rtti");
2018-04-05 13:54:42 +10:00
#endif
2015-04-20 17:16:18 +10:00
}
2015-04-21 14:19:56 +10:00
{
using pair_t = std::pair<int,float>;
using tuple_t = std::tuple<int,float>;
tap.expect (std::is_same_v<cruft::tuple::type::entuple_t<pair_t>, tuple_t>, "entuple a pair");
}
{
using a = std::pair<int,float>;
using b = std::tuple<char>;
using c = std::tuple<int,float,char>;
tap.expect (std::is_same_v<
cruft::tuple::type::cat_t<a,b>, c
>, "concatenate pair and tuple");
}
{
using original_t = std::tuple<int,char,float,int,double,int>;
using removed_t = std::tuple<char,float,double>;
tap.expect (std::is_same_v<
cruft::tuple::type::remove_t<int,original_t>,
removed_t
>, "removed int from tuple");
}
{
using original_t = std::tuple<int,float,float,char,double,char>;
using unique_t = std::tuple<int,float,char,double>;
tap.expect (std::is_same_v<
cruft::tuple::type::unique_t<original_t>,
unique_t
>, "removed duplicates from tuple");
}
2015-04-21 14:19:56 +10:00
{
2018-04-05 13:54:42 +10:00
using src_t = std::tuple<std::string>;
using dst_t = typename cruft::tuple::type::map<src_t, int_mapper>::type;
2015-04-21 14:19:56 +10:00
tap.expect (std::is_same<dst_t, std::tuple<int>>::value, "tuple type mapping");
2015-04-21 14:19:56 +10:00
}
2019-12-09 11:22:13 +11:00
{
// Test that prefix extraction of a tuple works as expected.
using full_t = std::tuple<i08, i16, i32, i64>;
static constexpr std::size_t LENGTH = 2;
using prefix_t = cruft::tuple::type::prefix_t<LENGTH, full_t>;
using expected_t = std::tuple<i08, i16>;
tap.expect (std::is_same_v<prefix_t, expected_t>, "tuple prefix");
}
return tap.status ();
2018-04-05 13:54:42 +10:00
}