aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LuaBridge/Tests/Source/TestBase.h
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-28 00:57:57 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-28 00:57:57 -0400
commit85fb2bff38b2ef6cb17e86c5f602ee09a365b117 (patch)
treea8066d33233ec9b6a2b9bb281a1de040ab96be7b /lib/LuaBridge/Tests/Source/TestBase.h
parent787393dd86d6c37b5680847dd4eef14406a86687 (diff)
Added LuaBridge support
Diffstat (limited to 'lib/LuaBridge/Tests/Source/TestBase.h')
-rw-r--r--lib/LuaBridge/Tests/Source/TestBase.h98
1 files changed, 98 insertions, 0 deletions
diff --git a/lib/LuaBridge/Tests/Source/TestBase.h b/lib/LuaBridge/Tests/Source/TestBase.h
new file mode 100644
index 0000000..c272610
--- /dev/null
+++ b/lib/LuaBridge/Tests/Source/TestBase.h
@@ -0,0 +1,98 @@
+// https://github.com/vinniefalco/LuaBridge
+//
+// Copyright 2019, Dmitry Tarakanov
+// Copyright 2012, Vinnie Falco <vinnie.falco@gmail.com>
+// Copyright 2007, Nathan Reed
+// SPDX-License-Identifier: MIT
+
+#pragma once
+
+#include "Lua/LuaLibrary.h"
+
+#include "LuaBridge/LuaBridge.h"
+
+#include <gtest/gtest.h>
+
+#include <stdexcept>
+
+
+// traceback function, adapted from lua.c
+// when a runtime error occurs, this will append the call stack to the error message
+//
+inline int traceback (lua_State* L)
+{
+ // look up Lua's 'debug.traceback' function
+ lua_getglobal (L, "debug");
+ if (!lua_istable (L, -1))
+ {
+ lua_pop (L, 1);
+ return 1;
+ }
+ lua_getfield (L, -1, "traceback");
+ if (!lua_isfunction (L, -1))
+ {
+ lua_pop (L, 2);
+ return 1;
+ }
+ lua_pushvalue (L, 1); /* pass error message */
+ lua_pushinteger (L, 2); /* skip this function and traceback */
+ lua_call (L, 2, 1); /* call debug.traceback */
+ return 1;
+}
+
+/// Base test class. Introduces the global 'result' variable,
+/// used for checking of C++ - Lua interoperation.
+///
+struct TestBase : public ::testing::Test
+{
+ lua_State* L = nullptr;
+
+ void SetUp () override
+ {
+ L = nullptr;
+ L = luaL_newstate ();
+ luaL_openlibs (L);
+ lua_pushcfunction (L, &traceback);
+ }
+
+ void TearDown () override
+ {
+ if (L != nullptr)
+ {
+ lua_close (L);
+ }
+ }
+
+ void runLua (const std::string& script) const
+ {
+ if (luaL_loadstring (L, script.c_str ()) != 0)
+ {
+ throw std::runtime_error (lua_tostring (L, -1));
+ }
+
+ if (lua_pcall (L, 0, 0, -2) != 0)
+ {
+ throw std::runtime_error (lua_tostring (L, -1));
+ }
+ }
+
+ template <class T = luabridge::LuaRef>
+ T result () const
+ {
+ return luabridge::getGlobal (L, "result").cast <T> ();
+ }
+
+ void resetResult () const
+ {
+ luabridge::setGlobal (L, luabridge::LuaRef (L), "result");
+ }
+
+ void printStack () const
+ {
+ std::cerr << "===== Stack =====\n";
+ for (int i = 1; i <= lua_gettop (L); ++i)
+ {
+ std::cerr << "@" << i << " = " << luabridge::LuaRef::fromStack (L, i) << "\n";
+ }
+ }
+};