Update contrib.
2 // Boost.Pointer Container
4 // Copyright Thorsten Ottosen 2003-2005. Use, modification and
5 // distribution is subject to the Boost Software License, Version
6 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
9 // For more information, see http://www.boost.org/libs/ptr_container/
12 #include <boost/test/unit_test.hpp>
13 #include <boost/archive/text_oarchive.hpp>
14 #include <boost/archive/text_iarchive.hpp>
15 #include <boost/ptr_container/ptr_vector.hpp>
16 #include <boost/ptr_container/ptr_deque.hpp>
17 #include <boost/ptr_container/ptr_list.hpp>
18 #include <boost/ptr_container/ptr_array.hpp>
19 #include <boost/ptr_container/ptr_set.hpp>
20 #include <boost/ptr_container/ptr_map.hpp>
21 #include <boost/serialization/export.hpp>
22 #include <boost/serialization/base_object.hpp>
23 #include <boost/serialization/utility.hpp>
24 #include <boost/serialization/string.hpp>
29 // serialization helper: we can't save a non-const object
32 inline T const& as_const( T const& r )
42 friend class boost::serialization::access;
47 template< class Archive >
48 void serialize( Archive& ar, const unsigned int version )
63 inline bool operator<( const Base& l, const Base& r )
72 template< class Archive >
73 void serialize( Archive& ar, const unsigned int version )
75 ar & boost::serialization::base_object<Base>( *this );
79 Derived() : Base(42), i2(42)
82 explicit Derived( int i2 ) : Base(0), i2(i2)
86 BOOST_CLASS_EXPORT_GUID( Derived, "Derived" )
93 template< class C, class T >
94 void add( C& c, T* r, unsigned n )
96 c.insert( c.end(), r );
99 template< class U, class T >
100 void add( boost::ptr_array<U,2>& c, T* r, unsigned n )
105 template< class Cont >
106 void test_serialization_helper()
109 add( vec, new Base( -1 ), 0u );
110 add( vec, new Derived( 1 ), 1u );
112 std::ofstream ofs("filename");
113 boost::archive::text_oarchive oa(ofs);
119 std::ifstream ifs("filename", std::ios::binary);
120 boost::archive::text_iarchive ia(ifs);
125 BOOST_CHECK_EQUAL( vec.size(), vec2.size() );
126 BOOST_CHECK_EQUAL( (*vec2.begin()).i, -1 );
127 BOOST_CHECK_EQUAL( (*--vec2.end()).i, 0 );
128 typename Cont::iterator i = vec2.end();
130 Derived* d = dynamic_cast<Derived*>( &*i );
131 BOOST_CHECK_EQUAL( d->i2, 1 );
134 template< class Map >
135 void test_serialization_map_helper()
138 std::string key1("key1"), key2("key2");
139 m.insert( key1, new Base( -1 ) );
140 m.insert( key2, new Derived( 1 ) );
141 BOOST_CHECK_EQUAL( m.size(), 2u );
143 std::ofstream ofs("filename");
144 boost::archive::text_oarchive oa(ofs);
150 std::ifstream ifs("filename", std::ios::binary);
151 boost::archive::text_iarchive ia(ifs);
156 BOOST_CHECK_EQUAL( m.size(), m2.size() );
157 BOOST_CHECK_EQUAL( m2.find(key1)->second->i, -1 );
158 BOOST_CHECK_EQUAL( m2.find(key2)->second->i, 0 );
159 typename Map::iterator i = m2.find(key2);
160 Derived* d = dynamic_cast<Derived*>( i->second );
161 BOOST_CHECK_EQUAL( d->i2, 1 );
166 // basic test of hierarchy
168 void test_hierarchy()
170 Base* p = new Derived();
171 std::ofstream ofs("filename");
172 boost::archive::text_oarchive oa(ofs);
178 std::ifstream ifs("filename", std::ios::binary);
179 boost::archive::text_iarchive ia(ifs);
183 BOOST_CHECK_EQUAL( p->i, d->i );
184 BOOST_CHECK( p != d );
185 BOOST_CHECK( dynamic_cast<Derived*>( d ) );
193 void test_serialization()
196 test_serialization_helper< boost::ptr_deque<Base> >();
197 test_serialization_helper< boost::ptr_list<Base> >();
198 test_serialization_helper< boost::ptr_vector<Base> >();
199 test_serialization_helper< boost::ptr_array<Base,2> >();
201 test_serialization_helper< boost::ptr_set<Base> >();
202 test_serialization_helper< boost::ptr_multiset<Base> >();
204 test_serialization_map_helper< boost::ptr_map<std::string,Base> >();
207 // GCC hangs when calling find() on a multimap!
209 //#if !BOOST_WORKAROUND(BOOST_MPL_CFG_GCC, BOOST_TESTED_AT(0x0300))
211 test_serialization_map_helper< boost::ptr_multimap<std::string,Base> >();
218 using boost::unit_test::test_suite;
220 test_suite* init_unit_test_suite( int argc, char* argv[] )
222 test_suite* test = BOOST_TEST_SUITE( "Pointer Container Test Suite" );
224 test->add( BOOST_TEST_CASE( &test_serialization ) );