22 lines
1.0 KiB
JavaScript
22 lines
1.0 KiB
JavaScript
(function (root, factory) {
|
|
define(["jquery", "jasmine", "mock", "test-utils"], factory);
|
|
} (this, function ($, jasmine, mock, test_utils) {
|
|
|
|
return describe("The XMPPStatus model", function() {
|
|
|
|
it("won't send <show>online</show> when setting a custom status message", mock.initConverse(function (_converse) {
|
|
_converse.xmppstatus.save({'status': 'online'});
|
|
spyOn(_converse.connection, 'send');
|
|
_converse.api.user.status.message.set("I'm also happy!");
|
|
expect(_converse.connection.send).toHaveBeenCalled();
|
|
var $stanza = $(_converse.connection.send.calls.argsFor(0)[0].tree());
|
|
expect($stanza.children().length).toBe(3);
|
|
expect($stanza.children('status').length).toBe(1);
|
|
expect($stanza.children('status').text()).toBe("I'm also happy!");
|
|
expect($stanza.children('show').length).toBe(0);
|
|
expect($stanza.children('priority').length).toBe(1);
|
|
expect($stanza.children('priority').text()).toBe('0');
|
|
}));
|
|
});
|
|
}));
|