aboutsummaryrefslogtreecommitdiff
path: root/tests/lapi.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-16 16:04:03 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-16 16:04:44 +0100
commit62cb8279094fd137ce2382fe99592ef0aae0f557 (patch)
tree0ec59ec29c410e20f177e874e0a001ab620e02e2 /tests/lapi.js
parentf556eada483134f5dc433e6bd4510047e4953649 (diff)
downloadfengari-62cb8279094fd137ce2382fe99592ef0aae0f557.tar.gz
fengari-62cb8279094fd137ce2382fe99592ef0aae0f557.tar.bz2
fengari-62cb8279094fd137ce2382fe99592ef0aae0f557.zip
lua_call
Diffstat (limited to 'tests/lapi.js')
-rw-r--r--tests/lapi.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/lapi.js b/tests/lapi.js
index ad39fe1..c0f1cdc 100644
--- a/tests/lapi.js
+++ b/tests/lapi.js
@@ -278,4 +278,38 @@ test('lua_pushcfunction', function (t) {
"function",
"Correct element(s) on the stack"
);
+});
+
+
+test('lua_call (calling a light JS function)', function (t) {
+ let L;
+
+ t.plan(3);
+
+ t.doesNotThrow(function () {
+
+ let fn = function(L) {
+ lapi.lua_pushstring(L, "hello");
+ return 1;
+ };
+
+ L = lauxlib.luaL_newstate();
+
+ lapi.lua_pushcfunction(L, fn);
+
+ lapi.lua_call(L, 0, 1);
+
+ }, "JS Lua program ran without error");
+
+ t.strictEqual(
+ lapi.lua_gettop(L),
+ 1,
+ "top is correct"
+ );
+
+ t.strictEqual(
+ lapi.lua_tostring(L, -1),
+ "hello",
+ "top is correct"
+ );
}); \ No newline at end of file