Files
unordered/test/cfoa/fwd_tests.cpp

175 lines
4.2 KiB
C++
Raw Normal View History

2023-05-16 13:31:35 -07:00
// Copyright (C) 2023 Christian Mazakas
// Copyright (C) 2023-2024 Joaquin M Lopez Munoz
2023-05-16 13:31:35 -07:00
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include "helpers.hpp"
#include <boost/config/workaround.hpp>
2023-05-16 13:31:35 -07:00
#include <boost/unordered/concurrent_flat_map_fwd.hpp>
2023-09-10 18:35:51 +02:00
#include <boost/unordered/concurrent_flat_set_fwd.hpp>
#include <boost/unordered/concurrent_node_map_fwd.hpp>
#include <boost/unordered/concurrent_node_set_fwd.hpp>
2023-06-15 09:17:25 -07:00
#include <limits>
2023-05-16 13:31:35 -07:00
test::seed_t initialize_seed{32304628};
using test::default_generator;
using test::limited_range;
using test::sequential;
template <class T>
void swap_call(boost::unordered::concurrent_flat_map<T, T>& x1,
boost::unordered::concurrent_flat_map<T, T>& x2)
{
swap(x1, x2);
}
template <class T>
bool equal_call(boost::unordered::concurrent_flat_map<T, T>& x1,
boost::unordered::concurrent_flat_map<T, T>& x2)
{
return x1 == x2;
}
template <class T>
bool unequal_call(boost::unordered::concurrent_flat_map<T, T>& x1,
boost::unordered::concurrent_flat_map<T, T>& x2)
{
return x1 != x2;
}
template <class T>
void swap_call(boost::unordered::concurrent_node_map<T, T>& x1,
boost::unordered::concurrent_node_map<T, T>& x2)
{
swap(x1, x2);
}
template <class T>
bool equal_call(boost::unordered::concurrent_node_map<T, T>& x1,
boost::unordered::concurrent_node_map<T, T>& x2)
{
return x1 == x2;
}
template <class T>
bool unequal_call(boost::unordered::concurrent_node_map<T, T>& x1,
boost::unordered::concurrent_node_map<T, T>& x2)
{
return x1 != x2;
}
2023-09-10 18:35:51 +02:00
template <class T>
void swap_call(boost::unordered::concurrent_flat_set<T>& x1,
boost::unordered::concurrent_flat_set<T>& x2)
{
swap(x1, x2);
}
template <class T>
bool equal_call(boost::unordered::concurrent_flat_set<T>& x1,
boost::unordered::concurrent_flat_set<T>& x2)
{
return x1 == x2;
}
template <class T>
bool unequal_call(boost::unordered::concurrent_flat_set<T>& x1,
boost::unordered::concurrent_flat_set<T>& x2)
{
return x1 != x2;
}
template <class T>
void swap_call(boost::unordered::concurrent_node_set<T>& x1,
boost::unordered::concurrent_node_set<T>& x2)
{
swap(x1, x2);
}
template <class T>
bool equal_call(boost::unordered::concurrent_node_set<T>& x1,
boost::unordered::concurrent_node_set<T>& x2)
{
return x1 == x2;
}
template <class T>
bool unequal_call(boost::unordered::concurrent_node_set<T>& x1,
boost::unordered::concurrent_node_set<T>& x2)
{
return x1 != x2;
}
2023-05-16 13:31:35 -07:00
#include <boost/unordered/concurrent_flat_map.hpp>
2023-09-10 18:35:51 +02:00
#include <boost/unordered/concurrent_flat_set.hpp>
#include <boost/unordered/concurrent_node_map.hpp>
#include <boost/unordered/concurrent_node_set.hpp>
2023-05-16 13:31:35 -07:00
using map_type = boost::unordered::concurrent_flat_map<int, int>;
using node_map_type = boost::unordered::concurrent_node_map<int, int>;
using set_type = boost::unordered::concurrent_flat_set<int>;
using node_set_type = boost::unordered::concurrent_node_set<int>;
2023-09-10 18:35:51 +02:00
map_type* test_map;
node_map_type* test_node_map;
2023-09-10 18:35:51 +02:00
set_type* test_set;
node_set_type* test_node_set;
2023-05-16 13:31:35 -07:00
2023-09-10 18:35:51 +02:00
template <typename X>
void fwd_swap_call(X*)
{
#if !defined(BOOST_CLANG_VERSION) || \
BOOST_WORKAROUND(BOOST_CLANG_VERSION, < 30700) || \
2023-06-06 08:27:55 -07:00
BOOST_WORKAROUND(BOOST_CLANG_VERSION, >= 30800)
// clang-3.7 seems to have a codegen bug here so we workaround it
2023-05-16 13:31:35 -07:00
2023-09-10 18:35:51 +02:00
X x1, x2;
swap_call(x1, x2);
#endif
2023-09-10 18:35:51 +02:00
}
2023-09-10 18:35:51 +02:00
template <typename X>
void fwd_equal_call(X*)
{
X x1, x2;
2023-05-16 13:31:35 -07:00
BOOST_TEST(equal_call(x1, x2));
}
2023-09-10 18:35:51 +02:00
template <typename X>
void fwd_unequal_call(X*)
{
X x1, x2;
2023-05-16 13:31:35 -07:00
BOOST_TEST_NOT(unequal_call(x1, x2));
}
2023-06-15 09:17:25 -07:00
// this isn't the best place for this test but it's better than introducing a
// new file
2023-09-10 18:35:51 +02:00
template <typename X>
void max_size(X*)
{
X x1;
2023-06-15 09:17:25 -07:00
BOOST_TEST_EQ(
2023-09-10 18:35:51 +02:00
x1.max_size(), std::numeric_limits<typename X::size_type>::max());
2023-06-15 09:17:25 -07:00
}
2023-09-10 18:35:51 +02:00
// clang-format off
UNORDERED_TEST(
fwd_swap_call,
((test_map)(test_node_map)(test_set)(test_node_set)))
2023-09-10 18:35:51 +02:00
UNORDERED_TEST(
fwd_equal_call,
((test_map)(test_node_map)(test_set)(test_node_set)))
2023-09-10 18:35:51 +02:00
UNORDERED_TEST(
fwd_unequal_call,
((test_map)(test_node_map)(test_set)(test_node_set)))
2023-09-10 18:35:51 +02:00
UNORDERED_TEST(
max_size,
((test_map)(test_node_map)(test_set)(test_node_set)))
2023-09-10 18:35:51 +02:00
// clang-format on
2023-05-16 13:31:35 -07:00
RUN_TESTS()