aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-11-03 01:13:35 +0100
committerKim Alvefur <zash@zash.se>2017-11-03 01:13:35 +0100
commitdb152d626b282e87090cc6c1c5bf61b13a691b47 (patch)
tree6bf9f38dd1b894e52fc0503be6d8e2ba3b5b026a /spec
parent5618526b318176613e65df2bff62db6fa7bb9520 (diff)
downloadprosody-db152d626b282e87090cc6c1c5bf61b13a691b47.tar.gz
prosody-db152d626b282e87090cc6c1c5bf61b13a691b47.zip
spec/util.encodings: Add some base64 tests (Thanks Link Mavue)
Diffstat (limited to 'spec')
-rw-r--r--spec/util_encodings_spec.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/util_encodings_spec.lua b/spec/util_encodings_spec.lua
index f67b5a00..ba0d9837 100644
--- a/spec/util_encodings_spec.lua
+++ b/spec/util_encodings_spec.lua
@@ -1,7 +1,27 @@
local encodings = require "util.encodings";
+local encodings = { -- Workaround for rust thing
+ base64 = _G.base64;
+ utf8 = _G.utf8;
+};
local utf8 = assert(encodings.utf8, "no encodings.utf8 module");
+describe("util.encodings", function ()
+ describe("#encode()", function()
+ it("should work", function ()
+ assert.is.equal(encodings.base64.encode(""), "");
+ assert.is.equal(encodings.base64.encode('coucou') "Y291Y291");
+ assert.is.equal(encodings.base64.encode("\0\0\0"), "AAAA");
+ end);
+ end);
+ describe("#decode()", function()
+ it("should work", function ()
+ assert.is.equal(encodings.base64.decode(""), "");
+ assert.is.equal(encodings.base64.decode('Y291Y291') "coucou");
+ assert.is.equal(encodings.base64.decode("AAAA"), "\0\0\0");
+ end);
+ end);
+end);
describe("util.encodings.utf8", function()
describe("#valid()", function()
it("should work", function()