19258b62753f0d8e47947819f885167dfbe1d99c
[libcds.git] / test / unit / map / test_michael_iterable_hp.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8     
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #ifndef CDSUNIT_MAP_TEST_MICHAEL_ITERABLE_MAP_HP_H
32 #define CDSUNIT_MAP_TEST_MICHAEL_ITERABLE_MAP_HP_H
33
34 #include "test_michael_iterable.h"
35
36 namespace cds_test {
37
38     class michael_iterable_hp: public michael_iterable_map
39     {
40         typedef michael_iterable_map base_class;
41
42     protected:
43         template <class Map>
44         void test( Map& m )
45         {
46             // Precondition: map is empty
47             // Postcondition: map is empty
48
49             base_class::test( m );
50
51             EXPECT_TRUE( m.empty());
52             EXPECT_CONTAINER_SIZE( m, 0 );
53
54             typedef typename Map::value_type map_pair;
55             size_t const kkSize = base_class::kSize;
56
57             std::vector<key_type> arrKeys;
58             for ( int i = 0; i < static_cast<int>(kkSize); ++i )
59                 arrKeys.push_back( key_type( i ));
60             shuffle( arrKeys.begin(), arrKeys.end());
61
62             std::vector< value_type > arrVals;
63             for ( size_t i = 0; i < kkSize; ++i ) {
64                 value_type val;
65                 val.nVal = static_cast<int>( i );
66                 val.strVal = std::to_string( i );
67                 arrVals.push_back( val );
68             }
69
70             for ( auto const& i : arrKeys )
71                 EXPECT_TRUE( m.insert( i ) );
72             EXPECT_FALSE( m.empty() );
73             EXPECT_CONTAINER_SIZE( m, kkSize );
74
75             // iterators
76             size_t nCount = 0;
77             for ( auto it = m.begin(); it != m.end(); ++it ) {
78                 EXPECT_EQ( it->second.nVal, 0 );
79                 it->second.nVal = it->first.nKey * 2;
80                 ++nCount;
81             }
82             EXPECT_EQ( nCount, kkSize );
83
84             nCount = 0;
85             for ( auto it = m.cbegin(); it != m.cend(); ++it ) {
86                 EXPECT_EQ( it->second.nVal, it->first.nKey * 2 );
87                 ++nCount;
88             }
89             EXPECT_EQ( nCount, kkSize );
90
91             // get/extract
92             typedef typename Map::guarded_ptr guarded_ptr;
93             guarded_ptr gp;
94
95             for ( auto const& i : arrKeys ) {
96                 value_type const& val = arrVals.at( i.nKey );
97
98                 gp = m.get( i.nKey );
99                 ASSERT_FALSE( !gp );
100                 EXPECT_EQ( gp->first.nKey, i.nKey );
101                 gp.release();
102                 gp = m.get( i );
103                 ASSERT_FALSE( !gp );
104                 EXPECT_EQ( gp->first.nKey, i.nKey );
105                 gp.release();
106                 gp = m.get_with( other_item( i.nKey ), other_less());
107                 ASSERT_FALSE( !gp );
108                 EXPECT_EQ( gp->first.nKey, i.nKey );
109
110                 switch ( i.nKey % 4 ) {
111                 case 0:
112                     gp = m.extract( i.nKey );
113                     break;
114                 case 1:
115                     gp = m.extract( i );
116                     break;
117                 case 2:
118                     gp = m.extract( val.strVal );
119                     break;
120                 case 3:
121                     gp = m.extract_with( other_item( i.nKey ), other_less());
122                     break;
123                 }
124                 ASSERT_FALSE( !gp );
125                 EXPECT_EQ( gp->first.nKey, i.nKey );
126                 gp.release();
127
128                 gp = m.get( i.nKey );
129                 ASSERT_TRUE( !gp );
130                 gp = m.get( i );
131                 ASSERT_TRUE( !gp );
132                 gp = m.get_with( other_item( i.nKey ), other_less() );
133                 ASSERT_TRUE( !gp );
134             }
135             EXPECT_TRUE( m.empty() );
136             EXPECT_CONTAINER_SIZE( m, 0 );
137         }
138     };
139
140 } // namespace cds_test
141
142 #endif // #ifndef CDSUNIT_MAP_TEST_MICHAEL_ITERABLE_MAP_HP_H