]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/unordered/test/unordered/find_tests.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / unordered / test / unordered / find_tests.cpp
CommitLineData
7c673cae
FG
1
2// Copyright 2006-2009 Daniel James.
3// Distributed under the Boost Software License, Version 1.0. (See accompanying
4// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
b32b8144 6// clang-format off
7c673cae
FG
7#include "../helpers/prefix.hpp"
8#include <boost/unordered_set.hpp>
9#include <boost/unordered_map.hpp>
10#include "../helpers/postfix.hpp"
b32b8144 11// clang-format on
7c673cae
FG
12
13#include "../helpers/test.hpp"
14#include "../objects/test.hpp"
15#include "../helpers/random_values.hpp"
16#include "../helpers/tracker.hpp"
17#include "../helpers/helpers.hpp"
18
b32b8144 19namespace find_tests {
7c673cae 20
b32b8144 21 test::seed_t initialize_seed(78937);
7c673cae 22
b32b8144
FG
23 template <class X> void find_tests1(X*, test::random_generator generator)
24 {
7c673cae
FG
25 typedef BOOST_DEDUCED_TYPENAME X::iterator iterator;
26
27 {
b32b8144
FG
28 test::check_instances check_;
29
30 test::random_values<X> v(500, generator);
31 X x(v.begin(), v.end());
32 X const& x_const = x;
33 test::ordered<X> tracker = test::create_ordered(x);
34 tracker.insert_range(v.begin(), v.end());
35
36 for (BOOST_DEDUCED_TYPENAME test::ordered<X>::const_iterator it1 =
37 tracker.begin();
38 it1 != tracker.end(); ++it1) {
39 BOOST_DEDUCED_TYPENAME X::key_type key = test::get_key<X>(*it1);
40 BOOST_DEDUCED_TYPENAME X::const_iterator const_pos = x_const.find(key);
41 iterator pos = x.find(key);
42 BOOST_TEST(const_pos != x_const.end());
43 BOOST_TEST(const_pos != x_const.end() &&
44 x_const.key_eq()(key, test::get_key<X>(*const_pos)));
45 BOOST_TEST(pos != x.end());
46 BOOST_TEST(pos != x.end() && x.key_eq()(key, test::get_key<X>(*pos)));
47
48 BOOST_TEST(x.count(key) == tracker.count(key));
49
50 test::compare_pairs(x.equal_range(key), tracker.equal_range(key),
51 (BOOST_DEDUCED_TYPENAME X::value_type*)0);
52 test::compare_pairs(x_const.equal_range(key), tracker.equal_range(key),
53 (BOOST_DEDUCED_TYPENAME X::value_type*)0);
54 }
55
56 test::random_values<X> v2(500, generator);
57 for (BOOST_DEDUCED_TYPENAME test::random_values<X>::const_iterator it2 =
58 v2.begin();
59 it2 != v2.end(); ++it2) {
60 BOOST_DEDUCED_TYPENAME X::key_type key = test::get_key<X>(*it2);
61 if (tracker.find(test::get_key<X>(key)) == tracker.end()) {
62 BOOST_TEST(x.find(key) == x.end());
63 BOOST_TEST(x_const.find(key) == x_const.end());
64 BOOST_TEST(x.count(key) == 0);
65 std::pair<iterator, iterator> range = x.equal_range(key);
66 BOOST_TEST(range.first == range.second);
7c673cae 67 }
b32b8144 68 }
7c673cae
FG
69 }
70
71 {
b32b8144
FG
72 test::check_instances check_;
73
74 X x;
75
76 test::random_values<X> v2(5, generator);
77 for (BOOST_DEDUCED_TYPENAME test::random_values<X>::const_iterator it3 =
78 v2.begin();
79 it3 != v2.end(); ++it3) {
80 BOOST_DEDUCED_TYPENAME X::key_type key = test::get_key<X>(*it3);
81 BOOST_TEST(x.find(key) == x.end());
82 BOOST_TEST(x.count(key) == 0);
83 std::pair<iterator, iterator> range = x.equal_range(key);
84 BOOST_TEST(range.first == range.second);
85 }
7c673cae 86 }
b32b8144 87 }
7c673cae 88
b32b8144
FG
89 struct compatible_key
90 {
7c673cae 91 test::object o_;
b32b8144 92
7c673cae 93 compatible_key(test::object const& o) : o_(o) {}
b32b8144 94 };
7c673cae 95
b32b8144
FG
96 struct compatible_hash
97 {
7c673cae
FG
98 test::hash hash_;
99
b32b8144
FG
100 std::size_t operator()(compatible_key const& k) const
101 {
102 return hash_(k.o_);
7c673cae 103 }
b32b8144 104 };
7c673cae 105
b32b8144
FG
106 struct compatible_predicate
107 {
7c673cae
FG
108 test::equal_to equal_;
109
b32b8144
FG
110 bool operator()(compatible_key const& k1, compatible_key const& k2) const
111 {
112 return equal_(k1.o_, k2.o_);
7c673cae 113 }
b32b8144 114 };
7c673cae 115
b32b8144
FG
116 template <class X>
117 void find_compatible_keys_test(X*, test::random_generator generator)
118 {
7c673cae 119 typedef BOOST_DEDUCED_TYPENAME test::random_values<X>::iterator
b32b8144 120 value_iterator;
7c673cae
FG
121 test::random_values<X> v(500, generator);
122 X x(v.begin(), v.end());
b32b8144 123
7c673cae
FG
124 compatible_hash h;
125 compatible_predicate eq;
b32b8144
FG
126
127 for (value_iterator it = v.begin(), end = v.end(); it != end; ++it) {
128 BOOST_DEDUCED_TYPENAME X::key_type key = test::get_key<X>(*it);
129 BOOST_TEST(x.find(key) == x.find(compatible_key(key), h, eq));
7c673cae
FG
130 }
131
132 test::random_values<X> v2(20, generator);
b32b8144
FG
133
134 for (value_iterator it = v2.begin(), end = v2.end(); it != end; ++it) {
135 BOOST_DEDUCED_TYPENAME X::key_type key = test::get_key<X>(*it);
136 BOOST_TEST(x.find(key) == x.find(compatible_key(key), h, eq));
7c673cae 137 }
b32b8144 138 }
7c673cae 139
b32b8144 140 boost::unordered_set<test::object, test::hash, test::equal_to,
7c673cae 141 test::allocator2<test::object> >* test_set;
b32b8144 142 boost::unordered_multiset<test::object, test::hash, test::equal_to,
7c673cae 143 test::allocator1<test::object> >* test_multiset;
b32b8144 144 boost::unordered_map<test::object, test::object, test::hash, test::equal_to,
7c673cae 145 test::allocator2<test::object> >* test_map;
b32b8144
FG
146 boost::unordered_multimap<test::object, test::object, test::hash,
147 test::equal_to, test::allocator1<test::object> >* test_multimap;
148
149 using test::default_generator;
150 using test::generate_collisions;
151 using test::limited_range;
152
153 UNORDERED_TEST(
154 find_tests1, ((test_set)(test_multiset)(test_map)(test_multimap))(
155 (default_generator)(generate_collisions)(limited_range)))
156 UNORDERED_TEST(find_compatible_keys_test,
157 ((test_set)(test_multiset)(test_map)(test_multimap))(
158 (default_generator)(generate_collisions)(limited_range)))
7c673cae
FG
159}
160
161RUN_TESTS()