1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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";
}
}
};
|