Migrated SkipListSet unit test to gtest
[libcds.git] / test / unit / set / skiplist_hp.cpp
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 #include "test_set_hp.h"
32
33 #include <cds/container/skip_list_set_hp.h>
34
35 namespace {
36     namespace cc = cds::container;
37     typedef cds::gc::HP gc_type;
38
39     class SkipListSet_HP : public cds_test::container_set_hp
40     {
41     protected:
42         typedef cds_test::container_set_hp base_class;
43
44         void SetUp()
45         {
46             struct set_traits: public cc::skip_list::traits
47             {
48                 typedef cmp compare;
49             };
50             typedef cc::SkipListSet< gc_type, int_item > set_type;
51
52             // +1 - for guarded_ptr
53             cds::gc::hp::GarbageCollector::Construct( set_type::c_nHazardPtrCount + 1, 1, 16 );
54             cds::threading::Manager::attachThread();
55         }
56
57         void TearDown()
58         {
59             cds::threading::Manager::detachThread();
60             cds::gc::hp::GarbageCollector::Destruct( true );
61         }
62     };
63
64     TEST_F( SkipListSet_HP, compare )
65     {
66         typedef cc::SkipListSet< gc_type, int_item,
67             typename cc::skip_list::make_traits<
68                 cds::opt::compare< cmp >
69             >::type
70         > set_type;
71
72         set_type s;
73         test( s );
74     }
75
76     TEST_F( SkipListSet_HP, less )
77     {
78         typedef cc::SkipListSet< gc_type, int_item,
79             typename cc::skip_list::make_traits<
80                 cds::opt::less< base_class::less >
81             >::type
82         > set_type;
83
84         set_type s;
85         test( s );
86     }
87
88     TEST_F( SkipListSet_HP, cmpmix )
89     {
90         typedef cc::SkipListSet< gc_type, int_item,
91             typename cc::skip_list::make_traits<
92                 cds::opt::less< base_class::less >
93                 ,cds::opt::compare< cmp >
94             >::type
95         > set_type;
96
97         set_type s;
98         test( s );
99     }
100
101     TEST_F( SkipListSet_HP, item_counting )
102     {
103         struct set_traits: public cc::skip_list::traits
104         {
105             typedef cmp compare;
106             typedef base_class::less less;
107             typedef cds::atomicity::item_counter item_counter;
108         };
109         typedef cc::SkipListSet< gc_type, int_item, set_traits >set_type;
110
111         set_type s;
112         test( s );
113     }
114
115     TEST_F( SkipListSet_HP, backoff )
116     {
117         struct set_traits: public cc::skip_list::traits
118         {
119             typedef cmp compare;
120             typedef base_class::less less;
121             typedef cds::atomicity::item_counter item_counter;
122             typedef cds::backoff::yield back_off;
123         };
124         typedef cc::SkipListSet< gc_type, int_item, set_traits >set_type;
125
126         set_type s;
127         test( s );
128     }
129
130     TEST_F( SkipListSet_HP, stat )
131     {
132         struct set_traits: public cc::skip_list::traits
133         {
134             typedef cmp compare;
135             typedef base_class::less less;
136             typedef cds::atomicity::item_counter item_counter;
137             typedef cds::backoff::yield back_off;
138             typedef cc::skip_list::stat<> stat;
139         };
140         typedef cc::SkipListSet< gc_type, int_item, set_traits >set_type;
141
142         set_type s;
143         test( s );
144     }
145
146     TEST_F( SkipListSet_HP, random_level_generator )
147     {
148         struct set_traits: public cc::skip_list::traits
149         {
150             typedef cmp compare;
151             typedef base_class::less less;
152             typedef cds::atomicity::item_counter item_counter;
153             typedef cc::skip_list::stat<> stat;
154             typedef cc::skip_list::xorshift random_level_generator;
155         };
156         typedef cc::SkipListSet< gc_type, int_item, set_traits >set_type;
157
158         set_type s;
159         test( s );
160     }
161
162 } // namespace