aboutsummaryrefslogtreecommitdiff
path: root/tests/lstrlib.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-17 07:56:18 +0100
committerBenoit Giannangeli <giann@users.noreply.github.com>2017-03-17 10:36:57 +0100
commit0cbdb3527041d016097aa3384af9c5908af2cce6 (patch)
tree599980a9095ec8c3c4348ae1edf41170845e1832 /tests/lstrlib.js
parentc762a38820fba43b2ca041a78ab2931631a0b5fd (diff)
downloadfengari-0cbdb3527041d016097aa3384af9c5908af2cce6.tar.gz
fengari-0cbdb3527041d016097aa3384af9c5908af2cce6.tar.bz2
fengari-0cbdb3527041d016097aa3384af9c5908af2cce6.zip
lua_dump, string.dump
Diffstat (limited to 'tests/lstrlib.js')
-rw-r--r--tests/lstrlib.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/lstrlib.js b/tests/lstrlib.js
index 4df4283..aec8e2a 100644
--- a/tests/lstrlib.js
+++ b/tests/lstrlib.js
@@ -414,4 +414,50 @@ test('string.sub', function (t) {
"456",
"Correct element(s) on the stack"
);
+});
+
+
+test('string.dump', function (t) {
+ let luaCodeToDump = `
+ local todump = function(p1, p2, p3)
+ local s = "hello"
+ local i = 12
+ local f = 12.5
+ local b = true
+
+ return p1 + p2 + p3
+ end`,
+ luaCode = `
+ ${luaCodeToDump}
+
+ return string.dump(todump)
+ `, L, bytes = [];
+
+ t.plan(3);
+
+ t.doesNotThrow(function () {
+
+ let bc = toByteCode(luaCodeToDump).dataView;
+ for (let i = 0; i < bc.byteLength; i++)
+ bytes.push(bc.getUint8(i, true));
+
+ L = lauxlib.luaL_newstate();
+
+ linit.luaL_openlibs(L);
+
+ lauxlib.luaL_loadstring(L, luaCode);
+
+ }, "Lua program loaded without error");
+
+ t.doesNotThrow(function () {
+
+ lapi.lua_call(L, 0, -1);
+
+ }, "Lua program ran without error");
+
+ t.deepEqual(
+ L.stack[L.top -1].value,
+ bytes,
+ "Correct element(s) on the stack"
+ );
}); \ No newline at end of file