mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <components/lua/asyncpackage.hpp>
|
|
#include <components/lua/luastate.hpp>
|
|
#include <components/testing/expecterror.hpp>
|
|
|
|
namespace
|
|
{
|
|
using namespace testing;
|
|
|
|
struct LuaCoroutineCallbackTest : Test
|
|
{
|
|
void SetUp() override
|
|
{
|
|
mLua.protectedCall([&](LuaUtil::LuaView& view) {
|
|
view.sol()["callback"] = [](sol::this_state state, sol::protected_function fn) -> LuaUtil::Callback {
|
|
sol::table hiddenData(state, sol::create);
|
|
hiddenData[LuaUtil::ScriptsContainer::sScriptIdKey] = LuaUtil::ScriptId{};
|
|
return LuaUtil::Callback{ std::move(fn), hiddenData };
|
|
};
|
|
view.sol()["pass"] = [&](LuaUtil::Callback callback) { mCb = callback; };
|
|
});
|
|
}
|
|
|
|
LuaUtil::LuaState mLua{ nullptr, nullptr };
|
|
LuaUtil::Callback mCb;
|
|
};
|
|
|
|
TEST_F(LuaCoroutineCallbackTest, CoroutineCallbacks)
|
|
{
|
|
internal::CaptureStdout();
|
|
mLua.protectedCall([&](LuaUtil::LuaView& view) {
|
|
view.sol().safe_script(R"X(
|
|
local s = 'test'
|
|
coroutine.wrap(function()
|
|
pass(callback(function(v) print(s) end))
|
|
end)()
|
|
)X");
|
|
view.sol().collect_garbage();
|
|
mCb.call();
|
|
});
|
|
EXPECT_THAT(internal::GetCapturedStdout(), "test\n");
|
|
}
|
|
|
|
TEST_F(LuaCoroutineCallbackTest, ErrorInCoroutineCallbacks)
|
|
{
|
|
mLua.protectedCall([&](LuaUtil::LuaView& view) {
|
|
view.sol().safe_script(R"X(
|
|
coroutine.wrap(function()
|
|
pass(callback(function() error('COROUTINE CALLBACK') end))
|
|
end)()
|
|
)X");
|
|
view.sol().collect_garbage();
|
|
});
|
|
EXPECT_ERROR(mCb.call(), "COROUTINE CALLBACK");
|
|
}
|
|
}
|