Moved queue unit tests to gtest framework
[libcds.git] / tests / test-hdr / queue / hdr_intrusive_fcqueue.cpp
diff --git a/tests/test-hdr/queue/hdr_intrusive_fcqueue.cpp b/tests/test-hdr/queue/hdr_intrusive_fcqueue.cpp
deleted file mode 100644 (file)
index 7ec8c5f..0000000
+++ /dev/null
@@ -1,327 +0,0 @@
-/*
-    This file is a part of libcds - Concurrent Data Structures library
-
-    (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
-
-    Source code repo: http://github.com/khizmax/libcds/
-    Download: http://sourceforge.net/projects/libcds/files/
-    
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions are met:
-
-    * Redistributions of source code must retain the above copyright notice, this
-      list of conditions and the following disclaimer.
-
-    * Redistributions in binary form must reproduce the above copyright notice,
-      this list of conditions and the following disclaimer in the documentation
-      and/or other materials provided with the distribution.
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
-*/
-
-#include "cppunit/cppunit_proxy.h"
-#include <cds/intrusive/fcqueue.h>
-
-namespace queue {
-
-    class TestIntrusiveFCQueue: public CppUnitMini::TestCase
-    {
-        template <typename Hook>
-        struct base_hook_item: public Hook
-        {
-            int nVal;
-            int nDisposeCount;
-
-            base_hook_item()
-                : nDisposeCount(0)
-            {}
-        };
-
-        template <typename Hook>
-        struct member_hook_item
-        {
-            int nVal;
-            int nDisposeCount;
-            Hook hMember;
-
-            member_hook_item()
-                : nDisposeCount(0)
-            {}
-        };
-
-        struct disposer
-        {
-            template <typename T>
-            void operator ()( T * p )
-            {
-                ++p->nDisposeCount;
-            }
-        };
-
-        template <typename Queue>
-        void test()
-        {
-            Queue q;
-            test_with(q);
-        }
-
-        template <class Queue>
-        void test_with( Queue& q )
-        {
-            typedef typename Queue::value_type value_type;
-            value_type v1, v2, v3;
-            CPPUNIT_ASSERT( q.empty() );
-
-            v1.nVal = 1;
-            v2.nVal = 2;
-            v3.nVal = 3;
-            CPPUNIT_ASSERT( q.push(v1));
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_ASSERT( q.push(v2));
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_ASSERT( q.push(v3));
-            CPPUNIT_ASSERT( !q.empty() );
-
-            CPPUNIT_CHECK( v1.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 0 );
-
-            value_type * pv;
-            pv = q.pop();
-            CPPUNIT_ASSERT( pv != nullptr );
-            CPPUNIT_ASSERT( pv->nVal == 1 );
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_CHECK( v1.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 0 );
-
-            pv = q.pop();
-            CPPUNIT_ASSERT( pv != nullptr );
-            CPPUNIT_ASSERT( pv->nVal == 2 );
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_CHECK( v1.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 0 );
-
-            pv = q.dequeue();
-            CPPUNIT_ASSERT( pv != nullptr );
-            CPPUNIT_ASSERT( pv->nVal == 3 );
-            CPPUNIT_ASSERT( q.empty() );
-            CPPUNIT_CHECK( v1.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 0 );
-
-            pv = q.dequeue();
-            CPPUNIT_ASSERT( pv == nullptr );
-            CPPUNIT_CHECK( v1.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 0 );
-
-            CPPUNIT_ASSERT( q.enqueue(v1));
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_ASSERT( q.enqueue(v2));
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_ASSERT( q.enqueue(v3));
-            CPPUNIT_ASSERT( !q.empty() );
-
-            CPPUNIT_CHECK( v1.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 0 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 0 );
-            q.clear( true );    // call disposer
-            CPPUNIT_CHECK( q.empty() );
-            CPPUNIT_CHECK( v1.nDisposeCount == 1 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 1 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 1 );
-
-            CPPUNIT_ASSERT( q.push(v1));
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_ASSERT( q.push(v2));
-            CPPUNIT_ASSERT( !q.empty() );
-            CPPUNIT_ASSERT( q.push(v3));
-            CPPUNIT_ASSERT( !q.empty() );
-            q.clear( false );   // no disposer called
-            CPPUNIT_CHECK( q.empty() );
-            CPPUNIT_CHECK( v1.nDisposeCount == 1 );
-            CPPUNIT_CHECK( v2.nDisposeCount == 1 );
-            CPPUNIT_CHECK( v3.nDisposeCount == 1 );
-        }
-
-        void FCQueue_base();
-        void FCQueue_base_stat();
-        void FCQueue_base_elimination();
-        void FCQueue_base_elimination_mutex();
-        void FCQueue_base_seqcst();
-        void FCQueue_member();
-        void FCQueue_member_stat();
-        void FCQueue_member_elimination();
-        void FCQueue_member_elimination_mutex();
-        void FCQueue_member_seqcst();
-
-        CPPUNIT_TEST_SUITE(TestIntrusiveFCQueue)
-            CPPUNIT_TEST(FCQueue_base)
-            CPPUNIT_TEST(FCQueue_base_stat)
-            CPPUNIT_TEST(FCQueue_base_elimination)
-            CPPUNIT_TEST(FCQueue_base_elimination_mutex)
-            CPPUNIT_TEST(FCQueue_base_seqcst)
-            CPPUNIT_TEST(FCQueue_member)
-            CPPUNIT_TEST(FCQueue_member_stat)
-            CPPUNIT_TEST(FCQueue_member_elimination)
-            CPPUNIT_TEST(FCQueue_member_elimination_mutex)
-            CPPUNIT_TEST(FCQueue_member_seqcst)
-        CPPUNIT_TEST_SUITE_END()
-    };
-
-
-    void TestIntrusiveFCQueue::FCQueue_base()
-    {
-        typedef base_hook_item< boost::intrusive::list_base_hook<> > value_type;
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_base_stat()
-    {
-        typedef base_hook_item< boost::intrusive::list_base_hook<> > value_type;
-        struct queue_traits : public cds::intrusive::fcqueue::traits
-        {
-            typedef TestIntrusiveFCQueue::disposer disposer;
-            typedef cds::intrusive::fcqueue::stat<> stat;
-        };
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type >, queue_traits > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_base_elimination()
-    {
-        typedef base_hook_item< boost::intrusive::list_base_hook<> > value_type;
-        struct queue_traits : public
-            cds::intrusive::fcqueue::make_traits <
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::enable_elimination < true >
-            > ::type
-        {};
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type >, queue_traits > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_base_elimination_mutex()
-    {
-        typedef base_hook_item< boost::intrusive::list_base_hook<> > value_type;
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::enable_elimination< true >
-                ,cds::opt::lock_type< std::mutex >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_base_seqcst()
-    {
-        typedef base_hook_item< boost::intrusive::list_base_hook<> > value_type;
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::memory_model< cds::opt::v::sequential_consistent >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_member()
-    {
-        typedef member_hook_item< boost::intrusive::list_member_hook<> > value_type;
-        typedef boost::intrusive::member_hook<value_type, boost::intrusive::list_member_hook<>, &value_type::hMember> member_option;
-
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type, member_option >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_member_stat()
-    {
-        typedef member_hook_item< boost::intrusive::list_member_hook<> > value_type;
-        typedef boost::intrusive::member_hook<value_type, boost::intrusive::list_member_hook<>, &value_type::hMember> member_option;
-
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type, member_option >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::stat< cds::intrusive::fcqueue::stat<> >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_member_elimination()
-    {
-        typedef member_hook_item< boost::intrusive::list_member_hook<> > value_type;
-        typedef boost::intrusive::member_hook<value_type, boost::intrusive::list_member_hook<>, &value_type::hMember> member_option;
-
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type, member_option >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::enable_elimination< true >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_member_elimination_mutex()
-    {
-        typedef member_hook_item< boost::intrusive::list_member_hook<> > value_type;
-        typedef boost::intrusive::member_hook<value_type, boost::intrusive::list_member_hook<>, &value_type::hMember> member_option;
-
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type, member_option >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::enable_elimination< true >
-                ,cds::opt::lock_type< std::mutex >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-    void TestIntrusiveFCQueue::FCQueue_member_seqcst()
-    {
-        typedef member_hook_item< boost::intrusive::list_member_hook<> > value_type;
-        typedef boost::intrusive::member_hook<value_type, boost::intrusive::list_member_hook<>, &value_type::hMember> member_option;
-
-        typedef cds::intrusive::FCQueue< value_type, boost::intrusive::list< value_type, member_option >,
-            cds::intrusive::fcqueue::make_traits<
-                cds::intrusive::opt::disposer< disposer >
-                ,cds::opt::memory_model< cds::opt::v::sequential_consistent >
-            >::type
-        > queue_type;
-
-        test<queue_type>();
-    }
-
-} // namespace queue
-
-CPPUNIT_TEST_SUITE_REGISTRATION(queue::TestIntrusiveFCQueue);