// https://github.com/vinniefalco/LuaBridge // // Copyright 2019, Dmitry Tarakanov // SPDX-License-Identifier: MIT #include "TestBase.h" struct NamespaceTests : TestBase { template T variable (const std::string& name) { runLua ("result = " + name); return result (); } }; TEST_F (NamespaceTests, Variables) { int int_ = -10; auto any = luabridge::newTable (L); any ["a"] = 1; ASSERT_THROW ( luabridge::getGlobalNamespace (L).addProperty ("int", &int_), std::logic_error); runLua ("result = int"); ASSERT_TRUE (result ().isNil ()); luabridge::getGlobalNamespace (L) .beginNamespace ("ns") .addProperty ("int", &int_) .addProperty ("any", &any) .endNamespace (); ASSERT_EQ (-10, variable ("ns.int")); ASSERT_EQ (any, variable ("ns.any")); runLua ("ns.int = -20"); ASSERT_EQ (-20, int_); runLua ("ns.any = {b = 2}"); ASSERT_TRUE (any.isTable ()); ASSERT_TRUE (any ["b"].isNumber ()); ASSERT_EQ (2, any ["b"].cast ()); } TEST_F (NamespaceTests, ReadOnlyVariables) { int int_ = -10; auto any = luabridge::newTable (L); any ["a"] = 1; ASSERT_THROW ( luabridge::getGlobalNamespace (L).addProperty ("int", &int_), std::logic_error); runLua ("result = int"); ASSERT_TRUE (result ().isNil ()); luabridge::getGlobalNamespace (L) .beginNamespace ("ns") .addProperty ("int", &int_, false) .addProperty ("any", &any, false) .endNamespace (); ASSERT_EQ (-10, variable ("ns.int")); ASSERT_EQ (any, variable ("ns.any")); ASSERT_THROW (runLua ("ns.int = -20"), std::runtime_error); ASSERT_EQ (-10, variable ("ns.int")); ASSERT_THROW (runLua ("ns.any = {b = 2}"), std::runtime_error); ASSERT_EQ (any, variable ("ns.any")); } namespace { template struct Property { static T value; }; template T Property ::value; template void setProperty (const T& value) { Property ::value = value; } template const T& getProperty () { return Property ::value; } } // namespace TEST_F (NamespaceTests, Properties) { setProperty (-10); ASSERT_THROW ( luabridge::getGlobalNamespace (L) .addProperty ("int", &getProperty , &setProperty ), std::logic_error); runLua ("result = int"); ASSERT_TRUE (result ().isNil ()); luabridge::getGlobalNamespace (L) .beginNamespace ("ns") .addProperty ("int", &getProperty , &setProperty ) .endNamespace (); ASSERT_EQ (-10, variable ("ns.int")); runLua ("ns.int = -20"); ASSERT_EQ (-20, getProperty ()); } TEST_F (NamespaceTests, ReadOnlyProperties) { setProperty (-10); ASSERT_THROW ( luabridge::getGlobalNamespace (L) .addProperty ("int", &getProperty ), std::logic_error); runLua ("result = int"); ASSERT_TRUE (result ().isNil ()); luabridge::getGlobalNamespace (L) .beginNamespace ("ns") .addProperty ("int", &getProperty ) .endNamespace (); ASSERT_EQ (-10, variable ("ns.int")); ASSERT_THROW ( runLua ("ns.int = -20"), std::runtime_error); ASSERT_EQ (-10, getProperty ()); } namespace { struct Class {}; } TEST_F (NamespaceTests, LuaStackIntegrity) { ASSERT_EQ (1, lua_gettop (L)); // Stack: ... { auto ns2 = luabridge::getGlobalNamespace (L) .beginNamespace ("namespace") .beginNamespace ("ns2"); ASSERT_EQ (4, lua_gettop (L)); // Stack: ..., global namespace table (gns), namespace table (ns), ns2 ns2.endNamespace (); // Stack: ... ASSERT_EQ (1, lua_gettop (L)); // Stack: ... } ASSERT_EQ (1, lua_gettop (L)); // Stack: ... { auto globalNs = luabridge::getGlobalNamespace (L); ASSERT_EQ (2, lua_gettop (L)); // Stack: ..., gns { auto ns = luabridge::getGlobalNamespace (L) .beginNamespace ("namespace"); // both globalNs an ns are active ASSERT_EQ (4, lua_gettop (L)); // Stack: ..., gns, gns, ns } ASSERT_EQ (2, lua_gettop (L)); // Stack: ..., gns { auto ns = globalNs .beginNamespace ("namespace"); // globalNs became inactive ASSERT_EQ (3, lua_gettop (L)); // Stack: ..., gns, ns } ASSERT_EQ (1, lua_gettop (L)); // Stack: ... ASSERT_THROW (globalNs.beginNamespace ("namespace"), std::exception); ASSERT_THROW (globalNs.beginClass ("Class"), std::exception); } { auto globalNs = luabridge::getGlobalNamespace (L) .beginNamespace ("namespace") .endNamespace (); // globalNs is active ASSERT_EQ (2, lua_gettop (L)); // Stack: ..., gns } ASSERT_EQ (1, lua_gettop (L)); // StacK: ... { auto cls = luabridge::getGlobalNamespace (L) .beginNamespace ("namespace") .beginClass ("Class"); ASSERT_EQ (6, lua_gettop (L)); // Stack: ..., gns, ns, const table, class table, static table { auto ns = cls.endClass (); ASSERT_EQ (3, lua_gettop (L)); // Stack: ..., gns, ns } ASSERT_EQ (1, lua_gettop (L)); // Stack: ... } ASSERT_EQ (1, lua_gettop (L)); // StacK: ... // Test class continuation { auto cls = luabridge::getGlobalNamespace (L) .beginNamespace ("namespace") .beginClass ("Class"); ASSERT_EQ (6, lua_gettop (L)); // Stack: ..., gns, ns, const table, class table, static table } ASSERT_EQ (1, lua_gettop (L)); // Stack: ... } #ifdef _M_IX86 // Windows 32bit only namespace { int __stdcall StdCall (int i) { return i + 10; } } // namespace TEST_F (NamespaceTests, StdCallFunctions) { luabridge::getGlobalNamespace (L) .addFunction ("StdCall", &StdCall); runLua ("result = StdCall (2)"); ASSERT_TRUE (result ().isNumber ()); ASSERT_EQ (12, result ()); } #endif // _M_IX86