Files
coroutine/test/test_coroutine.cpp
Oliver Kowalke 3d578a9525 coroutine: initial commit
[SVN r81511]
2012-11-24 19:42:09 +00:00

495 lines
11 KiB
C++

// Copyright Oliver Kowalke 2009.
// Distributed under 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)
#include <algorithm>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <string>
#include <vector>
#include <cstdio>
#include <boost/assert.hpp>
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
#include <boost/move/move.hpp>
#include <boost/range.hpp>
#include <boost/ref.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/utility.hpp>
#include <boost/coroutine/all.hpp>
namespace coro = boost::coroutines;
int value1 = 0;
std::string value2 = "";
bool value3 = false;
typedef coro::coroutine< void() > coro_void_void;
typedef coro::coroutine< int() > coro_int_void;
typedef coro::coroutine< std::string() > coro_string_void;
typedef coro::coroutine< void(int) > coro_void_int;
typedef coro::coroutine< void(std::string const&) > coro_void_string;
typedef coro::coroutine< double(double,double) > coro_double;
typedef coro::coroutine< int(int,int) > coro_int;
typedef coro::coroutine< int(int) > coro_int_int;
typedef coro::coroutine< int*(int*) > coro_ptr;
typedef coro::coroutine< int const&(int const&) > coro_ref;
typedef coro::coroutine< boost::tuple<int&,int&>(int&,int&) > coro_tuple;
struct X : private boost::noncopyable
{
X() { value1 = 7; }
~X() { value1 = 0; }
};
class copyable
{
public:
bool state;
copyable() :
state( false)
{}
copyable( int) :
state( true)
{}
void operator()( coro_int_void::caller_type &)
{ value3 = state; }
};
class moveable
{
private:
BOOST_MOVABLE_BUT_NOT_COPYABLE( moveable);
public:
bool state;
moveable() :
state( false)
{}
moveable( int) :
state( true)
{}
moveable( BOOST_RV_REF( moveable) other) :
state( false)
{ std::swap( state, other.state); }
moveable & operator=( BOOST_RV_REF( moveable) other)
{
if ( this == & other) return * this;
moveable tmp( boost::move( other) );
std::swap( state, tmp.state);
return * this;
}
void operator()( coro_int_void::caller_type &)
{ value3 = state; }
};
struct my_exception {};
void f1( coro_void_void::caller_type & s)
{ s(); }
void f2( coro_void_void::caller_type &)
{ ++value1; }
void f3( coro_void_void::caller_type & self)
{
++value1;
self();
++value1;
}
void f4( coro_int_void::caller_type & self)
{
self( 3);
self( 7);
}
void f5( coro_string_void::caller_type & self)
{
std::string res("abc");
self( res);
res = "xyz";
self( res);
}
void f6( coro_void_int::caller_type & self)
{ value1 = self.get(); }
void f7( coro_void_string::caller_type & self)
{ value2 = self.get(); }
void f8( coro_double::caller_type & self)
{
double x = 0, y = 0;
boost::tie( x, y) = self.get();
self( x + y);
boost::tie( x, y) = self.get();
self( x + y);
}
void f9( coro_ptr::caller_type & self)
{ self( self.get() ); }
void f10( coro_ref::caller_type & self)
{ self( self.get() ); }
void f11( coro_tuple::caller_type & self)
{
boost::tuple<int&,int&> tpl( self.get().get< 0 >(), self.get().get< 1 >() );
self( tpl);
}
void f12( coro_int::caller_type & self)
{
X x_;
int x, y;
boost::tie( x, y) = self.get();
self( x +y);
boost::tie( x, y) = self.get();
self( x +y);
}
template< typename E >
void f14( coro_void_void::caller_type & self, E const& e)
{ throw e; }
void f16( coro_int_void::caller_type & self)
{
self( 1);
self( 2);
self( 3);
self( 4);
self( 5);
}
void f17( coro_void_int::caller_type & self, std::vector< int > & vec)
{
int x = self.get();
while ( 5 > x)
{
vec.push_back( x);
x = self().get();
}
}
void f18( coro_int_int::caller_type & self)
{
if ( self.has_result() )
{
int x = self.get();
self( x + 1);
}
else
{
self( -1);
}
}
void test_move()
{
{
coro_void_void coro1;
coro_void_void coro2( f1);
BOOST_CHECK( ! coro1);
BOOST_CHECK( coro1.empty() );
BOOST_CHECK( coro2);
BOOST_CHECK( ! coro2.empty() );
coro1 = boost::move( coro2);
BOOST_CHECK( coro1);
BOOST_CHECK( ! coro1.empty() );
BOOST_CHECK( ! coro2);
BOOST_CHECK( coro2.empty() );
}
{
value3 = false;
copyable cp( 3);
BOOST_CHECK( cp.state);
BOOST_CHECK( ! value3);
coro_int_void coro( cp);
BOOST_CHECK( cp.state);
BOOST_CHECK( value3);
}
{
value3 = false;
moveable mv( 7);
BOOST_CHECK( mv.state);
BOOST_CHECK( ! value3);
coro_int_void coro( boost::move( mv) );
BOOST_CHECK( ! mv.state);
BOOST_CHECK( value3);
}
}
void test_complete()
{
value1 = 0;
coro_void_void coro( f2);
BOOST_CHECK( ! coro);
BOOST_CHECK_EQUAL( ( int)1, value1);
}
void test_jump()
{
value1 = 0;
coro_void_void coro( f3);
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( ( int)1, value1);
coro();
BOOST_CHECK( ! coro);
BOOST_CHECK_EQUAL( ( int)2, value1);
}
void test_result_int()
{
coro_int_void coro( f4);
BOOST_CHECK( coro);
int result = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( 3, result);
result = coro().get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( 7, result);
coro();
BOOST_CHECK( ! coro);
}
void test_result_string()
{
coro_string_void coro( f5);
BOOST_CHECK( coro);
std::string result = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( std::string("abc"), result);
result = coro().get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( std::string("xyz"), result);
coro();
BOOST_CHECK( ! coro);
}
void test_arg_int()
{
value1 = 0;
coro_void_int coro( f6, 3);
BOOST_CHECK( ! coro);
BOOST_CHECK_EQUAL( 3, value1);
}
void test_arg_string()
{
value2 = "";
coro_void_string coro( f7, std::string("abc") );
BOOST_CHECK( ! coro);
BOOST_CHECK_EQUAL( std::string("abc"), value2);
}
void test_fp()
{
coro_double coro( f8, coro_double::arguments( 7.35, 3.14) );
BOOST_CHECK( coro);
double res = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( ( double) 10.49, res);
res = coro( 1.15, 3.14).get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( ( double) 4.29, res);
coro( 1.15, 3.14);
BOOST_CHECK( ! coro);
}
void test_ptr()
{
int a = 3;
coro_ptr coro( f9, & a);
BOOST_CHECK( coro);
int * res = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( & a, res);
coro( & a);
BOOST_CHECK( ! coro);
}
void test_ref()
{
int a = 3;
coro_ref coro( f10, a);
BOOST_CHECK( coro);
int const& res = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( & a, & res);
coro( a);
BOOST_CHECK( ! coro);
}
void test_tuple()
{
int a = 3, b = 7;
coro_tuple coro( f11, coro_tuple::arguments( a, b) );
BOOST_CHECK( coro);
boost::tuple<int&,int&> tpl = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( & a, & tpl.get< 0 >() );
BOOST_CHECK_EQUAL( & b, & tpl.get< 1 >() );
coro( a, b);
BOOST_CHECK( ! coro);
}
void test_unwind()
{
value1 = 0;
{
BOOST_CHECK_EQUAL( ( int) 0, value1);
coro_int coro( f12, coro_int::arguments( 3, 7) );
BOOST_CHECK( coro);
int res = coro.get();
BOOST_CHECK_EQUAL( ( int) 7, value1);
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( ( int) 10, res);
}
BOOST_CHECK_EQUAL( ( int) 0, value1);
}
void test_no_unwind()
{
value1 = 0;
{
BOOST_CHECK_EQUAL( ( int) 0, value1);
coro_int coro(
f12,
coro_int::arguments( 3, 7),
coro::attributes(
coro::stack_allocator::default_stacksize(),
coro::no_stack_unwind) );
BOOST_CHECK( coro);
int res = coro.get();
BOOST_CHECK( coro);
BOOST_CHECK_EQUAL( ( int) 10, res);
}
BOOST_CHECK_EQUAL( ( int) 7, value1);
}
void test_exceptions()
{
bool thrown = false;
std::runtime_error ex("abc");
try
{
coro_void_void coro( boost::bind( f14< std::runtime_error >, _1, ex) );
BOOST_CHECK( ! coro);
BOOST_CHECK( false);
}
catch ( std::runtime_error const&)
{ thrown = true; }
catch ( std::exception const&)
{}
catch (...)
{}
BOOST_CHECK( thrown);
}
void test_output_iterator()
{
std::vector< int > vec;
coro_int_void coro( f16);
BOOST_FOREACH( int i, coro)
{ vec.push_back( i); }
BOOST_CHECK_EQUAL( ( std::size_t)5, vec.size() );
BOOST_CHECK_EQUAL( ( int)1, vec[0] );
BOOST_CHECK_EQUAL( ( int)2, vec[1] );
BOOST_CHECK_EQUAL( ( int)3, vec[2] );
BOOST_CHECK_EQUAL( ( int)4, vec[3] );
BOOST_CHECK_EQUAL( ( int)5, vec[4] );
}
void test_input_iterator()
{
int counter = 0;
std::vector< int > vec;
coro_void_int coro(
boost::bind( f17, _1, boost::ref( vec) ),
counter);
coro_void_int::iterator e( boost::end( coro) );
for ( coro_void_int::iterator i( boost::begin( coro) );
i != e; ++i)
{
i = ++counter;
}
BOOST_CHECK_EQUAL( ( std::size_t)5, vec.size() );
BOOST_CHECK_EQUAL( ( int)0, vec[0] );
BOOST_CHECK_EQUAL( ( int)1, vec[1] );
BOOST_CHECK_EQUAL( ( int)2, vec[2] );
BOOST_CHECK_EQUAL( ( int)3, vec[3] );
BOOST_CHECK_EQUAL( ( int)4, vec[4] );
}
void test_pre()
{
coro_int_int coro( f18, 0);
BOOST_CHECK( coro);
int res = coro.get();
BOOST_CHECK_EQUAL( ( int) 1, res);
BOOST_CHECK( coro);
coro( -1);
BOOST_CHECK( ! coro);
}
void test_post()
{
coro_int_int coro( f18);
BOOST_CHECK( coro);
int res = coro.get();
BOOST_CHECK_EQUAL( ( int) -1, res);
BOOST_CHECK( coro);
coro( -1);
BOOST_CHECK( ! coro);
}
boost::unit_test::test_suite * init_unit_test_suite( int, char* [])
{
boost::unit_test::test_suite * test =
BOOST_TEST_SUITE("Boost.coroutine: coroutine test suite");
test->add( BOOST_TEST_CASE( & test_move) );
test->add( BOOST_TEST_CASE( & test_complete) );
test->add( BOOST_TEST_CASE( & test_jump) );
test->add( BOOST_TEST_CASE( & test_pre) );
test->add( BOOST_TEST_CASE( & test_post) );
test->add( BOOST_TEST_CASE( & test_result_int) );
test->add( BOOST_TEST_CASE( & test_result_string) );
test->add( BOOST_TEST_CASE( & test_arg_int) );
test->add( BOOST_TEST_CASE( & test_arg_string) );
test->add( BOOST_TEST_CASE( & test_fp) );
test->add( BOOST_TEST_CASE( & test_ptr) );
test->add( BOOST_TEST_CASE( & test_ref) );
test->add( BOOST_TEST_CASE( & test_tuple) );
test->add( BOOST_TEST_CASE( & test_unwind) );
test->add( BOOST_TEST_CASE( & test_no_unwind) );
test->add( BOOST_TEST_CASE( & test_exceptions) );
test->add( BOOST_TEST_CASE( & test_output_iterator) );
test->add( BOOST_TEST_CASE( & test_input_iterator) );
return test;
}