aboutsummaryrefslogtreecommitdiff
path: root/tests/lbaselib.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lbaselib.js')
-rw-r--r--tests/lbaselib.js53
1 files changed, 52 insertions, 1 deletions
diff --git a/tests/lbaselib.js b/tests/lbaselib.js
index 87009ca..b55afde 100644
--- a/tests/lbaselib.js
+++ b/tests/lbaselib.js
@@ -34,7 +34,7 @@ test('print', function (t) {
lapi.lua_load(L, bc, "test-print");
- lapi.lua_call(L, 0, 1);
+ lapi.lua_call(L, 0, -1);
}, "JS Lua program ran without error");
});
@@ -239,4 +239,55 @@ test('type', function (t) {
"nil",
"Correct element(s) on the stack"
);
+});
+
+
+test('error', function (t) {
+ let luaCode = `
+ error("you fucked up")
+ `, L;
+
+ t.plan(1);
+
+ t.throws(function () {
+
+ let bc = toByteCode(luaCode).dataView;
+
+ L = lauxlib.luaL_newstate();
+
+ linit.luaL_openlibs(L);
+
+ lapi.lua_load(L, bc, "test-error");
+
+ lapi.lua_call(L, 0, -1);
+
+ }, "JS Lua program ran without error");
+});
+
+
+test('error, protected', function (t) {
+ let luaCode = `
+ error("you fucked up")
+ `, L;
+
+ t.plan(2);
+
+ t.doesNotThrow(function () {
+
+ let bc = toByteCode(luaCode).dataView;
+
+ L = lauxlib.luaL_newstate();
+
+ linit.luaL_openlibs(L);
+
+ lapi.lua_load(L, bc, "test-error");
+
+ lapi.lua_pcall(L, 0, -1, 0);
+
+ }, "JS Lua program ran without error");
+
+ t.ok(
+ lapi.lua_tostring(L, -1).endsWith("you fucked up"),
+ "Error is on the stack"
+ )
}); \ No newline at end of file