mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza: Fix tests to call error_reply() correctly, and add tests to ensure it vaguely works
This commit is contained in:
parent
060ab50b41
commit
a65352b35f
1 changed files with 4 additions and 2 deletions
|
@ -134,12 +134,13 @@ describe("util.stanza", function()
|
|||
local s = st.stanza("s", { to = "touser", from = "fromuser", id = "123" })
|
||||
:tag("child1");
|
||||
-- Make reply stanza
|
||||
local r = st.error_reply(s);
|
||||
local r = st.error_reply(s, "cancel", "service-unavailable");
|
||||
assert.are.equal(r.name, s.name);
|
||||
assert.are.equal(r.id, s.id);
|
||||
assert.are.equal(r.attr.to, s.attr.from);
|
||||
assert.are.equal(r.attr.from, s.attr.to);
|
||||
assert.are.equal(#r.tags, 1);
|
||||
assert.are.equal(r.tags[1].tags[1].name, "service-unavailable");
|
||||
end);
|
||||
|
||||
it("should work for <iq get>", function()
|
||||
|
@ -147,13 +148,14 @@ describe("util.stanza", function()
|
|||
local s = st.stanza("iq", { to = "touser", from = "fromuser", id = "123", type = "get" })
|
||||
:tag("child1");
|
||||
-- Make reply stanza
|
||||
local r = st.error_reply(s);
|
||||
local r = st.error_reply(s, "cancel", "service-unavailable");
|
||||
assert.are.equal(r.name, s.name);
|
||||
assert.are.equal(r.id, s.id);
|
||||
assert.are.equal(r.attr.to, s.attr.from);
|
||||
assert.are.equal(r.attr.from, s.attr.to);
|
||||
assert.are.equal(r.attr.type, "error");
|
||||
assert.are.equal(#r.tags, 1);
|
||||
assert.are.equal(r.tags[1].tags[1].name, "service-unavailable");
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue