diff options
author | Kim Alvefur <zash@zash.se> | 2020-10-15 16:41:51 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-10-15 16:41:51 +0200 |
commit | d5161fbf6fc9abcbff07dcd5512413cf294c74a1 (patch) | |
tree | 568d9acc6b7532e859e7039304cd2b10e92ab863 | |
parent | 539255c6923950c67706fc02a24c08ecb30a21b3 (diff) | |
download | prosody-d5161fbf6fc9abcbff07dcd5512413cf294c74a1.tar.gz prosody-d5161fbf6fc9abcbff07dcd5512413cf294c74a1.zip |
util.strbitop: Add tests covering basics
Also as docs
-rw-r--r-- | spec/util_strbitop.lua | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/spec/util_strbitop.lua b/spec/util_strbitop.lua new file mode 100644 index 00000000..58a13772 --- /dev/null +++ b/spec/util_strbitop.lua @@ -0,0 +1,41 @@ +local strbitop = require "util.strbitop"; +describe("util.strbitop", function () + describe("sand()", function () + it("works", function () + assert.equal(string.rep("Aa", 100), strbitop.sand(string.rep("a", 200), "Aa")); + end); + it("returns empty string if first argument is empty", function () + assert.equal("", strbitop.sand("", "")); + assert.equal("", strbitop.sand("", "key")); + end); + it("returns initial string if key is empty", function () + assert.equal("hello", strbitop.sand("hello", "")); + end); + end); + + describe("sor()", function () + it("works", function () + assert.equal(string.rep("a", 200), strbitop.sor(string.rep("Aa", 100), "a")); + end); + it("returns empty string if first argument is empty", function () + assert.equal("", strbitop.sor("", "")); + assert.equal("", strbitop.sor("", "key")); + end); + it("returns initial string if key is empty", function () + assert.equal("hello", strbitop.sor("hello", "")); + end); + end); + + describe("sxor()", function () + it("works", function () + assert.equal(string.rep("Aa", 100), strbitop.sxor(string.rep("a", 200), " \0")); + end); + it("returns empty string if first argument is empty", function () + assert.equal("", strbitop.sxor("", "")); + assert.equal("", strbitop.sxor("", "key")); + end); + it("returns initial string if key is empty", function () + assert.equal("hello", strbitop.sxor("hello", "")); + end); + end); +end); |