aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-17 15:08:28 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-17 15:22:29 +0100
commitaea4af6bafafd0aa166e41ead5ce90b530e3ac0a (patch)
treec9420cb341d612c67f713820e9dbd0947c95c6a1 /tests
parent2db30e01b8c5fb3186b99ed122eb0763b15ee095 (diff)
downloadfengari-aea4af6bafafd0aa166e41ead5ce90b530e3ac0a.tar.gz
fengari-aea4af6bafafd0aa166e41ead5ce90b530e3ac0a.tar.bz2
fengari-aea4af6bafafd0aa166e41ead5ce90b530e3ac0a.zip
string.packsize
Diffstat (limited to 'tests')
-rw-r--r--tests/lstrlib.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/lstrlib.js b/tests/lstrlib.js
index 23cd786..4185f04 100644
--- a/tests/lstrlib.js
+++ b/tests/lstrlib.js
@@ -459,4 +459,38 @@ test('string.dump', function (t) {
"hello1212.5",
"Correct element(s) on the stack"
);
+});
+
+
+test('string.pack/unpack/packsize', function (t) {
+ let luaCode = `
+ local s1, n, s2 = "hello", 2, "you"
+ local packed = string.pack("zjz", s1, n, s2)
+ local us1, un, us2 = string.unpack("zjz", packed)
+ return s1 == us1 and n == un and s2 == us2
+ `, L;
+
+ t.plan(3);
+
+ t.doesNotThrow(function () {
+
+ 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.strictEqual(
+ lapi.lua_tostring(L, -1),
+ "FFFFFFF",
+ "Correct element(s) on the stack"
+ );
}); \ No newline at end of file