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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
// Copyright (c) 2005 Daniel Wallin, Arvid Norberg
// 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.
#include <iostream>
#include <cstring>
extern "C"
{
#include "lauxlib.h"
#include "lualib.h"
}
#include <luabind/open.hpp>
#include "test.hpp"
extern "C" struct lua_State;
void test_main(lua_State*);
struct lua_state
{
lua_state();
~lua_state();
operator lua_State*() const;
void check() const;
private:
lua_State* m_state;
int m_top;
};
lua_state::lua_state()
: m_state(luaL_newstate())
{
luaopen_base(m_state);
#if defined(LUA_VERSION_NUM) && LUA_VERSION_NUM >= 501
// lua 5.1 or newer
luaL_openlibs(m_state);
#else
// lua 5.0.2 or older
lua_baselibopen(m_state);
#endif
m_top = lua_gettop(m_state);
luabind::open(m_state);
}
lua_state::~lua_state()
{
lua_close(m_state);
}
void lua_state::check() const
{
TEST_CHECK(lua_gettop(m_state) == m_top);
}
lua_state::operator lua_State*() const
{
return m_state;
}
int pcall_handler(lua_State* L)
{
return 1;
}
void dostring(lua_State* state, char const* str)
{
lua_pushcclosure(state, &pcall_handler, 0);
if (luaL_loadbuffer(state, str, std::strlen(str), str))
{
std::string err(lua_tostring(state, -1));
lua_pop(state, 2);
throw err;
}
if (lua_pcall(state, 0, 0, -2))
{
std::string err(lua_tostring(state, -1));
lua_pop(state, 2);
throw err;
}
lua_pop(state, 1);
}
bool tests_failure = false;
void report_failure(char const* err, char const* file, int line)
{
std::cerr << file << ":" << line << "\"" << err << "\"\n";
tests_failure = true;
}
int main()
{
lua_state L;
try
{
test_main(L);
L.check();
return tests_failure ? 1 : 0;
}
catch (luabind::error const& e)
{
std::cerr << "Terminated with exception: \"" << e.what() << "\"\n"
<< lua_tostring(e.state(), -1) << "\n";
return 1;
}
catch (std::exception const& e)
{
std::cerr << "Terminated with exception: \"" << e.what() << "\"\n";
return 1;
}
catch (...)
{
std::cerr << "Terminated with unknown exception\n";
return 1;
}
}
|