2018-09-28 13:27:38 +08:00
// sol3
2017-12-20 17:58:32 +08:00
// The MIT License (MIT)
2019-03-13 17:18:06 +08:00
// Copyright (c) 2013-2019 Rapptz, ThePhD and contributors
2017-12-20 17:58:32 +08:00
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2018-12-20 12:17:15 +08:00
# include "sol_test.hpp"
2016-03-14 14:34:02 +08:00
# include <catch.hpp>
2019-01-29 00:32:32 +08:00
struct coro_h {
int x = 500 ;
int func ( ) {
x + = 1 ;
return x ;
}
} ;
struct coro_test {
std : : string identifier ;
sol : : reference obj ;
coro_test ( sol : : this_state L , std : : string id ) : identifier ( id ) , obj ( L , sol : : lua_nil ) {
}
void store ( sol : : table ref ) {
// must be explicit
obj = sol : : reference ( obj . lua_state ( ) , ref ) ;
}
void copy_store ( sol : : table ref ) {
// must be explicit
obj = sol : : reference ( obj . lua_state ( ) , ref ) ;
}
sol : : reference get ( ) {
return obj ;
}
~ coro_test ( ) {
}
} ;
struct coro_test_implicit {
std : : string identifier ;
sol : : main_reference obj ;
coro_test_implicit ( sol : : this_state L , std : : string id ) : identifier ( id ) , obj ( L , sol : : lua_nil ) {
}
void store ( sol : : table ref ) {
// main_reference does the state shift implicitly
obj = std : : move ( ref ) ;
lua_State * Lmain = sol : : main_thread ( ref . lua_state ( ) ) ;
REQUIRE ( obj . lua_state ( ) = = Lmain ) ;
}
void copy_store ( sol : : table ref ) {
// main_reference does the state shift implicitly
obj = ref ;
lua_State * Lmain = sol : : main_thread ( ref . lua_state ( ) ) ;
REQUIRE ( obj . lua_state ( ) = = Lmain ) ;
}
sol : : reference get ( ) {
return obj ;
}
~ coro_test_implicit ( ) {
}
} ;
2018-02-17 23:44:55 +08:00
TEST_CASE ( " coroutines/coroutine.yield " , " ensure calling a coroutine works " ) {
2016-06-07 03:46:53 +08:00
const auto & script = R " (counter = 20
2016-03-14 14:34:02 +08:00
function loop ( )
while counter ~ = 30
do
coroutine . yield ( counter ) ;
counter = counter + 1 ;
end
return counter
end
) " ;
2016-06-07 03:46:53 +08:00
sol : : state lua ;
lua . open_libraries ( sol : : lib : : base , sol : : lib : : coroutine ) ;
2018-01-29 11:21:13 +08:00
auto result1 = lua . safe_script ( script ) ;
REQUIRE ( result1 . valid ( ) ) ;
2016-06-07 03:46:53 +08:00
sol : : coroutine cr = lua [ " loop " ] ;
2016-03-14 14:34:02 +08:00
2016-06-07 03:46:53 +08:00
int counter ;
for ( counter = 20 ; counter < 31 & & cr ; + + counter ) {
int value = cr ( ) ;
2018-01-29 11:21:13 +08:00
REQUIRE ( counter = = value ) ;
2016-06-07 03:46:53 +08:00
}
counter - = 1 ;
REQUIRE ( counter = = 30 ) ;
2016-03-14 14:34:02 +08:00
}
2017-09-13 07:15:23 +08:00
TEST_CASE ( " coroutines/new thread coroutines " , " ensure calling a coroutine works when the work is put on a different thread " ) {
2018-01-29 11:21:13 +08:00
const auto & code = R " (counter = 20
2016-03-14 14:34:02 +08:00
function loop ( )
while counter ~ = 30
do
coroutine . yield ( counter ) ;
counter = counter + 1 ;
end
return counter
end
) " ;
2016-06-07 03:46:53 +08:00
sol : : state lua ;
lua . open_libraries ( sol : : lib : : base , sol : : lib : : coroutine ) ;
2018-01-29 11:21:13 +08:00
auto result = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
2016-06-07 03:46:53 +08:00
sol : : thread runner = sol : : thread : : create ( lua . lua_state ( ) ) ;
sol : : state_view runnerstate = runner . state ( ) ;
sol : : coroutine cr = runnerstate [ " loop " ] ;
2016-03-14 14:34:02 +08:00
2016-06-07 03:46:53 +08:00
int counter ;
for ( counter = 20 ; counter < 31 & & cr ; + + counter ) {
int value = cr ( ) ;
2018-01-29 11:21:13 +08:00
REQUIRE ( counter = = value ) ;
2016-06-07 03:46:53 +08:00
}
counter - = 1 ;
REQUIRE ( counter = = 30 ) ;
2017-09-12 04:12:23 +08:00
}
TEST_CASE ( " coroutines/transfer " , " test that things created inside of a coroutine can have their state transferred using lua_xmove constructors " ) {
for ( std : : size_t tries = 0 ; tries < 200 ; + + tries ) {
sol : : state lua ;
lua . open_libraries ( ) ;
{
sol : : function f2 ;
lua [ " f " ] = [ & lua , & f2 ] ( sol : : object t ) {
f2 = sol : : function ( lua , t ) ;
} ;
2018-01-29 11:21:13 +08:00
{
auto code = R " (
2017-09-12 04:12:23 +08:00
i = 0
function INIT ( )
co = coroutine . create (
function ( )
local g = function ( ) i = i + 1 end
f ( g )
g = nil
collectgarbage ( )
end
)
coroutine . resume ( co )
co = nil
collectgarbage ( )
end
2018-01-29 11:21:13 +08:00
) " ;
auto result = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
}
2017-09-12 04:12:23 +08:00
sol : : function f3 ;
sol : : function f1 ;
2018-01-29 11:21:13 +08:00
{
auto code = " INIT() " ;
auto result = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
}
2017-09-12 04:12:23 +08:00
f2 ( ) ;
2018-01-29 11:21:13 +08:00
auto updatecode = " return function() collectgarbage() end " ;
auto pfr = lua . safe_script ( updatecode ) ;
REQUIRE ( pfr . valid ( ) ) ;
sol : : function update = pfr ;
2017-09-12 04:12:23 +08:00
update ( ) ;
f3 = f2 ;
f3 ( ) ;
update ( ) ;
f1 = f2 ;
f1 ( ) ;
update ( ) ;
int i = lua [ " i " ] ;
REQUIRE ( i = = 3 ) ;
}
}
}
2017-09-13 07:15:23 +08:00
2017-09-13 22:20:24 +08:00
TEST_CASE ( " coroutines/explicit transfer " , " check that the xmove constructors shift things around appropriately " ) {
2017-09-13 07:15:23 +08:00
const std : : string code = R " (
- - main thread - L1
- - co - L2
- - co2 - L3
2019-01-29 00:32:32 +08:00
x = coro_test . new ( " x " )
2017-09-13 07:15:23 +08:00
local co = coroutine . wrap (
function ( )
2019-01-29 00:32:32 +08:00
local t = coro_test . new ( " t " )
2017-09-13 07:15:23 +08:00
local co2 = coroutine . wrap (
function ( )
local t2 = { " SOME_TABLE " }
t : copy_store ( t2 ) - - t2 = [ L3 ] , t . obj = [ L2 ]
end
)
co2 ( )
co2 = nil
collectgarbage ( ) - - t2 ref in t remains valid !
x : store ( t : get ( ) ) - - t . obj = [ L2 ] , x . obj = [ L1 ]
end
)
co ( )
collectgarbage ( )
collectgarbage ( )
co = nil
) " ;
sol : : state lua ;
lua . open_libraries ( sol : : lib : : coroutine , sol : : lib : : base ) ;
2019-01-29 00:32:32 +08:00
lua . new_usertype < coro_test > ( " coro_test " ,
sol : : constructors < coro_test ( sol : : this_state , std : : string ) > ( ) ,
" store " , & coro_test : : store ,
" copy_store " , & coro_test : : copy_store ,
" get " , & coro_test : : get ) ;
2017-09-13 07:15:23 +08:00
2018-01-29 11:21:13 +08:00
auto r = lua . safe_script ( code , sol : : script_pass_on_error ) ;
2017-09-13 07:15:23 +08:00
REQUIRE ( r . valid ( ) ) ;
2019-01-29 00:32:32 +08:00
coro_test & ct = lua [ " x " ] ;
2017-09-13 07:15:23 +08:00
lua_State * Lmain1 = lua . lua_state ( ) ;
lua_State * Lmain2 = sol : : main_thread ( lua ) ;
lua_State * Lmain3 = ct . get ( ) . lua_state ( ) ;
REQUIRE ( Lmain1 = = Lmain2 ) ;
REQUIRE ( Lmain1 = = Lmain3 ) ;
sol : : table t = ct . get ( ) ;
REQUIRE ( t . size ( ) = = 1 ) ;
std : : string s = t [ 1 ] ;
REQUIRE ( s = = " SOME_TABLE " ) ;
}
2017-09-13 22:20:24 +08:00
TEST_CASE ( " coroutines/implicit transfer " , " check that copy and move assignment constructors implicitly shift things around " ) {
const std : : string code = R " (
- - main thread - L1
- - co - L2
- - co2 - L3
2019-01-29 00:32:32 +08:00
x = coro_test . new ( " x " )
2017-09-13 22:20:24 +08:00
local co = coroutine . wrap (
function ( )
2019-01-29 00:32:32 +08:00
local t = coro_test . new ( " t " )
2017-09-13 22:20:24 +08:00
local co2 = coroutine . wrap (
function ( )
local t2 = { " SOME_TABLE " }
t : copy_store ( t2 ) - - t2 = [ L3 ] , t . obj = [ L2 ]
end
)
co2 ( )
co2 = nil
collectgarbage ( ) - - t2 ref in t remains valid !
x : store ( t : get ( ) ) - - t . obj = [ L2 ] , x . obj = [ L1 ]
end
)
co ( )
collectgarbage ( )
collectgarbage ( )
co = nil
) " ;
2019-01-29 00:32:32 +08:00
struct coro_test_implicit {
2017-09-13 22:20:24 +08:00
std : : string identifier ;
sol : : reference obj ;
2019-01-29 00:32:32 +08:00
coro_test_implicit ( sol : : this_state L , std : : string id )
2017-09-17 02:18:45 +08:00
: identifier ( id ) , obj ( L , sol : : lua_nil ) {
2017-09-13 22:20:24 +08:00
}
void store ( sol : : table ref ) {
// must be explicit
obj = std : : move ( ref ) ;
}
void copy_store ( sol : : table ref ) {
// must be explicit
obj = ref ;
}
sol : : reference get ( ) {
return obj ;
}
2019-01-29 00:32:32 +08:00
~ coro_test_implicit ( ) {
2017-09-13 22:20:24 +08:00
}
} ;
sol : : state lua ;
lua . open_libraries ( sol : : lib : : coroutine , sol : : lib : : base ) ;
2019-01-29 00:32:32 +08:00
lua . new_usertype < coro_test_implicit > ( " coro_test " ,
sol : : constructors < coro_test_implicit ( sol : : this_state , std : : string ) > ( ) ,
" store " , & coro_test_implicit : : store ,
" copy_store " , & coro_test_implicit : : copy_store ,
" get " , & coro_test_implicit : : get ) ;
2017-09-13 22:20:24 +08:00
2018-01-29 11:21:13 +08:00
auto r = lua . safe_script ( code , sol : : script_pass_on_error ) ;
2017-09-13 22:20:24 +08:00
REQUIRE ( r . valid ( ) ) ;
2019-01-29 00:32:32 +08:00
coro_test_implicit & ct = lua [ " x " ] ;
2017-09-13 22:20:24 +08:00
lua_State * Lmain1 = lua . lua_state ( ) ;
lua_State * Lmain2 = sol : : main_thread ( lua ) ;
lua_State * Lmain3 = ct . get ( ) . lua_state ( ) ;
REQUIRE ( Lmain1 = = Lmain2 ) ;
REQUIRE ( Lmain1 = = Lmain3 ) ;
sol : : table t = ct . get ( ) ;
REQUIRE ( t . size ( ) = = 1 ) ;
std : : string s = t [ 1 ] ;
REQUIRE ( s = = " SOME_TABLE " ) ;
}
2017-09-14 12:35:40 +08:00
TEST_CASE ( " coroutines/main transfer " , " check that copy and move assignment constructors using main-forced types work " ) {
const std : : string code = R " (
- - main thread - L1
- - co - L2
- - co2 - L3
2019-01-29 00:32:32 +08:00
x = coro_test . new ( " x " )
2017-09-14 12:35:40 +08:00
local co = coroutine . wrap (
function ( )
2019-01-29 00:32:32 +08:00
local t = coro_test . new ( " t " )
2017-09-14 12:35:40 +08:00
local co2 = coroutine . wrap (
function ( )
local t2 = { " SOME_TABLE " }
t : copy_store ( t2 ) - - t2 = [ L3 ] , t . obj = [ L2 ]
end
)
co2 ( )
co2 = nil
collectgarbage ( ) - - t2 ref in t remains valid !
x : store ( t : get ( ) ) - - t . obj = [ L2 ] , x . obj = [ L1 ]
end
)
co ( )
co = nil
collectgarbage ( )
) " ;
sol : : state lua ;
lua . open_libraries ( sol : : lib : : coroutine , sol : : lib : : base ) ;
2019-01-29 00:32:32 +08:00
lua . new_usertype < coro_test_implicit > ( " coro_test " ,
sol : : constructors < coro_test_implicit ( sol : : this_state , std : : string ) > ( ) ,
" store " , & coro_test_implicit : : store ,
" copy_store " , & coro_test_implicit : : copy_store ,
" get " , & coro_test_implicit : : get ) ;
2017-09-14 12:35:40 +08:00
2018-01-29 11:21:13 +08:00
auto r = lua . safe_script ( code , sol : : script_pass_on_error ) ;
2017-09-14 12:35:40 +08:00
REQUIRE ( r . valid ( ) ) ;
2019-01-29 00:32:32 +08:00
coro_test_implicit & ct = lua [ " x " ] ;
2017-09-14 12:35:40 +08:00
lua_State * Lmain1 = lua . lua_state ( ) ;
lua_State * Lmain2 = sol : : main_thread ( lua ) ;
lua_State * Lmain3 = ct . get ( ) . lua_state ( ) ;
REQUIRE ( Lmain1 = = Lmain2 ) ;
REQUIRE ( Lmain1 = = Lmain3 ) ;
sol : : table t = ct . get ( ) ;
REQUIRE ( t . size ( ) = = 1 ) ;
std : : string s = t [ 1 ] ;
REQUIRE ( s = = " SOME_TABLE " ) ;
}
2017-11-22 03:33:27 +08:00
TEST_CASE ( " coroutines/coroutine.create protection " , " ensure that a thread picked up from coroutine.create does not throw off the lua stack entirely when called from C++ " ) {
sol : : state lua ;
lua . open_libraries ( sol : : lib : : base , sol : : lib : : coroutine ) ;
2018-01-29 11:21:13 +08:00
auto code = R " (
2017-11-22 03:33:27 +08:00
function loop ( )
local i = 0
while true do
print ( " pre-yield in loop " )
coroutine . yield ( i )
print ( " post-yield in loop " )
i = i + 1
end
end
loop_th = coroutine . create ( loop )
2018-01-29 11:21:13 +08:00
) " ;
2017-11-22 03:33:27 +08:00
2018-01-29 11:21:13 +08:00
auto r = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( r . valid ( ) ) ;
2017-11-22 03:33:27 +08:00
sol : : thread runner_thread = lua [ " loop_th " ] ;
auto test_resume = [ & runner_thread ] ( ) {
sol : : state_view th_state = runner_thread . state ( ) ;
sol : : coroutine cr = th_state [ " loop " ] ;
int r = cr ( ) ;
return r ;
} ;
lua . set_function ( " test_resume " , std : : ref ( test_resume ) ) ;
int v0 = test_resume ( ) ;
int v1 = test_resume ( ) ;
2018-01-29 11:21:13 +08:00
int v2 , v3 ;
{
auto r2 = lua . safe_script ( " return test_resume() " , sol : : script_pass_on_error ) ;
REQUIRE ( r2 . valid ( ) ) ;
auto r3 = lua . safe_script ( " return test_resume() " , sol : : script_pass_on_error ) ;
REQUIRE ( r3 . valid ( ) ) ;
v2 = r2 ;
v3 = r3 ;
}
2017-11-22 03:33:27 +08:00
REQUIRE ( v0 = = 0 ) ;
REQUIRE ( v1 = = 1 ) ;
REQUIRE ( v2 = = 2 ) ;
REQUIRE ( v3 = = 3 ) ;
}
2017-12-07 21:24:50 +08:00
TEST_CASE ( " coroutines/stack-check " , " check that resumed functions consume the entire execution stack " ) {
sol : : state lua ;
lua . open_libraries ( sol : : lib : : base , sol : : lib : : table , sol : : lib : : coroutine ) ;
2018-01-29 11:21:13 +08:00
{
auto code = R " (
2017-12-07 21:24:50 +08:00
unpack = unpack or table . unpack
function loop ( )
local i = 0
while true do
print ( " pre-yield in loop " )
coroutine . yield ( i )
print ( " post-yield in loop " )
i = i + 1
end
end
loop_th = coroutine . create ( loop )
loop_res = function ( . . . )
returns = { coroutine . resume ( loop_th , . . . ) }
return unpack ( returns , 2 )
end
2018-01-29 11:21:13 +08:00
) " ;
auto result = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
}
2017-12-07 21:24:50 +08:00
// Resume from lua via thread and coroutine
sol : : thread runner_thread = lua [ " loop_th " ] ;
sol : : state_view runner_thread_state = runner_thread . state ( ) ;
auto test_resume = [ & runner_thread , & runner_thread_state ] ( ) {
sol : : coroutine cr = runner_thread_state [ " loop " ] ;
sol : : stack : : push ( runner_thread_state , 50 ) ;
sol : : stack : : push ( runner_thread_state , 25 ) ;
int r = cr ( ) ;
return r ;
} ;
lua . set_function ( " test_resume " , std : : ref ( test_resume ) ) ;
// Resume via getting a sol::function from the state
sol : : function test_resume_lua = lua [ " loop_res " ] ;
// Resume via passing a sol::function object
auto test_resume_func = [ ] ( sol : : function f ) {
int r = f ( ) ;
return r ;
} ;
lua . set_function ( " test_resume_func " , std : : ref ( test_resume_func ) ) ;
int v0 = test_resume ( ) ;
int s0 = runner_thread_state . stack_top ( ) ;
int v1 = test_resume ( ) ;
int s1 = runner_thread_state . stack_top ( ) ;
2018-01-29 11:21:13 +08:00
int v2 ;
{
auto result = lua . safe_script ( " return test_resume() " , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
v2 = result ;
}
2017-12-07 21:24:50 +08:00
int s2 = runner_thread_state . stack_top ( ) ;
2018-01-29 11:21:13 +08:00
int v3 ;
{
auto result = lua . safe_script ( " return test_resume() " , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
v3 = result ;
}
2017-12-07 21:24:50 +08:00
int s3 = runner_thread_state . stack_top ( ) ;
int v4 = test_resume_lua ( ) ;
int s4 = runner_thread_state . stack_top ( ) ;
2018-01-29 11:21:13 +08:00
int v5 ;
{
auto result = lua . safe_script ( " return test_resume_func(loop_res) " , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
v5 = result ;
}
2017-12-07 21:24:50 +08:00
int s5 = runner_thread_state . stack_top ( ) ;
REQUIRE ( v0 = = 0 ) ;
REQUIRE ( v1 = = 1 ) ;
REQUIRE ( v2 = = 2 ) ;
REQUIRE ( v3 = = 3 ) ;
REQUIRE ( v4 = = 4 ) ;
REQUIRE ( v5 = = 5 ) ;
REQUIRE ( s0 = = 0 ) ;
REQUIRE ( s1 = = 0 ) ;
REQUIRE ( s2 = = 0 ) ;
REQUIRE ( s3 = = 0 ) ;
REQUIRE ( s4 = = 0 ) ;
REQUIRE ( s5 = = 0 ) ;
}
2018-02-17 13:18:26 +08:00
TEST_CASE ( " coroutines/yielding " , " test that a sol2 bound function can yield when marked yieldable " ) {
2019-01-29 00:32:32 +08:00
SECTION ( " regular functions " ) {
sol : : state lua ;
lua . open_libraries ( sol : : lib : : base , sol : : lib : : coroutine ) ;
int i = 0 ;
auto func = [ & i ] ( ) {
+ + i ;
return i ;
} ;
coro_h hobj { } ;
lua [ " f " ] = sol : : yielding ( func ) ;
lua [ " g " ] = sol : : yielding ( [ ] ( ) { return 300 ; } ) ;
lua [ " h " ] = sol : : yielding ( & coro_h : : func ) ;
lua [ " hobj " ] = & hobj ;
sol : : string_view code = R " (
co1 = coroutine . create ( function ( ) return f ( ) end )
success1 , value1 = coroutine . resume ( co1 )
co2 = coroutine . create ( function ( ) return g ( ) end )
success2 , value2 = coroutine . resume ( co2 )
co3 = coroutine . create ( function ( )
h ( hobj )
end )
success3 , value3 = coroutine . resume ( co3 )
) " ;
2018-02-18 10:38:29 +08:00
2019-01-29 00:32:32 +08:00
auto result = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
2018-02-18 10:38:29 +08:00
2019-01-29 00:32:32 +08:00
bool success1 = lua [ " success1 " ] ;
int value1 = lua [ " value1 " ] ;
REQUIRE ( success1 ) ;
REQUIRE ( value1 = = 1 ) ;
bool success2 = lua [ " success2 " ] ;
int value2 = lua [ " value2 " ] ;
REQUIRE ( success2 ) ;
REQUIRE ( value2 = = 300 ) ;
bool success3 = lua [ " success3 " ] ;
int value3 = lua [ " value3 " ] ;
REQUIRE ( success3 ) ;
REQUIRE ( value3 = = 501 ) ;
2018-02-18 10:38:29 +08:00
2019-01-29 00:32:32 +08:00
REQUIRE ( hobj . x = = 501 ) ;
}
SECTION ( " usertypes " ) {
sol : : state lua ;
lua . open_libraries ( sol : : lib : : base , sol : : lib : : coroutine ) ;
2018-02-17 13:18:26 +08:00
2019-01-29 00:32:32 +08:00
coro_h hobj ;
2018-02-17 13:18:26 +08:00
2019-01-29 00:32:32 +08:00
lua [ " hobj " ] = & hobj ;
lua . new_usertype < coro_h > ( " coro_h " ,
" h " , sol : : yielding ( & coro_h : : func )
) ;
sol : : string_view code = R " (
co4 = coroutine . create ( function ( )
hobj : h ( )
hobj . h ( hobj )
coro_h . h ( hobj )
end )
success4 , value4 = coroutine . resume ( co4 )
success5 , value5 = coroutine . resume ( co4 )
success6 , value6 = coroutine . resume ( co4 )
) " ;
auto result = lua . safe_script ( code , sol : : script_pass_on_error ) ;
REQUIRE ( result . valid ( ) ) ;
bool success4 = lua [ " success4 " ] ;
int value4 = lua [ " value4 " ] ;
REQUIRE ( success4 ) ;
REQUIRE ( value4 = = 501 ) ;
bool success5 = lua [ " success5 " ] ;
int value5 = lua [ " value5 " ] ;
REQUIRE ( success5 ) ;
REQUIRE ( value5 = = 502 ) ;
bool success6 = lua [ " success6 " ] ;
int value6 = lua [ " value6 " ] ;
REQUIRE ( success6 ) ;
REQUIRE ( value6 = = 503 ) ;
REQUIRE ( hobj . x = = 503 ) ;
}
2018-02-17 13:18:26 +08:00
}