xmpp.chapril.org-conversejs/spec/ping.js

35 lines
1.3 KiB
JavaScript
Raw Normal View History

2020-04-22 13:11:48 +02:00
/*global mock */
2016-02-19 14:02:42 +01:00
2020-04-22 13:11:48 +02:00
const Strophe = converse.env.Strophe;
const u = converse.env.utils;
2020-04-22 13:11:48 +02:00
describe("XMPP Ping", function () {
2020-04-22 13:11:48 +02:00
describe("An IQ stanza", function () {
2020-04-22 13:11:48 +02:00
it("is returned when converse.js gets pinged", mock.initConverse((done, _converse) => {
const ping = u.toStanza(`
<iq from="${_converse.domain}"
to="${_converse.jid}" id="s2c1" type="get">
<ping xmlns="urn:xmpp:ping"/>
</iq>`);
_converse.connection._dataRecv(mock.createRequest(ping));
const sent_stanza = _converse.connection.IQ_stanzas.pop();
expect(Strophe.serialize(sent_stanza)).toBe(
`<iq id="s2c1" to="${_converse.domain}" type="result" xmlns="jabber:client"/>`);
done();
}));
it("is sent out when converse.js pings a server", mock.initConverse((done, _converse) => {
_converse.api.ping();
const sent_stanza = _converse.connection.IQ_stanzas.pop();
expect(Strophe.serialize(sent_stanza)).toBe(
`<iq id="${sent_stanza.getAttribute('id')}" to="montague.lit" type="get" xmlns="jabber:client">`+
`<ping xmlns="urn:xmpp:ping"/>`+
`</iq>`);
done();
}));
});
});