2006-05-17 17:19:16 +00:00
|
|
|
|
2010-10-21 20:23:37 +00:00
|
|
|
// Copyright 2006-2010 Daniel James.
|
2006-07-01 22:31:26 +00: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)
|
2006-05-17 17:19:16 +00:00
|
|
|
|
2009-11-26 23:15:30 +00:00
|
|
|
#include "../helpers/prefix.hpp"
|
2006-05-17 17:19:16 +00:00
|
|
|
#include <boost/unordered_set.hpp>
|
|
|
|
|
#include <boost/unordered_map.hpp>
|
2012-04-08 15:29:15 +00:00
|
|
|
#include "../helpers/postfix.hpp"
|
|
|
|
|
|
2008-03-24 17:03:15 +00:00
|
|
|
#include "../helpers/test.hpp"
|
2006-05-17 17:19:16 +00:00
|
|
|
#include "../objects/test.hpp"
|
|
|
|
|
#include "../helpers/random_values.hpp"
|
|
|
|
|
#include "../helpers/tracker.hpp"
|
|
|
|
|
#include "../helpers/equivalent.hpp"
|
2006-08-06 20:42:45 +00:00
|
|
|
#include "../helpers/input_iterator.hpp"
|
2006-10-31 22:19:26 +00:00
|
|
|
#include "../helpers/invariants.hpp"
|
2006-05-17 17:19:16 +00:00
|
|
|
|
2008-03-24 17:03:15 +00:00
|
|
|
namespace constructor_tests {
|
|
|
|
|
|
2012-05-07 10:57:35 +00:00
|
|
|
test::seed_t initialize_seed(356730);
|
2007-12-06 11:42:28 +00:00
|
|
|
|
2006-05-17 17:19:16 +00:00
|
|
|
template <class T>
|
2010-01-04 22:49:39 +00:00
|
|
|
void constructor_tests1(T*,
|
|
|
|
|
test::random_generator generator = test::default_generator)
|
2006-05-17 17:19:16 +00:00
|
|
|
{
|
2008-01-10 22:30:46 +00:00
|
|
|
BOOST_DEDUCED_TYPENAME T::hasher hf;
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::key_equal eq;
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::allocator_type al;
|
2006-05-17 17:19:16 +00:00
|
|
|
|
|
|
|
|
std::cerr<<"Construct 1\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(0, hf, eq);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 2\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(100, hf);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 100);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 3\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(2000);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 2000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 4\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2006-05-17 17:19:16 +00:00
|
|
|
T x;
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 5\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(1000, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 10000, hf, eq);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.bucket_count() >= 10000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 6\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(10, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 10000, hf);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.bucket_count() >= 10000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 7\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 100);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.bucket_count() >= 100);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 8\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(1, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end());
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-21 17:14:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 9\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2006-05-21 17:14:11 +00:00
|
|
|
T x(0, hf, eq, al);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-21 17:14:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 10\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(1000, generator);
|
2006-05-21 17:14:11 +00:00
|
|
|
T x(v.begin(), v.end(), 10000, hf, eq, al);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.bucket_count() >= 10000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
2008-04-14 15:10:26 +00:00
|
|
|
|
|
|
|
|
std::cerr<<"Construct 11\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2008-04-14 15:10:26 +00:00
|
|
|
T x(al);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2008-04-14 15:10:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
}
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class T>
|
2010-01-04 22:49:39 +00:00
|
|
|
void constructor_tests2(T*,
|
|
|
|
|
test::random_generator const& generator = test::default_generator)
|
2006-05-17 17:19:16 +00:00
|
|
|
{
|
2008-01-10 22:30:46 +00:00
|
|
|
BOOST_DEDUCED_TYPENAME T::hasher hf;
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::hasher hf1(1);
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::hasher hf2(2);
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::key_equal eq;
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::key_equal eq1(1);
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::key_equal eq2(2);
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::allocator_type al;
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::allocator_type al1(1);
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::allocator_type al2(2);
|
2006-05-17 17:19:16 +00:00
|
|
|
|
|
|
|
|
std::cerr<<"Construct 1\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(10000, hf1, eq1);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.bucket_count() >= 10000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 2\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(100, hf1);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 100);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 3\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 0, hf1, eq1);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 4\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(5, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 1000, hf1);
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x.bucket_count() >= 1000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 5\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
2006-05-21 17:14:11 +00:00
|
|
|
T x(v.begin(), v.end(), 0, hf, eq, al1);
|
|
|
|
|
T y(x.begin(), x.end(), 0, hf1, eq1, al2);
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_container(y, x);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
test::check_equivalent_keys(y);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 6\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 0, hf1, eq1);
|
|
|
|
|
T y(x.begin(), x.end(), 0, hf, eq);
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_container(y, x);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
test::check_equivalent_keys(y);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Construct 7\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
2006-05-17 17:19:16 +00:00
|
|
|
T x(v.begin(), v.end(), 0, hf1, eq1);
|
|
|
|
|
T y(x.begin(), x.end(), 0, hf2, eq2);
|
2006-06-12 23:30:46 +00:00
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_container(y, x);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
test::check_equivalent_keys(y);
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
2006-08-06 20:42:45 +00:00
|
|
|
|
|
|
|
|
std::cerr<<"Construct 8 - from input iterator\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2008-01-20 18:55:57 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
2009-12-04 19:44:34 +00:00
|
|
|
BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
|
|
|
|
v_begin = v.begin(), v_end = v.end();
|
2010-01-04 22:49:39 +00:00
|
|
|
T x(test::input_iterator(v_begin),
|
|
|
|
|
test::input_iterator(v_end), 0, hf1, eq1);
|
2009-12-04 19:44:34 +00:00
|
|
|
BOOST_DEDUCED_TYPENAME T::const_iterator
|
|
|
|
|
x_begin = x.begin(), x_end = x.end();
|
2010-01-04 22:49:39 +00:00
|
|
|
T y(test::input_iterator(x_begin),
|
|
|
|
|
test::input_iterator(x_end), 0, hf2, eq2);
|
2006-08-06 20:42:45 +00:00
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_container(y, x);
|
2006-10-31 22:19:26 +00:00
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
test::check_equivalent_keys(y);
|
2006-08-06 20:42:45 +00:00
|
|
|
}
|
2009-09-21 21:17:40 +00:00
|
|
|
|
2010-10-21 20:23:37 +00:00
|
|
|
std::cerr<<"Construct 8.5 - from copy iterator\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
2010-10-21 20:23:37 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
|
|
|
|
T x(test::copy_iterator(v.begin()),
|
|
|
|
|
test::copy_iterator(v.end()), 0, hf1, eq1);
|
|
|
|
|
T y(test::copy_iterator(x.begin()),
|
|
|
|
|
test::copy_iterator(x.end()), 0, hf2, eq2);
|
|
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_container(y, x);
|
|
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
test::check_equivalent_keys(y);
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-21 21:17:40 +00:00
|
|
|
std::cerr<<"Construct 9\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2009-09-21 21:17:40 +00:00
|
|
|
test::random_values<T> v(100, generator);
|
|
|
|
|
T x(50);
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 50);
|
|
|
|
|
x.max_load_factor(10);
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 50);
|
|
|
|
|
x.insert(v.begin(), v.end());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 50);
|
|
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
}
|
2009-10-19 19:32:09 +00:00
|
|
|
|
2012-07-09 22:08:01 +00:00
|
|
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
2009-10-19 19:32:09 +00:00
|
|
|
std::initializer_list<BOOST_DEDUCED_TYPENAME T::value_type> list;
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Initializer list construct 1\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2009-10-19 19:32:09 +00:00
|
|
|
T x(list);
|
|
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Initializer list construct 2\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2009-10-19 19:32:09 +00:00
|
|
|
T x(list, 1000);
|
|
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 1000);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Initializer list construct 3\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2009-10-19 19:32:09 +00:00
|
|
|
T x(list, 10, hf1);
|
|
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 10);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Initializer list construct 4\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2009-10-19 19:32:09 +00:00
|
|
|
T x(list, 10, hf1, eq1);
|
|
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 10);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cerr<<"Initializer list construct 5\n";
|
|
|
|
|
{
|
2011-08-14 18:52:43 +00:00
|
|
|
test::check_instances check_;
|
|
|
|
|
|
2009-10-19 19:32:09 +00:00
|
|
|
T x(list, 10, hf1, eq1, al1);
|
|
|
|
|
BOOST_TEST(x.empty());
|
|
|
|
|
BOOST_TEST(x.bucket_count() >= 10);
|
|
|
|
|
BOOST_TEST(test::equivalent(x.hash_function(), hf1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.key_eq(), eq1));
|
|
|
|
|
BOOST_TEST(test::equivalent(x.get_allocator(), al1));
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
2006-10-31 22:19:26 +00:00
|
|
|
template <class T>
|
2010-01-04 22:49:39 +00:00
|
|
|
void map_constructor_test(T* = 0,
|
|
|
|
|
test::random_generator const& generator = test::default_generator)
|
2006-10-31 22:19:26 +00:00
|
|
|
{
|
|
|
|
|
std::cerr<<"map_constructor_test\n";
|
|
|
|
|
|
2010-01-04 22:49:39 +00:00
|
|
|
typedef test::list<
|
|
|
|
|
std::pair<
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::key_type,
|
|
|
|
|
BOOST_DEDUCED_TYPENAME T::mapped_type
|
|
|
|
|
>
|
|
|
|
|
> list;
|
2008-06-01 18:00:53 +00:00
|
|
|
test::random_values<T> v(1000, generator);
|
2008-04-30 07:57:04 +00:00
|
|
|
list l(v.begin(), v.end());
|
2006-10-31 22:19:26 +00:00
|
|
|
T x(l.begin(), l.end());
|
|
|
|
|
|
|
|
|
|
test::check_container(x, v);
|
|
|
|
|
test::check_equivalent_keys(x);
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-04 22:49:39 +00:00
|
|
|
boost::unordered_map<test::object, test::object,
|
|
|
|
|
test::hash, test::equal_to,
|
2012-07-08 11:55:35 +00:00
|
|
|
std::allocator<test::object> >* test_map_std_alloc;
|
|
|
|
|
|
|
|
|
|
boost::unordered_set<test::object,
|
|
|
|
|
test::hash, test::equal_to,
|
|
|
|
|
test::allocator1<test::object> >* test_set;
|
|
|
|
|
boost::unordered_multiset<test::object,
|
|
|
|
|
test::hash, test::equal_to,
|
|
|
|
|
test::allocator2<test::object> >* test_multiset;
|
|
|
|
|
boost::unordered_map<test::object, test::object,
|
|
|
|
|
test::hash, test::equal_to,
|
|
|
|
|
test::allocator2<test::object> >* test_map;
|
2010-01-04 22:49:39 +00:00
|
|
|
boost::unordered_multimap<test::object, test::object,
|
|
|
|
|
test::hash, test::equal_to,
|
2012-07-08 11:55:35 +00:00
|
|
|
test::allocator1<test::object> >* test_multimap;
|
2006-05-17 17:19:16 +00:00
|
|
|
|
2008-03-24 17:03:15 +00:00
|
|
|
using test::default_generator;
|
|
|
|
|
using test::generate_collisions;
|
2006-05-17 17:19:16 +00:00
|
|
|
|
2008-03-24 17:03:15 +00:00
|
|
|
UNORDERED_TEST(constructor_tests1,
|
2012-07-08 11:55:35 +00:00
|
|
|
((test_map_std_alloc)(test_set)(test_multiset)(test_map)(test_multimap))
|
2008-03-24 17:03:15 +00:00
|
|
|
((default_generator)(generate_collisions))
|
|
|
|
|
)
|
2007-07-17 23:17:21 +00:00
|
|
|
|
2008-03-24 17:03:15 +00:00
|
|
|
UNORDERED_TEST(constructor_tests2,
|
|
|
|
|
((test_set)(test_multiset)(test_map)(test_multimap))
|
|
|
|
|
((default_generator)(generate_collisions))
|
|
|
|
|
)
|
2006-05-17 17:19:16 +00:00
|
|
|
|
2008-03-24 17:03:15 +00:00
|
|
|
UNORDERED_TEST(map_constructor_test,
|
2012-07-08 11:55:35 +00:00
|
|
|
((test_map_std_alloc)(test_map)(test_multimap))
|
2008-03-24 17:03:15 +00:00
|
|
|
)
|
2007-07-17 23:17:21 +00:00
|
|
|
|
2012-07-09 22:08:01 +00:00
|
|
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
2008-12-04 21:30:19 +00:00
|
|
|
|
2009-06-01 06:50:37 +00:00
|
|
|
UNORDERED_AUTO_TEST(test_default_initializer_list) {
|
|
|
|
|
std::cerr<<"Initializer List Tests\n";
|
|
|
|
|
std::initializer_list<int> init;
|
|
|
|
|
boost::unordered_set<int> x1 = init;
|
|
|
|
|
BOOST_TEST(x1.empty());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-07-09 22:08:01 +00:00
|
|
|
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
2009-06-01 06:50:37 +00:00
|
|
|
|
2008-12-04 21:30:19 +00:00
|
|
|
UNORDERED_AUTO_TEST(test_initializer_list) {
|
|
|
|
|
std::cerr<<"Initializer List Tests\n";
|
|
|
|
|
boost::unordered_set<int> x1 = { 2, 10, 45, -5 };
|
2009-05-27 17:44:09 +00:00
|
|
|
BOOST_TEST(x1.find(10) != x1.end());
|
|
|
|
|
BOOST_TEST(x1.find(46) == x1.end());
|
2008-12-04 21:30:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-05-17 17:19:16 +00:00
|
|
|
}
|
2008-03-24 17:03:15 +00:00
|
|
|
|
|
|
|
|
RUN_TESTS()
|