Migrated SplitListSet unit tests o gtest framework
[libcds.git] / test / unit / set / test_split_michael_rcu.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 #ifndef CDSUNIT_SET_TEST_SPLIT_LIST_MICHAEL_RCU_H
31 #define CDSUNIT_SET_TEST_SPLIT_LIST_MICHAEL_RCU_H
32
33 #include "test_set_rcu.h"
34 #include <cds/container/michael_list_rcu.h>
35 #include <cds/container/split_list_set_rcu.h>
36
37 namespace cc = cds::container;
38
39 template <class RCU>
40 class SplitListMichaelSet: public cds_test::container_set_rcu
41 {
42     typedef cds_test::container_set_rcu base_class;
43 public:
44     typedef cds::urcu::gc<RCU> rcu_type;
45
46 protected:
47     void SetUp()
48     {
49         RCU::Construct();
50         cds::threading::Manager::attachThread();
51     }
52
53     void TearDown()
54     {
55         cds::threading::Manager::detachThread();
56         RCU::Destruct();
57     }
58 };
59
60 TYPED_TEST_CASE_P( SplitListMichaelSet );
61
62 //TYPED_TEST_P( SplitListMichaelSet, compare )
63 TYPED_TEST_P( SplitListMichaelSet, compare )
64 {
65     typedef typename TestFixture::rcu_type rcu_type;
66     typedef typename TestFixture::int_item int_item;
67     typedef typename TestFixture::hash_int hash_int;
68
69     typedef cc::SplitListSet< rcu_type, int_item, 
70         typename cc::split_list::make_traits<
71             cc::split_list::ordered_list< cc::michael_list_tag >
72             , cds::opt::hash< hash_int >
73             , cc::split_list::ordered_list_traits< 
74                 typename cc::michael_list::make_traits<
75                     cds::opt::compare< typename TestFixture::cmp >
76                 >::type
77             >
78         >::type
79     > set_type;
80
81     set_type s;
82     this->test( s );
83 }
84
85 TYPED_TEST_P( SplitListMichaelSet, less )
86 {
87     typedef typename TestFixture::rcu_type rcu_type;
88     typedef typename TestFixture::int_item int_item;
89     typedef typename TestFixture::hash_int hash_int;
90
91     typedef cc::SplitListSet< rcu_type, int_item,
92         typename cc::split_list::make_traits<
93             cc::split_list::ordered_list< cc::michael_list_tag >
94             , cds::opt::hash< hash_int >
95             , cc::split_list::ordered_list_traits< 
96                 typename cc::michael_list::make_traits<
97                     cds::opt::less< typename TestFixture::less >
98                 >::type
99             >
100         >::type
101     > set_type;
102
103     set_type s;
104     this->test( s );
105 }
106
107 TYPED_TEST_P( SplitListMichaelSet, cmpmix )
108 {
109     typedef typename TestFixture::rcu_type rcu_type;
110     typedef typename TestFixture::int_item int_item;
111     typedef typename TestFixture::hash_int hash_int;
112
113     typedef cc::SplitListSet< rcu_type, int_item,
114         typename cc::split_list::make_traits<
115             cc::split_list::ordered_list< cc::michael_list_tag >
116             , cds::opt::hash< hash_int >
117             , cc::split_list::ordered_list_traits< 
118                 typename cc::michael_list::make_traits<
119                     cds::opt::less< typename TestFixture::less >
120                     , cds::opt::compare< typename TestFixture::cmp >
121                 >::type
122             >
123         >::type
124     > set_type;
125
126     set_type s;
127     this->test( s );
128 }
129
130 TYPED_TEST_P( SplitListMichaelSet, item_counting )
131 {
132     typedef typename TestFixture::rcu_type rcu_type;
133     typedef typename TestFixture::int_item int_item;
134     typedef typename TestFixture::hash_int hash_int;
135
136     struct set_traits: public cc::split_list::traits
137     {
138         typedef cc::michael_list_tag ordered_list;
139         typedef hash_int hash;
140         typedef cds::atomicity::item_counter item_counter;
141
142         struct ordered_list_traits: public cc::michael_list::traits
143         {
144             typedef typename TestFixture::cmp compare;
145             typedef typename TestFixture::less less;
146             typedef cds::backoff::empty back_off;
147         };
148     };
149     typedef cc::SplitListSet< rcu_type, int_item, set_traits > set_type;
150
151     set_type s;
152     this->test( s );
153 }
154
155 TYPED_TEST_P( SplitListMichaelSet, stat )
156 {
157     typedef typename TestFixture::rcu_type rcu_type;
158     typedef typename TestFixture::int_item int_item;
159     typedef typename TestFixture::hash_int hash_int;
160
161     struct set_traits: public cc::split_list::traits
162     {
163         typedef cc::michael_list_tag ordered_list;
164         typedef hash_int hash;
165         typedef cds::atomicity::item_counter item_counter;
166         typedef cc::split_list::stat<> stat;
167
168         struct ordered_list_traits: public cc::michael_list::traits
169         {
170             typedef typename TestFixture::less less;
171             typedef cds::opt::v::sequential_consistent memory_model;
172         };
173     };
174     typedef cc::SplitListSet< rcu_type, int_item, set_traits > set_type;
175
176     set_type s;
177     this->test( s );
178 }
179
180 TYPED_TEST_P( SplitListMichaelSet, back_off )
181 {
182     typedef typename TestFixture::rcu_type rcu_type;
183     typedef typename TestFixture::int_item int_item;
184     typedef typename TestFixture::hash_int hash_int;
185
186     struct set_traits: public cc::split_list::traits
187     {
188         typedef cc::michael_list_tag ordered_list;
189         typedef hash_int hash;
190         typedef cds::atomicity::item_counter item_counter;
191         typedef cds::backoff::yield back_off;
192         typedef cds::opt::v::sequential_consistent memory_model;
193
194         struct ordered_list_traits: public cc::michael_list::traits
195         {
196             typedef typename TestFixture::cmp compare;
197             typedef cds::backoff::pause back_off;
198         };
199     };
200     typedef cc::SplitListSet< rcu_type, int_item, set_traits > set_type;
201
202     set_type s;
203     this->test( s );
204 }
205
206
207 // GCC 5: All this->test names should be written on single line, otherwise a runtime error will be encountered like as
208 // "No this->test named <test_name> can be found in this this->test case"
209 REGISTER_TYPED_TEST_CASE_P( SplitListMichaelSet,
210     compare, less, cmpmix, item_counting, stat, back_off
211 );
212
213
214 #endif // CDSUNIT_SET_TEST_SPLIT_LIST_MICHAEL_RCU_H
215