Moved queue unit test to gtest framework
[libcds.git] / test / unit / queue / optimistic_queue_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_generic_queue.h"
32
33 #include <cds/gc/hp.h>
34 #include <cds/container/optimistic_queue.h>
35
36 namespace {
37     namespace cc = cds::container;
38     typedef cds::gc::HP gc_type;
39
40
41     class OPtimisticQueue_HP : public cds_test::generic_queue
42     {
43     protected:
44         void SetUp()
45         {
46             typedef cc::OptimisticQueue< gc_type, int > queue_type;
47
48             cds::gc::hp::GarbageCollector::Construct( queue_type::c_nHazardPtrCount, 1, 16 );
49             cds::threading::Manager::attachThread();
50         }
51
52         void TearDown()
53         {
54             cds::threading::Manager::detachThread();
55             cds::gc::hp::GarbageCollector::Destruct( true );
56         }
57     };
58
59     TEST_F( OPtimisticQueue_HP, defaulted )
60     {
61         typedef cds::container::OptimisticQueue< gc_type, int > test_queue;
62
63         test_queue q;
64         test(q);
65     }
66
67     TEST_F( OPtimisticQueue_HP, item_counting )
68     {
69         typedef cds::container::OptimisticQueue < gc_type, int,
70             typename cds::container::optimistic_queue::make_traits <
71                 cds::opt::item_counter < cds::atomicity::item_counter >
72             > ::type
73         > test_queue;
74
75         test_queue q;
76         test( q );
77     }
78
79     TEST_F( OPtimisticQueue_HP, relaxed )
80     {
81         typedef cds::container::OptimisticQueue < gc_type, int,
82             typename cds::container::optimistic_queue::make_traits <
83                 cds::opt::item_counter< cds::atomicity::item_counter >
84                 , cds::opt::memory_model < cds::opt::v::relaxed_ordering >
85             > ::type
86         > test_queue;
87
88         test_queue q;
89         test( q );
90     }
91
92     TEST_F( OPtimisticQueue_HP, aligned )
93     {
94         typedef cds::container::OptimisticQueue < gc_type, int,
95             typename cds::container::optimistic_queue::make_traits <
96                 cds::opt::memory_model< cds::opt::v::relaxed_ordering>
97                 , cds::opt::padding < 32 >
98             >::type
99         > test_queue;
100
101         test_queue q;
102         test( q );
103     }
104
105     TEST_F( OPtimisticQueue_HP, seq_cst )
106     {
107         struct traits : public cc::optimistic_queue::traits
108         {
109             typedef cds::opt::v::sequential_consistent memory_model;
110             typedef cds::atomicity::item_counter item_counter;
111             enum { padding = 64 };
112         };
113         typedef cds::container::OptimisticQueue < gc_type, int, traits > test_queue;
114
115         test_queue q;
116         test( q );
117     }
118
119     TEST_F( OPtimisticQueue_HP, move )
120     {
121         typedef cds::container::OptimisticQueue< gc_type, std::string > test_queue;
122
123         test_queue q;
124         test_string( q );
125     }
126
127     TEST_F( OPtimisticQueue_HP, move_item_counting )
128     {
129         struct traits : public cc::optimistic_queue::traits
130         {
131             typedef cds::atomicity::item_counter item_counter;
132         };
133         typedef cds::container::OptimisticQueue< gc_type, std::string, traits > test_queue;
134
135         test_queue q;
136         test_string( q );
137     }
138
139 } // namespace
140