File: includes.cpp

package info (click to toggle)
boost1.83 1.83.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 545,632 kB
  • sloc: cpp: 3,857,086; xml: 125,552; ansic: 34,414; python: 25,887; asm: 5,276; sh: 4,799; ada: 1,681; makefile: 1,629; perl: 1,212; pascal: 1,139; sql: 810; yacc: 478; ruby: 102; lisp: 24; csh: 6
file content (164 lines) | stat: -rw-r--r-- 5,396 bytes parent folder | download | duplicates (9)
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
//  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/set_algorithm.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 Container1, class Container2>
        void test(Container1& cont1, Container2& cont2)
        {
            Container1 old_cont1(cont1);
            Container2 old_cont2(cont2);

            bool reference_result
                = std::includes(cont1.begin(), cont1.end(),
                                cont2.begin(), cont2.end());

            bool test_result = boost::includes(cont1, cont2);

            BOOST_CHECK( reference_result == test_result );

            BOOST_CHECK_EQUAL_COLLECTIONS(
                old_cont1.begin(), old_cont1.end(),
                cont1.begin(), cont1.end()
                );

            BOOST_CHECK_EQUAL_COLLECTIONS(
                old_cont2.begin(), old_cont2.end(),
                cont2.begin(), cont2.end()
                );
                
            BOOST_CHECK( test_result == boost::includes(boost::make_iterator_range(cont1), cont2) );
            BOOST_CHECK( test_result == boost::includes(cont1, boost::make_iterator_range(cont2)) );
            BOOST_CHECK( test_result == boost::includes(boost::make_iterator_range(cont1), boost::make_iterator_range(cont2)) );
        }

        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 Container1,
                 class Container2,
                 class BinaryPredicate>
        void test_pred(Container1 cont1, Container2 cont2,
                       BinaryPredicate pred)
        {
            sort_container(cont1, pred);
            sort_container(cont2, pred);

            Container1 old_cont1(cont1);
            Container2 old_cont2(cont2);

            bool reference_result
                = std::includes(cont1.begin(), cont1.end(),
                                cont2.begin(), cont2.end(),
                                pred);

            bool test_result = boost::includes(cont1, cont2, pred);

            BOOST_CHECK( reference_result == test_result );

            BOOST_CHECK_EQUAL_COLLECTIONS(
                old_cont1.begin(), old_cont1.end(),
                cont1.begin(), cont1.end()
                );

            BOOST_CHECK_EQUAL_COLLECTIONS(
                old_cont2.begin(), old_cont2.end(),
                cont2.begin(), cont2.end()
                );
                
            BOOST_CHECK( test_result == boost::includes(boost::make_iterator_range(cont1), cont2, pred) );
            BOOST_CHECK( test_result == boost::includes(cont1, boost::make_iterator_range(cont2), pred) );
            BOOST_CHECK( test_result == boost::includes(boost::make_iterator_range(cont1), boost::make_iterator_range(cont2), pred) );
        }

        template<class Container1, class Container2>
        void test_includes_impl(
            Container1& cont1,
            Container2& cont2
            )
        {
            test(cont1, cont2);
            test_pred(cont1, cont2, std::less<int>());
            test_pred(cont1, cont2, std::greater<int>());
        }

        template<class Container1, class Container2>
        void test_includes_impl()
        {
            using namespace boost::assign;

            Container1 cont1;
            Container2 cont2;

            test_includes_impl(cont1, cont2);

            cont1.clear();
            cont2.clear();
            cont1 += 1;
            test_includes_impl(cont1, cont2);

            cont1.clear();
            cont2.clear();
            cont2 += 1;
            test_includes_impl(cont1, cont2);

            cont1.clear();
            cont2.clear();
            cont1 += 1,2,3,4,5,6,7,8,9;
            cont2 += 2,3,4;
            test_includes_impl(cont1, cont2);

            cont1.clear();
            cont2.clear();
            cont1 += 2,3,4;
            cont2 += 1,2,3,4,5,6,7,8,9;
            test_includes_impl(cont1, cont2);
        }

        void test_includes()
        {
            test_includes_impl< std::vector<int>, std::vector<int> >();
            test_includes_impl< std::list<int>, std::list<int> >();
            test_includes_impl< std::deque<int>, std::deque<int> >();
            test_includes_impl< std::vector<int>, std::list<int> >();
            test_includes_impl< std::list<int>, std::vector<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.includes" );

    test->add( BOOST_TEST_CASE( &boost::test_includes ) );

    return test;
}