1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
// Copyright Neil Groves 2009. Use, modification and
// distribution is subject to 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)
//
//
// For more information, see http://www.boost.org/libs/range/
//
#include <boost/range/algorithm/equal_range.hpp>
#include <boost/test/test_tools.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/assign.hpp>
#include <algorithm>
#include <functional>
#include <list>
#include <numeric>
#include <deque>
#include <vector>
namespace boost
{
namespace
{
template<class Container, class Pair>
void check_result(
const Container& reference,
Pair reference_pair,
const Container& test,
Pair test_pair
)
{
typedef BOOST_DEDUCED_TYPENAME range_iterator<const Container>::type
const_iterator_t;
BOOST_CHECK_EQUAL_COLLECTIONS(
reference.begin(), reference.end(),
test.begin(), test.end()
);
BOOST_CHECK_EQUAL(
std::distance<const_iterator_t>(reference.begin(), reference_pair.first),
std::distance<const_iterator_t>(test.begin(), test_pair.first)
);
BOOST_CHECK_EQUAL(
std::distance<const_iterator_t>(reference.begin(), reference_pair.second),
std::distance<const_iterator_t>(test.begin(), test_pair.second)
);
BOOST_CHECK_EQUAL_COLLECTIONS(
reference_pair.first, reference_pair.second,
test_pair.first, test_pair.second
);
}
template<class Container>
void test(Container& cont)
{
Container reference(cont);
Container test(cont);
typedef BOOST_DEDUCED_TYPENAME range_iterator<Container>::type iterator_t;
typedef std::pair<iterator_t, iterator_t> pair_t;
pair_t reference_result
= std::equal_range(reference.begin(), reference.end(), 5);
pair_t test_result = boost::equal_range(test, 5);
check_result(reference, reference_result, test, test_result);
pair_t test_result2 = boost::equal_range(boost::make_iterator_range(test), 5);
check_result(reference, reference_result, test, test_result2);
}
template<class Container, class BinaryPredicate>
void sort_container(Container& cont, BinaryPredicate pred)
{
typedef BOOST_DEDUCED_TYPENAME Container::value_type value_t;
std::vector<value_t> temp(cont.begin(), cont.end());
std::sort(temp.begin(), temp.end(), pred);
cont.assign(temp.begin(), temp.end());
}
template<class Container, class BinaryPredicate>
void test_pred(Container& cont, BinaryPredicate pred)
{
typedef BOOST_DEDUCED_TYPENAME boost::remove_const<Container>::type container_t;
container_t reference_temp(cont);
container_t test_temp(cont);
sort_container(reference_temp, pred);
sort_container(test_temp, pred);
Container reference(reference_temp);
Container test(test_temp);
typedef BOOST_DEDUCED_TYPENAME range_iterator<Container>::type iterator_t;
typedef std::pair<iterator_t, iterator_t> pair_t;
pair_t reference_result
= std::equal_range(reference.begin(), reference.end(), 5,
BinaryPredicate());
pair_t test_result = boost::equal_range(test, 5, BinaryPredicate());
check_result(reference, reference_result, test, test_result);
pair_t test_result2 = boost::equal_range(boost::make_iterator_range(test), 5, BinaryPredicate());
check_result(reference, reference_result, test, test_result2);
}
template<class Container>
void test_driver(const Container& cont)
{
Container mutable_cont(cont);
test(mutable_cont);
test(cont);
}
template<class Container, class BinaryPredicate>
void test_pred_driver(const Container& cont, BinaryPredicate pred)
{
Container mutable_cont(cont);
test_pred(mutable_cont, pred);
test_pred(cont, pred);
}
template<class Container>
void test_equal_range_impl()
{
using namespace boost::assign;
Container cont;
test_driver(cont);
test_pred_driver(cont, std::less<int>());
test_pred_driver(cont, std::greater<int>());
cont.clear();
cont += 1;
test_driver(cont);
test_pred_driver(cont, std::less<int>());
test_pred_driver(cont, std::greater<int>());
cont.clear();
cont += 1,2,3,4,5,6,7,8,9;
test_driver(cont);
test_pred_driver(cont, std::less<int>());
test_pred_driver(cont, std::greater<int>());
}
void test_equal_range()
{
test_equal_range_impl< std::vector<int> >();
test_equal_range_impl< std::list<int> >();
test_equal_range_impl< std::deque<int> >();
}
}
}
boost::unit_test::test_suite*
init_unit_test_suite(int argc, char* argv[])
{
boost::unit_test::test_suite* test
= BOOST_TEST_SUITE( "RangeTestSuite.algorithm.equal_range" );
test->add( BOOST_TEST_CASE( &boost::test_equal_range ) );
return test;
}
|