diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-02-22 21:40:11 +0100 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-02-22 21:44:39 +0100 |
commit | 7c459409b078e38da07e2570a77945fdc0f55c2c (patch) | |
tree | 97187063047185068abdc62c4b247369675a3cf4 /tests | |
parent | bf6d1aa5d76abcab1588be46bed406db1e9a81d7 (diff) | |
download | fengari-7c459409b078e38da07e2570a77945fdc0f55c2c.tar.gz fengari-7c459409b078e38da07e2570a77945fdc0f55c2c.tar.bz2 fengari-7c459409b078e38da07e2570a77945fdc0f55c2c.zip |
pairs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lbaselib.js | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/tests/lbaselib.js b/tests/lbaselib.js index d2f0e0e..be5cdad 100644 --- a/tests/lbaselib.js +++ b/tests/lbaselib.js @@ -593,4 +593,95 @@ test('next', function (t) { 10, "Correct element(s) on the stack" ); +}); + + +test('pairs', function (t) { + let luaCode = ` + local total = 0 + local t = { + 1, + two = 2, + 3, + four = 4 + } + + for k,v in pairs(t) do + total = total + v + end + + return total + `, 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-pairs"); + + lapi.lua_call(L, 0, -1); + + }, "JS Lua program ran without error"); + + t.strictEqual( + lapi.lua_tonumber(L, -1), + 10, + "Correct element(s) on the stack" + ); +}); + + +test('pairs with __pairs', function (t) { + let luaCode = ` + local total = 0 + + local mt = { + __pairs = function(t) + return next, {5, 6, 7, 8}, nil + end + } + + local t = { + 1, + two = 2, + 3, + four = 4 + } + + setmetatable(t, mt) + + for k,v in pairs(t) do + total = total + v + end + + return total + `, 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-pairs"); + + lapi.lua_call(L, 0, -1); + + }, "JS Lua program ran without error"); + + t.strictEqual( + lapi.lua_tonumber(L, -1), + 26, + "Correct element(s) on the stack" + ); });
\ No newline at end of file |