2013-12-11 21:32:27 +08:00
|
|
|
#define CATCH_CONFIG_MAIN
|
|
|
|
#include <catch.hpp>
|
2013-12-11 19:34:18 +08:00
|
|
|
#include <sol.hpp>
|
|
|
|
|
2013-12-11 21:32:27 +08:00
|
|
|
std::string free_function() {
|
|
|
|
std::cout << "free_function()" << std::endl;
|
2013-12-11 19:34:18 +08:00
|
|
|
return "test";
|
|
|
|
}
|
|
|
|
|
2013-12-11 21:32:27 +08:00
|
|
|
struct object {
|
2013-12-11 19:34:18 +08:00
|
|
|
|
|
|
|
std::string operator() () {
|
|
|
|
std::cout << "member_test()" << std::endl;
|
|
|
|
return "test";
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-12-12 00:18:13 +08:00
|
|
|
int plop_xyz(int x, int y, std::string z) {
|
|
|
|
std::cout << x << " " << y << " " << z << std::endl;
|
|
|
|
return 11;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("simple/set_global", "Check if the set_global works properly.") {
|
|
|
|
sol::state lua;
|
|
|
|
|
|
|
|
lua.set("a", 9);
|
|
|
|
REQUIRE_NOTHROW(lua.script("if a ~= 9 then error('wrong value') end"));
|
|
|
|
|
|
|
|
lua.set("d", "hello");
|
|
|
|
REQUIRE_NOTHROW(lua.script("if d ~= 'hello' then error('expected \\'hello\\', got '.. tostring(d)) end"));
|
|
|
|
|
|
|
|
lua.set("e", std::string("hello"));
|
|
|
|
REQUIRE_NOTHROW(lua.script("if d ~= 'hello' then error('expected \\'hello\\', got '.. tostring(d)) end"));
|
|
|
|
|
|
|
|
lua.set("f", true);
|
|
|
|
REQUIRE_NOTHROW(lua.script("if f ~= true then error('wrong value') end"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("simple/get", "Tests if the get function works properly.") {
|
|
|
|
sol::state lua;
|
|
|
|
|
|
|
|
lua.script("a = 9");
|
|
|
|
auto a = lua.get<int>("a");
|
|
|
|
REQUIRE(a == 9.0);
|
|
|
|
|
|
|
|
lua.script("b = nil");
|
2013-12-12 00:56:34 +08:00
|
|
|
REQUIRE_NOTHROW(lua.get<sol::nil_t>("b"));
|
2013-12-12 00:18:13 +08:00
|
|
|
|
|
|
|
lua.script("d = 'hello'");
|
|
|
|
auto d = lua.get<std::string>("d");
|
|
|
|
REQUIRE(d == "hello");
|
|
|
|
|
|
|
|
lua.script("e = true");
|
|
|
|
auto e = lua.get<bool>("e");
|
|
|
|
REQUIRE(e == true);
|
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("simple/addition", "check if addition works and can be gotten through lua.get and lua.set") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
|
|
|
|
|
|
|
lua.set("b", 0.2);
|
|
|
|
lua.script("c = 9 + b");
|
|
|
|
auto c = lua.get<double>("c");
|
|
|
|
|
|
|
|
REQUIRE(c == 9.2);
|
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("simple/if", "check if if statements work through lua") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
|
|
|
|
|
|
|
std::string program = "if true then f = 0.1 else f = 'test' end";
|
|
|
|
lua.script(program);
|
|
|
|
auto f = lua.get<double>("f");
|
|
|
|
|
|
|
|
REQUIRE(f == 0.1);
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE((f == lua["f"]));
|
2013-12-12 00:18:13 +08:00
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("simple/call_with_parameters", "Lua function is called with a few parameters from C++") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-12 00:18:13 +08:00
|
|
|
REQUIRE_NOTHROW(lua.script("function my_add(i, j, k) return i + j + k end"));
|
|
|
|
auto f = lua.get<sol::function>("my_add");
|
2013-12-14 09:09:51 +08:00
|
|
|
REQUIRE_NOTHROW(lua.script("function my_nothing(i, j, k) end"));
|
|
|
|
auto fvoid = lua.get<sol::function>("my_nothing");
|
2013-12-12 01:42:00 +08:00
|
|
|
int a;
|
2013-12-14 09:09:51 +08:00
|
|
|
REQUIRE_NOTHROW(fvoid(1, 2, 3));
|
2013-12-12 01:42:00 +08:00
|
|
|
REQUIRE_NOTHROW(a = f.call<int>(1, 2, 3));
|
|
|
|
REQUIRE(a == 6);
|
|
|
|
REQUIRE_THROWS(a = f.call<int>(1, 2, "arf"));
|
2013-12-12 00:18:13 +08:00
|
|
|
}
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("simple/call_c++_function", "C++ function is called from lua") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-12 00:18:13 +08:00
|
|
|
lua.set_function("plop_xyz", plop_xyz);
|
|
|
|
lua.script("x = plop_xyz(2, 6, 'hello')");
|
|
|
|
|
|
|
|
REQUIRE(lua.get<int>("x") == 11);
|
2013-12-11 21:32:27 +08:00
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("simple/call_lambda", "A C++ lambda is exposed to lua and called") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
|
|
|
|
|
|
|
int x = 0;
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
lua.set_function("foo", [&x] { x = 1; });
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-12 00:18:13 +08:00
|
|
|
lua.script("foo()");
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-12 00:18:13 +08:00
|
|
|
REQUIRE(x == 1);
|
2013-12-11 21:32:27 +08:00
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("advanced/get_and_call", "Checks for lambdas returning values after a get operation") {
|
2013-12-14 13:15:14 +08:00
|
|
|
const static std::string lol = "lol", str = "str";
|
|
|
|
const static std::tuple<int, float, double, std::string> heh_tuple = std::make_tuple(1, 6.28f, 3.14, std::string("heh"));
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("a", [] { return 42; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("a").call<int>() == 42);
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("b", [] { return 42u; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("b").call<unsigned int>() == 42u);
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("c", [] { return 3.14; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("c").call<double>() == 3.14);
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("d", [] { return 6.28f; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("d").call<float>() == 6.28f);
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("e", [] { return "lol"; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("e").call<std::string>() == lol);
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("f", [] { return true; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("f").call<bool>());
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("g", [] { return std::string("str"); }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("g").call<std::string>() == str);
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("h", [] { }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE_NOTHROW(lua.get<sol::function>("h").call());
|
2013-12-14 13:15:14 +08:00
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("i", [] { return sol::nil; }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE(lua.get<sol::function>("i").call<sol::nil_t>() == sol::nil);
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("j", [] { return std::make_tuple(1, 6.28f, 3.14, std::string("heh")); }));
|
2013-12-17 00:07:10 +08:00
|
|
|
REQUIRE((lua.get<sol::function>("j").call<int, float, double, std::string>() == heh_tuple));
|
2013-12-12 00:18:13 +08:00
|
|
|
}
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("advanced/operator[]_calls", "Checks for lambdas returning values using operator[]") {
|
|
|
|
const static std::string lol = "lol", str = "str";
|
|
|
|
const static std::tuple<int, float, double, std::string> heh_tuple = std::make_tuple(1, 6.28f, 3.14, std::string("heh"));
|
|
|
|
sol::state lua;
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("a", [] { return 42; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["a"].call<int>() == 42);
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("b", [] { return 42u; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["b"].call<unsigned int>() == 42u);
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("c", [] { return 3.14; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["c"].call<double>() == 3.14);
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("d", [] { return 6.28f; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["d"].call<float>() == 6.28f);
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("e", [] { return "lol"; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["e"].call<std::string>() == lol);
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("f", [] { return true; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["f"].call<bool>());
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("g", [] { return std::string("str"); }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["g"].call<std::string>() == str);
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("h", [] { }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE_NOTHROW(lua["h"].call());
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("i", [] { return sol::nil; }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lua["i"].call<sol::nil_t>() == sol::nil);
|
2013-12-22 11:11:20 +08:00
|
|
|
REQUIRE_NOTHROW(lua.set_function("j", [] { return std::make_tuple(1, 6.28f, 3.14, std::string("heh")); }));
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE((lua["j"].call<int, float, double, std::string>() == heh_tuple));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("advanced/call_lambdas", "A C++ lambda is exposed to lua and called") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
2013-12-11 21:32:27 +08:00
|
|
|
|
2013-12-12 00:18:13 +08:00
|
|
|
int x = 0;
|
2013-12-22 11:11:20 +08:00
|
|
|
lua.set_function("set_x", [&] (int new_x) {
|
2013-12-12 00:18:13 +08:00
|
|
|
x = new_x;
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
|
|
|
|
lua.script("set_x(9)");
|
|
|
|
REQUIRE(x == 9);
|
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("negative/basic_errors", "Check if error handling works correctly") {
|
2013-12-12 00:18:13 +08:00
|
|
|
sol::state lua;
|
|
|
|
|
|
|
|
REQUIRE_THROWS(lua.script("nil[5]"));
|
2013-12-11 21:32:27 +08:00
|
|
|
}
|
|
|
|
|
2013-12-22 08:30:30 +08:00
|
|
|
TEST_CASE("libraries", "Check if we can open libraries") {
|
2013-12-12 07:14:12 +08:00
|
|
|
sol::state lua;
|
|
|
|
REQUIRE_NOTHROW(lua.open_libraries(sol::lib::base, sol::lib::os));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("tables/variables", "Check if tables and variables work as intended") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base, sol::lib::os);
|
2013-12-12 00:18:13 +08:00
|
|
|
lua.get<sol::table>("os").set("name", "windows");
|
2013-12-12 07:14:12 +08:00
|
|
|
REQUIRE_NOTHROW(lua.script("assert(os.name == \"windows\")"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("tables/functions_variables", "Check if tables and function calls work as intended") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base, sol::lib::os);
|
2013-12-22 11:11:20 +08:00
|
|
|
auto run_script = [] (sol::state& lua) -> void {
|
2013-12-12 07:14:12 +08:00
|
|
|
lua.script("assert(os.fun() == \"test\")");
|
|
|
|
};
|
2013-12-12 00:18:13 +08:00
|
|
|
|
|
|
|
lua.get<sol::table>("os").set_function("fun",
|
2013-12-22 11:11:20 +08:00
|
|
|
[] () {
|
2013-12-12 07:14:12 +08:00
|
|
|
std::cout << "stateless lambda()" << std::endl;
|
|
|
|
return "test";
|
|
|
|
}
|
2013-12-22 11:11:20 +08:00
|
|
|
);
|
2013-12-12 07:14:12 +08:00
|
|
|
REQUIRE_NOTHROW(run_script(lua));
|
2013-12-12 00:18:13 +08:00
|
|
|
|
|
|
|
lua.get<sol::table>("os").set_function("fun", &free_function);
|
2013-12-12 07:14:12 +08:00
|
|
|
REQUIRE_NOTHROW(run_script(lua));
|
2013-12-12 00:18:13 +08:00
|
|
|
|
2014-01-19 12:10:49 +08:00
|
|
|
// l-value, can optimise
|
2013-12-12 00:18:13 +08:00
|
|
|
auto lval = object();
|
|
|
|
lua.get<sol::table>("os").set_function("fun", &object::operator(), lval);
|
2013-12-14 13:32:45 +08:00
|
|
|
REQUIRE_NOTHROW(run_script(lua));
|
2013-12-12 00:18:13 +08:00
|
|
|
|
2014-01-19 12:10:49 +08:00
|
|
|
// stateful lambda: non-convertible, cannot be optimised
|
2013-12-12 00:18:13 +08:00
|
|
|
int breakit = 50;
|
|
|
|
lua.get<sol::table>("os").set_function("fun",
|
2013-12-22 11:11:20 +08:00
|
|
|
[&breakit] () {
|
2013-12-12 00:18:13 +08:00
|
|
|
std::cout << "stateless lambda()" << std::endl;
|
|
|
|
return "test";
|
|
|
|
}
|
2013-12-22 11:11:20 +08:00
|
|
|
);
|
2013-12-12 07:14:12 +08:00
|
|
|
REQUIRE_NOTHROW(run_script(lua));
|
2013-12-12 00:18:13 +08:00
|
|
|
|
2014-01-19 12:10:49 +08:00
|
|
|
// r-value, cannot optimise
|
2013-12-12 00:18:13 +08:00
|
|
|
lua.get<sol::table>("os").set_function("fun", &object::operator(), object());
|
2013-12-12 07:14:12 +08:00
|
|
|
REQUIRE_NOTHROW(run_script(lua));
|
2013-12-12 00:18:13 +08:00
|
|
|
|
2014-01-19 12:10:49 +08:00
|
|
|
// r-value, cannot optimise
|
2013-12-12 00:18:13 +08:00
|
|
|
auto rval = object();
|
|
|
|
lua.get<sol::table>("os").set_function("fun", &object::operator(), std::move(rval));
|
2013-12-12 07:14:12 +08:00
|
|
|
REQUIRE_NOTHROW(run_script(lua));
|
2013-12-13 09:20:11 +08:00
|
|
|
}
|
|
|
|
|
2013-12-22 11:11:20 +08:00
|
|
|
TEST_CASE("functions/return_order_and_multi_get", "Check if return order is in the same reading order specified in Lua") {
|
2013-12-16 05:27:20 +08:00
|
|
|
const static std::tuple<int, int, int> triple = std::make_tuple(10, 11, 12);
|
|
|
|
sol::state lua;
|
2013-12-22 11:11:20 +08:00
|
|
|
lua.set_function("f", [] {
|
|
|
|
return std::make_tuple(10, 11, 12);
|
|
|
|
});
|
2013-12-16 11:09:06 +08:00
|
|
|
lua.script("function g() return 10, 11, 12 end\nx,y,z = g()");
|
|
|
|
auto tcpp = lua.get<sol::function>("f").call<int, int, int>();
|
|
|
|
auto tlua = lua.get<sol::function>("g").call<int, int, int>();
|
|
|
|
auto tluaget = lua.get<int, int, int>("x", "y", "z");
|
|
|
|
std::cout << "cpp: " << std::get<0>(tcpp) << ',' << std::get<1>(tcpp) << ',' << std::get<2>(tcpp) << std::endl;
|
|
|
|
std::cout << "lua: " << std::get<0>(tlua) << ',' << std::get<1>(tlua) << ',' << std::get<2>(tlua) << std::endl;
|
|
|
|
std::cout << "lua.xyz: " << lua.get<int>("x") << ',' << lua.get<int>("y") << ',' << lua.get<int>("z") << std::endl;
|
|
|
|
REQUIRE(tcpp == triple);
|
|
|
|
REQUIRE(tlua == triple);
|
|
|
|
REQUIRE(tluaget == triple);
|
2013-12-22 08:30:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("tables/operator[]", "Check if operator[] retrieval and setting works properly") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
|
|
|
lua.script("foo = 20\nbar = \"hello world\"");
|
|
|
|
// basic retrieval
|
|
|
|
std::string bar = lua["bar"];
|
|
|
|
int foo = lua["foo"];
|
|
|
|
REQUIRE(bar == "hello world");
|
|
|
|
REQUIRE(foo == 20);
|
|
|
|
// test operator= for stringification
|
2013-12-22 11:00:28 +08:00
|
|
|
// errors due to ambiguous operators
|
2013-12-22 08:30:30 +08:00
|
|
|
bar = lua["bar"];
|
|
|
|
|
|
|
|
// basic setting
|
|
|
|
lua["bar"] = 20.4;
|
|
|
|
lua["foo"] = "goodbye";
|
|
|
|
|
|
|
|
// doesn't modify the actual values obviously.
|
|
|
|
REQUIRE(bar == "hello world");
|
|
|
|
REQUIRE(foo == 20);
|
|
|
|
|
|
|
|
// function setting
|
|
|
|
lua["test"] = plop_xyz;
|
|
|
|
REQUIRE_NOTHROW(lua.script("assert(test(10, 11, \"hello\") == 11)"));
|
|
|
|
|
|
|
|
// function retrieval
|
2013-12-22 11:11:20 +08:00
|
|
|
sol::function test = lua["test"];
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(test.call<int>(10, 11, "hello") == 11);
|
|
|
|
|
|
|
|
// setting a lambda
|
|
|
|
lua["lamb"] = [](int x) {
|
|
|
|
return x * 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
REQUIRE_NOTHROW(lua.script("assert(lamb(220) == 440)"));
|
|
|
|
|
|
|
|
// function retrieval of a lambda
|
2013-12-22 11:11:20 +08:00
|
|
|
sol::function lamb = lua["lamb"];
|
2013-12-22 08:30:30 +08:00
|
|
|
REQUIRE(lamb.call<int>(220) == 440);
|
|
|
|
|
|
|
|
// test const table retrieval
|
|
|
|
auto assert1 = [](const sol::table& t) {
|
|
|
|
std::string a = t["foo"];
|
2013-12-22 11:11:20 +08:00
|
|
|
int b = t["bar"];
|
2013-12-22 08:30:30 +08:00
|
|
|
std::cout << a << ',' << b << '\n';
|
|
|
|
};
|
|
|
|
|
|
|
|
REQUIRE_NOTHROW(assert1(lua.global_table()));
|
2013-12-22 11:00:28 +08:00
|
|
|
}
|