mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.strbitop: Add tests covering basics
Also as docs
This commit is contained in:
parent
539255c692
commit
d5161fbf6f
1 changed files with 41 additions and 0 deletions
41
spec/util_strbitop.lua
Normal file
41
spec/util_strbitop.lua
Normal file
|
@ -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);
|
Loading…
Add table
Add a link
Reference in a new issue