From ae4e53e2e7234a167058199085921a9182e8522a Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Fri, 24 Feb 2017 08:52:06 +0100 Subject: table.insert --- tests/ltablib.js | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'tests/ltablib.js') diff --git a/tests/ltablib.js b/tests/ltablib.js index 8221fe0..1a04e4c 100644 --- a/tests/ltablib.js +++ b/tests/ltablib.js @@ -116,4 +116,38 @@ test('table.unpack', function (t) { 4, "Correct element(s) on the stack" ); +}); + + +test('table.insert', function (t) { + let luaCode = ` + local t = {1, 3, 4} + table.insert(t, 5) + table.insert(t, 2, 2) + return t + `, 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-table.insert"); + + lapi.lua_call(L, 0, -1); + + }, "JS Lua program ran without error"); + + t.deepEqual( + [...lapi.lua_topointer(L, -1).entries()] + .filter(e => typeof e[0] === 'number') // Filter out the 'n' field + .map(e => e[1].value).sort(), + [1, 2, 3, 4, 5], + "Correct element(s) on the stack" + ); }); \ No newline at end of file -- cgit v1.2.3-54-g00ecf