// sol2 // The MIT License (MIT) // Copyright (c) 2013-2017 Rapptz, ThePhD and contributors // 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. #define SOL_CHECK_ARGUMENTS 1 #define SOL_ENABLE_INTEROP 1 #include #include #include #include TEST_CASE("large_integer/bool", "pass bool integral value to and from lua") { sol::state lua; lua.open_libraries(); lua.set_function("f", [&](bool num) { REQUIRE(num == true); return num; }); lua.safe_script("x = f(true)"); lua.safe_script("assert(x == true)"); sol::object x = lua["x"]; REQUIRE(x.is()); REQUIRE(x.as() == true); REQUIRE_FALSE(x.is()); { auto result = lua.safe_script("f(1)", sol::script_pass_on_error); REQUIRE_FALSE(result.valid()); } } TEST_CASE("large_integers/unsigned32", "pass large unsigned 32bit values to and from lua") { using T = std::uint32_t; sol::state lua; lua.open_libraries(); lua.set_function("f", [&](T num) -> T { REQUIRE(num == 0xFFFFFFFF); return num; }); lua.safe_script("x = f(0xFFFFFFFF)"); lua.safe_script("assert(x == 0xFFFFFFFF)"); sol::object x = lua["x"]; REQUIRE(x.is()); REQUIRE(x.as() == 0xFFFFFFFF); } TEST_CASE("large_integer/unsigned53", "pass large unsigned 53bit value to and from lua") { using T = std::uint64_t; sol::state lua; lua.open_libraries(); lua.set_function("f", [&](T num) -> T { REQUIRE(num == 0x1FFFFFFFFFFFFFull); return num; }); lua.safe_script("x = f(0x1FFFFFFFFFFFFF)"); lua.safe_script("assert(x == 0x1FFFFFFFFFFFFF)"); sol::object x = lua["x"]; REQUIRE(x.is()); REQUIRE(x.as() == 0x1FFFFFFFFFFFFFull); } TEST_CASE("large_integer/unsigned64", "pass too large unsigned 64bit value to lua") { using T = std::int64_t; sol::state lua; lua.set_function("f", [&](T num) -> T { return num; }); REQUIRE_THROWS([&lua]() { sol::protected_function pf = lua["f"]; auto result = pf(0xFFFFFFFFFFFFFFFFull); }()); } TEST_CASE("large_integer/double", "pass negative and large positive values as signed and unsigned from and to lua") { sol::state lua; lua.open_libraries(); lua.set_function("s32", [&](std::int32_t num) { return num; }); lua.set_function("s64", [&](std::int64_t num) { return num; }); lua.set_function("u32", [&](std::uint32_t num) { return num; }); lua.set_function("u64", [&](std::uint64_t num) { return num; }); //signed 32bit REQUIRE_NOTHROW([&lua]() { lua.safe_script("x = s32(-1)"); lua.safe_script("assert(x == -1)"); lua.safe_script("x = s32(0xFFFFFFFF)"); lua.safe_script("assert(x == -1)"); sol::object x = lua["x"]; REQUIRE(x.is()); REQUIRE(x.as() == -1); REQUIRE(x.is()); REQUIRE(x.as() == 0xFFFFFFFF); }()); //unsigned 32bit REQUIRE_NOTHROW([&lua]() { lua.safe_script("x = u32(0xFFFFFFFF)"); lua.safe_script("assert(x == 0xFFFFFFFF)"); lua.safe_script("x = u32(-1)"); lua.safe_script("assert(x == 0xFFFFFFFF)"); sol::object x = lua["x"]; REQUIRE(x.is()); REQUIRE(x.as() == -1); REQUIRE(x.is()); REQUIRE(x.as() == 0xFFFFFFFF); }()); //signed 64bit REQUIRE_NOTHROW([&lua]() { lua.safe_script("x = s64(-1)"); lua.safe_script("assert(x == -1)"); sol::object x = lua["x"]; REQUIRE(x.is()); REQUIRE(x.as() == -1); REQUIRE(x.is()); REQUIRE(x.as() == 0xFFFFFFFFFFFFFFFFull); }()); }