From 66826a03cd3215d1d25856a3d07d9d37be7fe602 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Tue, 21 Feb 2017 09:31:15 +0100 Subject: luaG_typeerror --- tests/ldebug.js | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 92 insertions(+), 2 deletions(-) (limited to 'tests/ldebug.js') diff --git a/tests/ldebug.js b/tests/ldebug.js index a6fa55f..b627cf7 100644 --- a/tests/ldebug.js +++ b/tests/ldebug.js @@ -21,7 +21,7 @@ test('luaG_typeerror', function (t) { return #a `, L; - t.plan(1); + t.plan(2); t.doesNotThrow(function () { @@ -38,5 +38,95 @@ test('luaG_typeerror', function (t) { }, "JS Lua program ran without error"); - console.log(lapi.lua_tostring(L, -1)); + t.ok( + lapi.lua_tostring(L, -1).endsWith("attempt to get length of a boolean value (local 'a')"), + "Correct error was thrown" + ) +}); + + +test('luaG_typeerror', function (t) { + let luaCode = ` + local a = true + return a.yo + `, 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-typeerror"); + + lapi.lua_pcall(L, 0, -1, 0); + + }, "JS Lua program ran without error"); + + t.ok( + lapi.lua_tostring(L, -1).endsWith("attempt to index a boolean value (local 'a')"), + "Correct error was thrown" + ) +}); + + +test('luaG_typeerror', function (t) { + let luaCode = ` + local a = true + return a.yo + `, 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-typeerror"); + + lapi.lua_pcall(L, 0, -1, 0); + + }, "JS Lua program ran without error"); + + t.ok( + lapi.lua_tostring(L, -1).endsWith("attempt to index a boolean value (local 'a')"), + "Correct error was thrown" + ) +}); + + +test('luaG_typeerror', function (t) { + let luaCode = ` + local a = true + a.yo = 1 + `, 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-typeerror"); + + lapi.lua_pcall(L, 0, -1, 0); + + }, "JS Lua program ran without error"); + + t.ok( + lapi.lua_tostring(L, -1).endsWith("attempt to index a boolean value (local 'a')"), + "Correct error was thrown" + ) }); \ No newline at end of file -- cgit v1.2.3-54-g00ecf