Add unit test covering issue #481

Implemented unit test which is validating whether a lambda from
Chaiscript could return a boolean value without throwing any exception.

The same test case is checking whether lambda with boolean return value
could be called peacefully from Chaiscript.
This commit is contained in:
draghan 2019-11-12 21:51:46 +01:00
parent 301f2e7061
commit 0a3bc48788

View File

@ -50,6 +50,26 @@ TEST_CASE("C++11 Lambdas Can Be Registered")
CHECK(chai.eval<std::string>("f2()") == "world"); CHECK(chai.eval<std::string>("f2()") == "world");
} }
TEST_CASE("Lambdas can return boolean")
{
chaiscript::ChaiScript_Basic chai(create_chaiscript_stdlib(),create_chaiscript_parser());
// check lambdas returning bool from chaiscript:
std::function<bool ()> chai_function;
CHECK_NOTHROW(chai_function = chai.eval<std::function<bool ()>>("fun() { 42 != 0 }"));
bool result = false;
CHECK_NOTHROW(result = chai_function());
CHECK(result == true);
// check lambdas returning bool from C++:
auto cpp_function = [](int x) { return x == 42; };
CHECK_NOTHROW(chai.add(chaiscript::fun(cpp_function), "cpp_function"));
CHECK_NOTHROW(result = chai.eval<bool>("cpp_function(314)"));
CHECK(result == false);
}
// dynamic_object tests // dynamic_object tests
TEST_CASE("Dynamic_Object attributes can be shared with C++") TEST_CASE("Dynamic_Object attributes can be shared with C++")