/*global mock, converse */ const original_timeout = jasmine.DEFAULT_TIMEOUT_INTERVAL; describe("A sent presence stanza", function () { beforeEach(() => (jasmine.DEFAULT_TIMEOUT_INTERVAL = 7000)); afterEach(() => (jasmine.DEFAULT_TIMEOUT_INTERVAL = original_timeout)); it("includes the saved status message", mock.initConverse([], {}, async (_converse) => { const { u, Strophe } = converse.env; mock.openControlBox(_converse); spyOn(_converse.connection, 'send').and.callThrough(); const cbview = _converse.chatboxviews.get('controlbox'); const change_status_el = await u.waitUntil(() => cbview.querySelector('.change-status')); change_status_el.click() let modal = _converse.api.modal.get('modal-status-change'); await u.waitUntil(() => u.isVisible(modal.el), 1000); const msg = 'My custom status'; modal.el.querySelector('input[name="status_message"]').value = msg; modal.el.querySelector('[type="submit"]').click(); const sent_stanzas = _converse.connection.sent_stanzas; let sent_presence = await u.waitUntil(() => sent_stanzas.filter(s => Strophe.serialize(s).match('presence')).pop()); expect(Strophe.serialize(sent_presence)) .toBe(``+ `My custom status`+ `0`+ ``+ ``) await u.waitUntil(() => modal.el.getAttribute('aria-hidden') === "true"); await u.waitUntil(() => !u.isVisible(modal.el)); cbview.querySelector('.change-status').click() modal = _converse.api.modal.get('modal-status-change'); await u.waitUntil(() => modal.el.getAttribute('aria-hidden') === "false", 1000); modal.el.querySelector('label[for="radio-busy"]').click(); // Change status to "dnd" modal.el.querySelector('[type="submit"]').click(); await u.waitUntil(() => sent_stanzas.filter(s => Strophe.serialize(s).match('presence')).length === 2); sent_presence = sent_stanzas.filter(s => Strophe.serialize(s).match('presence')).pop(); expect(Strophe.serialize(sent_presence)) .toBe( ``+ `dnd`+ `My custom status`+ `0`+ ``+ ``) })); });