# HG changeset patch # User Kim Alvefur # Date 1509668015 -3600 # Node ID 60eb22fd21b86cfd57590bdc2aed4c57da844573 # Parent 272ff3ab25f3fca05626237efe7a68992e397dc1 spec/util.encodings: Add some base64 tests (Thanks Link Mavue) diff -r 272ff3ab25f3 -r 60eb22fd21b8 spec/util_encodings_spec.lua --- a/spec/util_encodings_spec.lua Sun Oct 29 02:05:19 2017 +0200 +++ b/spec/util_encodings_spec.lua Fri Nov 03 01:13:35 2017 +0100 @@ -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()