aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-02 14:05:01 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-02 14:05:01 +0100
commit005223711f4e11da5c8f24d19d6e8a6b64f603a8 (patch)
treeb5a7b158af9c7a626c52c1f682bc4141d5a43f39 /tests
parent8785e3801b3bd4b3add20f004c9492565fb77fbd (diff)
downloadfengari-005223711f4e11da5c8f24d19d6e8a6b64f603a8.tar.gz
fengari-005223711f4e11da5c8f24d19d6e8a6b64f603a8.tar.bz2
fengari-005223711f4e11da5c8f24d19d6e8a6b64f603a8.zip
[Parsing tests] TFORCALL, TFORLOOP
Diffstat (limited to 'tests')
-rw-r--r--tests/lexparse.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/lexparse.js b/tests/lexparse.js
index df7cae8..b661d6d 100644
--- a/tests/lexparse.js
+++ b/tests/lexparse.js
@@ -864,4 +864,53 @@ test('Long SETLIST', function (t) {
[1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5],
"Program output is correct"
);
+});
+
+
+test('TFORCALL, TFORLOOP', function (t) {
+ let luaCode = `
+ local iterator = function (t, i)
+ i = i + 1
+ local v = t[i]
+ if v then
+ return i, v
+ end
+ end
+
+ local iprs = function(t)
+ return iterator, t, 0
+ end
+
+ local t = {1, 2, 3}
+ local r = 0
+ for k,v in iprs(t) do
+ r = r + v
+ end
+
+ return r
+ `, L;
+
+ t.plan(3);
+
+ t.doesNotThrow(function () {
+
+ L = lauxlib.luaL_newstate();
+
+ linit.luaL_openlibs(L);
+
+ lapi.lua_load(L, null, luaCode, "test", "text");
+
+ }, "Lua program loaded without error");
+
+ t.doesNotThrow(function () {
+
+ lapi.lua_call(L, 0, -1);
+
+ }, "Lua program ran without error");
+
+ t.strictEqual(
+ lapi.lua_tonumber(L, -1),
+ 6,
+ "Program output is correct"
+ );
}); \ No newline at end of file