2020-09-04 12:51:03 +02:00
|
|
|
/*global mock, converse */
|
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;
|
2017-07-11 10:41:11 +02:00
|
|
|
|
2016-03-21 10:53:09 +01:00
|
|
|
|
2020-04-22 13:11:48 +02:00
|
|
|
describe("XMPP Ping", function () {
|
2017-07-11 10:41:11 +02:00
|
|
|
|
2020-04-22 13:11:48 +02:00
|
|
|
describe("An IQ stanza", function () {
|
2016-11-03 11:01:09 +01:00
|
|
|
|
2020-09-04 12:51:03 +02:00
|
|
|
it("is returned when converse.js gets pinged",
|
|
|
|
mock.initConverse(['statusInitialized'], {}, (done, _converse) => {
|
2020-04-22 13:11:48 +02:00
|
|
|
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();
|
|
|
|
}));
|
2016-03-21 10:53:09 +01:00
|
|
|
});
|
2020-04-22 12:10:39 +02:00
|
|
|
});
|