mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
tests: Add muc/util tests for filtering MUC elements
This commit is contained in:
parent
07d70a4d27
commit
b24d0a5b08
1 changed files with 35 additions and 0 deletions
35
spec/muc_util_spec.lua
Normal file
35
spec/muc_util_spec.lua
Normal file
|
@ -0,0 +1,35 @@
|
|||
local muc_util;
|
||||
|
||||
local st = require "util.stanza";
|
||||
|
||||
do
|
||||
local old_pp = package.path;
|
||||
package.path = "./?.lib.lua;"..package.path;
|
||||
muc_util = require "plugins.muc.util";
|
||||
package.path = old_pp;
|
||||
end
|
||||
|
||||
describe("muc/util", function ()
|
||||
describe("filter_muc_x()", function ()
|
||||
it("correctly filters muc#user", function ()
|
||||
local stanza = st.message({ to = "to", from = "from", id = "foo" })
|
||||
:tag("x", { xmlns = "http://jabber.org/protocol/muc#user" })
|
||||
:tag("invite", { to = "user@example.com" });
|
||||
|
||||
assert.equal(1, #stanza.tags);
|
||||
assert.equal(stanza, muc_util.filter_muc_x(stanza));
|
||||
assert.equal(0, #stanza.tags);
|
||||
end);
|
||||
|
||||
it("correctly filters muc#user on a cloned stanza", function ()
|
||||
local stanza = st.message({ to = "to", from = "from", id = "foo" })
|
||||
:tag("x", { xmlns = "http://jabber.org/protocol/muc#user" })
|
||||
:tag("invite", { to = "user@example.com" });
|
||||
|
||||
assert.equal(1, #stanza.tags);
|
||||
local filtered = muc_util.filter_muc_x(st.clone(stanza));
|
||||
assert.equal(1, #stanza.tags);
|
||||
assert.equal(0, #filtered.tags);
|
||||
end);
|
||||
end);
|
||||
end);
|
Loading…
Add table
Add a link
Reference in a new issue