From 6316cab500cdaa944c6d2ef886138e7e9da0cc7c Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Sat, 18 Feb 2017 07:59:06 +0100 Subject: Corrected lua_gettop, print works ! --- tests/lapi.js | 118 ++++++++++++---------------------------------------------- 1 file changed, 23 insertions(+), 95 deletions(-) (limited to 'tests/lapi.js') diff --git a/tests/lapi.js b/tests/lapi.js index b7ba8ed..561b774 100644 --- a/tests/lapi.js +++ b/tests/lapi.js @@ -16,10 +16,10 @@ const lua = require('../src/lua.js'); const linit = require('../src/linit.js'); const CT = lua.constant_types; -test('luaL_newstate, lua_pushnil, lua_gettop, luaL_typename', function (t) { +test('luaL_newstate, lua_pushnil, luaL_typename', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -30,13 +30,7 @@ test('luaL_newstate, lua_pushnil, lua_gettop, luaL_typename', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "nil", "Correct element(s) on the stack" ); @@ -46,7 +40,7 @@ test('luaL_newstate, lua_pushnil, lua_gettop, luaL_typename', function (t) { test('lua_pushnumber', function (t) { let L; - t.plan(4); + t.plan(3); t.doesNotThrow(function () { @@ -57,13 +51,7 @@ test('lua_pushnumber', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "number", "Correct element(s) on the stack" ); @@ -79,7 +67,7 @@ test('lua_pushnumber', function (t) { test('lua_pushinteger', function (t) { let L; - t.plan(4); + t.plan(3); t.doesNotThrow(function () { @@ -90,13 +78,7 @@ test('lua_pushinteger', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "number", "Correct element(s) on the stack" ); @@ -112,7 +94,7 @@ test('lua_pushinteger', function (t) { test('lua_pushstring', function (t) { let L; - t.plan(4); + t.plan(3); t.doesNotThrow(function () { @@ -123,13 +105,7 @@ test('lua_pushstring', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "string", "Correct element(s) on the stack" ); @@ -145,7 +121,7 @@ test('lua_pushstring', function (t) { test('lua_pushboolean', function (t) { let L; - t.plan(4); + t.plan(3); t.doesNotThrow(function () { @@ -156,13 +132,7 @@ test('lua_pushboolean', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "boolean", "Correct element(s) on the stack" ); @@ -178,7 +148,7 @@ test('lua_pushboolean', function (t) { test('lua_pushvalue', function (t) { let L; - t.plan(6); + t.plan(5); t.doesNotThrow(function () { @@ -190,12 +160,6 @@ test('lua_pushvalue', function (t) { }, "JS Lua program ran without error"); - t.strictEqual( - lapi.lua_gettop(L), - 2, - "top is correct" - ); - t.strictEqual( lauxlib.luaL_typename(L, -1), "string", @@ -211,13 +175,13 @@ test('lua_pushvalue', function (t) { t.strictEqual( lapi.lua_tostring(L, -1), "hello", - "top is correct" + "Correct element(s) on the stack" ); t.strictEqual( lapi.lua_tostring(L, -2), "hello", - "top is correct" + "Correct element(s) on the stack" ); }); @@ -225,7 +189,7 @@ test('lua_pushvalue', function (t) { test('lua_pushjsclosure', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -241,13 +205,7 @@ test('lua_pushjsclosure', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "function", "Correct element(s) on the stack" ); @@ -257,7 +215,7 @@ test('lua_pushjsclosure', function (t) { test('lua_pushjsfunction', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -272,13 +230,7 @@ test('lua_pushjsfunction', function (t) { }, "JS Lua program ran without error"); t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - - t.strictEqual( - lauxlib.luaL_typename(L, lapi.lua_gettop(L)), + lauxlib.luaL_typename(L, -1), "function", "Correct element(s) on the stack" ); @@ -288,7 +240,7 @@ test('lua_pushjsfunction', function (t) { test('lua_call (calling a light JS function)', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -305,12 +257,6 @@ test('lua_call (calling a light JS function)', function (t) { }, "JS Lua program ran without error"); - t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - t.strictEqual( lapi.lua_tostring(L, -1), "hello", @@ -322,7 +268,7 @@ test('lua_call (calling a light JS function)', function (t) { test('lua_call (calling a JS closure)', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -340,12 +286,6 @@ test('lua_call (calling a JS closure)', function (t) { }, "JS Lua program ran without error"); - t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - t.strictEqual( lapi.lua_tostring(L, -1), "upvalue hello !", @@ -357,7 +297,7 @@ test('lua_call (calling a JS closure)', function (t) { test('lua_pcall (calling a light JS function)', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -374,12 +314,6 @@ test('lua_pcall (calling a light JS function)', function (t) { }, "JS Lua program ran without error"); - t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - t.strictEqual( lapi.lua_tostring(L, -1), "hello", @@ -414,7 +348,7 @@ test('lua_pcall that breaks', function (t) { test('lua_pop', function (t) { let L; - t.plan(3); + t.plan(2); t.doesNotThrow(function () { @@ -427,12 +361,6 @@ test('lua_pop', function (t) { }, "JS Lua program ran without error"); - t.strictEqual( - lapi.lua_gettop(L), - 1, - "top is correct" - ); - t.strictEqual( lapi.lua_tostring(L, -1), "hello", @@ -567,7 +495,7 @@ test('lua_settable, lua_gettable', function (t) { test('print', function (t) { let luaCode = ` - print("hello world") + print("hello", "world", 123) `, L; t.plan(1); -- cgit v1.2.3-54-g00ecf