diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-03 15:25:07 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-03 15:25:07 +0100 |
commit | db136649e45a63edb8bc511e756249a9e6ca9ea7 (patch) | |
tree | dcc1c873af32ade27d488bbb13c8eb77ba247b8e /tests/load.js | |
parent | d2097b98de99a24186be2af08de1645d72adce28 (diff) | |
download | fengari-db136649e45a63edb8bc511e756249a9e6ca9ea7.tar.gz fengari-db136649e45a63edb8bc511e756249a9e6ca9ea7.tar.bz2 fengari-db136649e45a63edb8bc511e756249a9e6ca9ea7.zip |
luaL_loadbuffer binary test
Diffstat (limited to 'tests/load.js')
-rw-r--r-- | tests/load.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/load.js b/tests/load.js index 0f524f3..86c3904 100644 --- a/tests/load.js +++ b/tests/load.js @@ -79,4 +79,39 @@ test('load', function (t) { "Correct element(s) on the stack" ); +}); + + +test('luaL_loadbuffer', function (t) { + let luaCode = ` + local a = "hello world" + return a + `, L; + + t.plan(3); + + t.doesNotThrow(function () { + + let bc = toByteCode(luaCode).dataView; + + L = lauxlib.luaL_newstate(); + + linit.luaL_openlibs(L); + + lauxlib.luaL_loadbuffer(L, bc, null, "test"); + + }, "Lua program loaded without error"); + + t.doesNotThrow(function () { + + lapi.lua_call(L, 0, -1); + + }, "Lua program ran without error"); + + t.strictEqual( + lapi.lua_tostring(L, -1), + "hello world", + "Correct element(s) on the stack" + ); + });
\ No newline at end of file |