Removed redundant spaces
[libcds.git] / test / unit / list / test_kv_iterable_list_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_LIST_TEST_KV_ITERABLE_LIST_HP_H
32 #define CDSUNIT_LIST_TEST_KV_ITERABLE_LIST_HP_H
33
34 #include "test_kv_iterable_list.h"
35
36 namespace cds_test {
37
38     class kv_iterable_list_hp : public kv_iterable_list
39     {
40     protected:
41         template <typename List>
42         void test_hp( List& l )
43         {
44             // Precondition: list is empty
45             // Postcondition: list is empty
46
47             static const size_t nSize = 20;
48             typedef typename List::guarded_ptr guarded_ptr;
49
50             struct key_val {
51                 int key;
52                 int val;
53             };
54             key_val arr[nSize];
55
56             for ( size_t i = 0; i < nSize; ++i ) {
57                 arr[i].key = static_cast<int>(i);
58                 arr[i].val = arr[i].key * 10;
59             }
60             shuffle( arr, arr + nSize );
61
62             ASSERT_TRUE( l.empty());
63             ASSERT_CONTAINER_SIZE( l, 0 );
64
65             guarded_ptr gp;
66             size_t nCount = 0;
67
68             // get() test
69             for ( auto& i : arr ) {
70                 gp = l.get( i.key );
71                 EXPECT_TRUE( !gp );
72                 gp = l.get_with( other_key( i.key ), other_less());
73                 EXPECT_TRUE( !gp );
74
75                 EXPECT_TRUE( l.insert( i.key, i.val ));
76
77                 gp = l.get( i.key );
78                 ASSERT_FALSE( !gp );
79                 EXPECT_EQ( gp->first.nKey, i.key );
80                 EXPECT_EQ( gp->second.val, gp->first.nKey * 10 );
81                 gp->second.val = gp->first.nKey * 5;
82
83                 gp = l.get_with( other_key( i.key ), other_less());
84                 ASSERT_FALSE( !gp );
85                 EXPECT_EQ( gp->first.nKey, i.key );
86                 EXPECT_EQ( gp->second.val, gp->first.nKey * 5 );
87                 gp->second.val = gp->first.nKey * 10;
88
89                 ++nCount;
90                 ASSERT_FALSE( l.empty());
91                 ASSERT_CONTAINER_SIZE( l, nCount );
92             }
93
94             ASSERT_FALSE( l.empty());
95             ASSERT_CONTAINER_SIZE( l, nSize );
96
97             // extract() test
98             for ( auto const& i : arr ) {
99                 ASSERT_FALSE( l.empty());
100                 ASSERT_CONTAINER_SIZE( l, nCount );
101                 --nCount;
102
103                 gp = l.get( i.key );
104                 ASSERT_FALSE( !gp );
105                 EXPECT_EQ( gp->first.nKey, i.key );
106
107                 switch ( i.key & 1 ) {
108                     case 0:
109                         gp = l.extract( i.key );
110                         break;
111                     case 1:
112                         gp = l.extract_with( other_key( i.key ), other_less());
113                         break;
114                 }
115                 ASSERT_FALSE( !gp );
116                 EXPECT_EQ( gp->first.nKey, i.key );
117                 EXPECT_EQ( gp->second.val, gp->first.nKey * 10 );
118
119                 gp = l.get( i.key );
120                 EXPECT_FALSE( gp );
121
122                 gp = l.extract( i.key );
123                 EXPECT_FALSE( gp );
124                 gp = l.extract_with( other_key( i.key ), other_less());
125                 EXPECT_FALSE( gp );
126             }
127
128             ASSERT_TRUE( l.empty());
129             ASSERT_CONTAINER_SIZE( l, 0 );
130         }
131     };
132
133 } // namespace cds_list
134
135 #endif // CDSUNIT_LIST_TEST_KV_ITERABLE_LIST_HP_H