Files
range/test/iterator_range.cpp

143 lines
3.8 KiB
C++
Raw Normal View History

2004-06-29 02:58:13 +00:00
// Boost.Range library
//
2005-12-13 22:50:00 +00:00
// Copyright Thorsten Ottosen & Larry Evans 2003-2005. Use, modification and
2004-06-29 02:58:13 +00:00
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// For more information, see http://www.boost.org/libs/range/
//
2004-07-29 14:20:35 +00:00
2004-07-29 14:45:19 +00:00
#include <boost/detail/workaround.hpp>
2004-07-29 14:20:35 +00:00
2004-07-29 14:28:41 +00:00
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
2004-07-29 14:20:35 +00:00
# pragma warn -8091 // supress warning in Boost.Test
# pragma warn -8057 // unused argument argc/argv in Boost.Test
#endif
2005-02-05 20:07:02 +00:00
2004-06-29 02:58:13 +00:00
#include <boost/range/iterator_range.hpp>
2004-07-27 17:53:15 +00:00
#include <boost/range/functions.hpp>
2004-06-29 02:58:13 +00:00
#include <boost/test/test_tools.hpp>
#include <boost/test/unit_test.hpp>
2004-06-29 02:58:13 +00:00
#include <iostream>
#include <string>
using namespace boost;
using namespace std;
2005-12-13 22:50:00 +00:00
void check_reference_type();
2004-06-29 02:58:13 +00:00
void check_iterator_range()
{
2004-07-28 11:01:10 +00:00
2004-06-29 02:58:13 +00:00
typedef string::iterator iterator;
typedef string::const_iterator const_iterator;
typedef iterator_range<iterator> irange;
typedef iterator_range<const_iterator> cirange;
string str = "hello world";
const string cstr = "const world";
irange r = make_iterator_range( str );
r = make_iterator_range( str.begin(), str.end() );
cirange r2 = make_iterator_range( cstr );
r2 = make_iterator_range( cstr.begin(), cstr.end() );
r2 = make_iterator_range( str );
2004-07-27 17:53:15 +00:00
BOOST_CHECK( !r.empty() );
BOOST_CHECK( !r2.empty() );
2004-08-20 19:26:34 +00:00
//#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
// if( !(bool)r )
// BOOST_CHECK( false );
// if( !(bool)r2 )
// BOOST_CHECK( false );
//#else
2004-06-29 02:58:13 +00:00
if( !r )
BOOST_CHECK( false );
if( !r2 )
BOOST_CHECK( false );
//#endif
2004-06-29 02:58:13 +00:00
2004-07-27 17:53:15 +00:00
BOOST_CHECK_EQUAL( r.size(), size( r ) );
BOOST_CHECK_EQUAL( r2.size(), size( r2 ) );
BOOST_CHECK_EQUAL( distance( r.begin(), r.end() ),
distance( begin( r2 ), end( r2 ) ) );
cout << r << r2;
2004-06-29 02:58:13 +00:00
string res = copy_range<string>( r );
BOOST_CHECK( equal( res.begin(), res.end(), r.begin() ) );
2004-07-27 17:53:15 +00:00
2004-09-10 11:43:36 +00:00
irange rr = make_iterator_range( str );
BOOST_CHECK( rr.equal( r ) );
rr = make_iterator_range( str.begin(), str.begin() + 5 );
BOOST_CHECK( rr == "hello" );
BOOST_CHECK( rr != "hell" );
BOOST_CHECK( rr < "hello dude" );
BOOST_CHECK( "hello" == rr );
BOOST_CHECK( "hell" != rr );
BOOST_CHECK( ! ("hello dude" < rr ) );
irange rrr = rr;
BOOST_CHECK( rrr == rr );
BOOST_CHECK( !( rrr != rr ) );
BOOST_CHECK( !( rrr < rr ) );
2005-02-05 20:07:02 +00:00
const irange cr = make_iterator_range( str );
BOOST_CHECK_EQUAL( cr.front(), 'h' );
BOOST_CHECK_EQUAL( cr.back(), 'd' );
BOOST_CHECK_EQUAL( cr[1], 'e' );
rrr = make_iterator_range( str, 1, -1 );
BOOST_CHECK( rrr == "ello worl" );
rrr = make_iterator_range( rrr, -1, 1 );
BOOST_CHECK( rrr == str );
2005-12-13 22:50:00 +00:00
check_reference_type();
2004-06-29 02:58:13 +00:00
}
2005-02-05 20:07:02 +00:00
using boost::unit_test::test_suite;
2004-06-29 02:58:13 +00:00
test_suite* init_unit_test_suite( int argc, char* argv[] )
{
test_suite* test = BOOST_TEST_SUITE( "Range Test Suite" );
test->add( BOOST_TEST_CASE( &check_iterator_range ) );
return test;
}
2005-12-13 22:50:00 +00:00
//
//
// Check that constness is propgated correct from
// the iterator types.
//
// Test contributed by Larry Evans.
//
template< class Container >
2005-12-13 22:50:57 +00:00
int test_iter_range( Container& a_cont )
2005-12-13 22:50:00 +00:00
{
typedef BOOST_DEDUCED_TYPENAME range_result_iterator<Container>::type citer_type;
typedef iterator_range<citer_type> riter_type;
riter_type a_riter( make_iterator_range( a_cont ) );
a_riter.front();
a_riter.back();
int i = a_riter[0];
2005-12-13 22:50:57 +00:00
return i;
2005-12-13 22:50:00 +00:00
}
void check_reference_type()
{
typedef vector<int> veci_type;
veci_type a_vec;
a_vec.push_back( 999 );
test_iter_range<veci_type>(a_vec);
test_iter_range<veci_type const>(a_vec);
}