Removed signal_threaded uRCU
[libcds.git] / test / unit / list / test_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-2017
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_ITERABLE_LIST_HP_H
32 #define CDSUNIT_LIST_TEST_ITERABLE_LIST_HP_H
33
34 #include "test_iterable_list.h"
35
36 namespace cds_test {
37
38     class iterable_list_hp : public iterable_list_test
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::value_type  value_type;
49             typedef typename List::guarded_ptr guarded_ptr;
50             value_type arr[nSize];
51
52             for ( size_t i = 0; i < nSize; ++i ) {
53                 arr[i].nKey = static_cast<int>(i);
54                 arr[i].nVal = arr[i].nKey * 10;
55             }
56             shuffle( arr, arr + nSize );
57
58             ASSERT_TRUE( l.empty());
59             ASSERT_CONTAINER_SIZE( l, 0 );
60
61             guarded_ptr gp;
62             size_t nCount = 0;
63
64             // get() test
65             for ( auto& i : arr ) {
66                 gp = l.get( i.nKey );
67                 EXPECT_TRUE( !gp );
68                 gp = l.get_with( other_item( i.nKey ), other_less());
69                 EXPECT_TRUE( !gp );
70
71                 EXPECT_TRUE( l.insert( i ));
72
73                 gp = l.get( i );
74                 ASSERT_FALSE( !gp );
75                 EXPECT_EQ( gp->nKey, i.nKey );
76                 EXPECT_EQ( gp->nVal, gp->nKey * 10 );
77                 gp->nVal = gp->nKey * 5;
78
79                 gp = l.get_with( other_item( i.nKey ), other_less());
80                 ASSERT_FALSE( !gp );
81                 EXPECT_EQ( gp->nKey, i.nKey );
82                 EXPECT_EQ( gp->nVal, gp->nKey * 5 );
83                 gp->nVal = gp->nKey * 10;
84
85                 ++nCount;
86                 ASSERT_FALSE( l.empty());
87                 ASSERT_CONTAINER_SIZE( l, nCount );
88             }
89
90             ASSERT_FALSE( l.empty());
91             ASSERT_CONTAINER_SIZE( l, nSize );
92
93             // extract() test
94             for ( auto const& i : arr ) {
95                 ASSERT_FALSE( l.empty());
96                 ASSERT_CONTAINER_SIZE( l, nCount );
97                 --nCount;
98
99                 gp = l.get( i );
100                 ASSERT_FALSE( !gp );
101                 EXPECT_EQ( gp->nKey, i.nKey );
102
103                 switch ( i.nKey & 3 ) {
104                     case 0:
105                         gp = l.extract( i );
106                         break;
107                     case 1:
108                         gp = l.extract_with( other_item( i.nKey ), other_less());
109                         break;
110                     default:
111                         gp = l.extract( i.nKey );
112                         break;
113                 }
114                 ASSERT_FALSE( !gp );
115                 EXPECT_EQ( gp->nKey, i.nKey );
116                 EXPECT_EQ( gp->nVal, gp->nKey * 10 );
117
118                 gp = l.get( i.nKey );
119                 EXPECT_FALSE( gp );
120
121                 gp = l.extract( i );
122                 EXPECT_FALSE( gp );
123                 gp = l.extract_with( other_item( i.nKey ), other_less());
124                 EXPECT_FALSE( gp );
125                 gp = l.extract( i.nKey );
126                 EXPECT_FALSE( gp );
127             }
128
129             ASSERT_TRUE( l.empty());
130             ASSERT_CONTAINER_SIZE( l, 0 );
131         }
132     };
133
134 } // namespace cds_list
135
136 #endif // CDSUNIT_LIST_TEST_ITERABLE_LIST_HP_H