123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- (function (root, factory) {
- define([
- "jasmine",
- "mock",
- "test-utils"], factory);
- } (this, function (jasmine, mock, test_utils) {
- const _ = converse.env._,
- u = converse.env.utils;
- describe("Converse", function() {
- describe("Authentication", function () {
- it("needs either a bosh_service_url a websocket_url or both", mock.initConverse(async (done, _converse) => {
- const url = _converse.bosh_service_url;
- const connection = _converse.connection;
- delete _converse.bosh_service_url;
- delete _converse.connection;
- try {
- await _converse.initConnection();
- } catch (e) {
- _converse.bosh_service_url = url;
- _converse.connection = connection;
- expect(e.message).toBe("initConnection: you must supply a value for either the bosh_service_url or websocket_url or both.");
- done();
- }
- }));
- });
- describe("A chat state indication", function () {
- it("are sent out when the client becomes or stops being idle",
- mock.initConverse(['discoInitialized'], {}, (done, _converse) => {
- spyOn(_converse, 'sendCSI').and.callThrough();
- let sent_stanza;
- spyOn(_converse.connection, 'send').and.callFake(function (stanza) {
- sent_stanza = stanza;
- });
- let i = 0;
- _converse.idle_seconds = 0; // Usually initialized by registerIntervalHandler
- _converse.disco_entities.get(_converse.domain).features['urn:xmpp:csi:0'] = true; // Mock that the server supports CSI
- _converse.csi_waiting_time = 3; // The relevant config option
- while (i <= _converse.csi_waiting_time) {
- expect(_converse.sendCSI).not.toHaveBeenCalled();
- _converse.onEverySecond();
- i++;
- }
- expect(_converse.sendCSI).toHaveBeenCalledWith('inactive');
- expect(sent_stanza.toLocaleString()).toBe('<inactive xmlns="urn:xmpp:csi:0"/>');
- _converse.onUserActivity();
- expect(_converse.sendCSI).toHaveBeenCalledWith('active');
- expect(sent_stanza.toLocaleString()).toBe('<active xmlns="urn:xmpp:csi:0"/>');
- // Reset values
- _converse.csi_waiting_time = 0;
- _converse.disco_entities.get(_converse.domain).features['urn:xmpp:csi:0'] = false;
- done();
- }));
- });
- describe("Automatic status change", function () {
- it("happens when the client is idle for long enough", mock.initConverse((done, _converse) => {
- let i = 0;
- // Usually initialized by registerIntervalHandler
- _converse.idle_seconds = 0;
- _converse.auto_changed_status = false;
- // The relevant config options
- _converse.auto_away = 3;
- _converse.auto_xa = 6;
- expect(_converse.api.user.status.get()).toBe('online');
- while (i <= _converse.auto_away) {
- _converse.onEverySecond(); i++;
- }
- expect(_converse.auto_changed_status).toBe(true);
- while (i <= _converse.auto_xa) {
- expect(_converse.api.user.status.get()).toBe('away');
- _converse.onEverySecond();
- i++;
- }
- expect(_converse.api.user.status.get()).toBe('xa');
- expect(_converse.auto_changed_status).toBe(true);
- _converse.onUserActivity();
- expect(_converse.api.user.status.get()).toBe('online');
- expect(_converse.auto_changed_status).toBe(false);
- // Check that it also works for the chat feature
- _converse.api.user.status.set('chat')
- i = 0;
- while (i <= _converse.auto_away) {
- _converse.onEverySecond();
- i++;
- }
- expect(_converse.auto_changed_status).toBe(true);
- while (i <= _converse.auto_xa) {
- expect(_converse.api.user.status.get()).toBe('away');
- _converse.onEverySecond();
- i++;
- }
- expect(_converse.api.user.status.get()).toBe('xa');
- expect(_converse.auto_changed_status).toBe(true);
- _converse.onUserActivity();
- expect(_converse.api.user.status.get()).toBe('online');
- expect(_converse.auto_changed_status).toBe(false);
- // Check that it doesn't work for 'dnd'
- _converse.api.user.status.set('dnd');
- i = 0;
- while (i <= _converse.auto_away) {
- _converse.onEverySecond();
- i++;
- }
- expect(_converse.api.user.status.get()).toBe('dnd');
- expect(_converse.auto_changed_status).toBe(false);
- while (i <= _converse.auto_xa) {
- expect(_converse.api.user.status.get()).toBe('dnd');
- _converse.onEverySecond();
- i++;
- }
- expect(_converse.api.user.status.get()).toBe('dnd');
- expect(_converse.auto_changed_status).toBe(false);
- _converse.onUserActivity();
- expect(_converse.api.user.status.get()).toBe('dnd');
- expect(_converse.auto_changed_status).toBe(false);
- done();
- }));
- });
- describe("The \"user\" grouping", function () {
- describe("The \"status\" API", function () {
- it("has a method for getting the user's availability", mock.initConverse((done, _converse) => {
- _converse.xmppstatus.set('status', 'online');
- expect(_converse.api.user.status.get()).toBe('online');
- _converse.xmppstatus.set('status', 'dnd');
- expect(_converse.api.user.status.get()).toBe('dnd');
- done();
- }));
- it("has a method for setting the user's availability", mock.initConverse((done, _converse) => {
- _converse.api.user.status.set('away');
- expect(_converse.xmppstatus.get('status')).toBe('away');
- _converse.api.user.status.set('dnd');
- expect(_converse.xmppstatus.get('status')).toBe('dnd');
- _converse.api.user.status.set('xa');
- expect(_converse.xmppstatus.get('status')).toBe('xa');
- _converse.api.user.status.set('chat');
- expect(_converse.xmppstatus.get('status')).toBe('chat');
- expect(_.partial(_converse.api.user.status.set, 'invalid')).toThrow(
- new Error('Invalid availability value. See https://xmpp.org/rfcs/rfc3921.html#rfc.section.2.2.2.1')
- );
- done();
- }));
- it("allows setting the status message as well", mock.initConverse((done, _converse) => {
- _converse.api.user.status.set('away', "I'm in a meeting");
- expect(_converse.xmppstatus.get('status')).toBe('away');
- expect(_converse.xmppstatus.get('status_message')).toBe("I'm in a meeting");
- done();
- }));
- it("has a method for getting the user's status message", mock.initConverse((done, _converse) => {
- _converse.xmppstatus.set('status_message', undefined);
- expect(_converse.api.user.status.message.get()).toBe(undefined);
- _converse.xmppstatus.set('status_message', "I'm in a meeting");
- expect(_converse.api.user.status.message.get()).toBe("I'm in a meeting");
- done();
- }));
- it("has a method for setting the user's status message", mock.initConverse((done, _converse) => {
- _converse.xmppstatus.set('status_message', undefined);
- _converse.api.user.status.message.set("I'm in a meeting");
- expect(_converse.xmppstatus.get('status_message')).toBe("I'm in a meeting");
- done();
- }));
- });
- });
- describe("The \"tokens\" API", function () {
- it("has a method for retrieving the next RID", mock.initConverse((done, _converse) => {
- test_utils.createContacts(_converse, 'current');
- const old_connection = _converse.connection;
- _converse.connection._proto.rid = '1234';
- expect(_converse.api.tokens.get('rid')).toBe('1234');
- _converse.connection = undefined;
- expect(_converse.api.tokens.get('rid')).toBe(null);
- // Restore the connection
- _converse.connection = old_connection;
- done();
- }));
- it("has a method for retrieving the SID", mock.initConverse((done, _converse) => {
- test_utils.createContacts(_converse, 'current');
- const old_connection = _converse.connection;
- _converse.connection._proto.sid = '1234';
- expect(_converse.api.tokens.get('sid')).toBe('1234');
- _converse.connection = undefined;
- expect(_converse.api.tokens.get('sid')).toBe(null);
- // Restore the connection
- _converse.connection = old_connection;
- done();
- }));
- });
- describe("The \"contacts\" API", function () {
- it("has a method 'get' which returns wrapped contacts",
- mock.initConverse([], {}, async function (done, _converse) {
- await test_utils.waitForRoster(_converse, 'current');
- let contact = await _converse.api.contacts.get('non-existing@jabber.org');
- expect(contact).toBeFalsy();
- // Check when a single jid is given
- const jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit';
- contact = await _converse.api.contacts.get(jid);
- expect(contact.getDisplayName()).toBe(mock.cur_names[0]);
- expect(contact.get('jid')).toBe(jid);
- // You can retrieve multiple contacts by passing in an array
- const jid2 = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@montague.lit';
- let list = await _converse.api.contacts.get([jid, jid2]);
- expect(Array.isArray(list)).toBeTruthy();
- expect(list[0].getDisplayName()).toBe(mock.cur_names[0]);
- expect(list[1].getDisplayName()).toBe(mock.cur_names[1]);
- // Check that all JIDs are returned if you call without any parameters
- list = await _converse.api.contacts.get();
- expect(list.length).toBe(mock.cur_names.length);
- done();
- }));
- it("has a method 'add' with which contacts can be added",
- mock.initConverse(['rosterInitialized'], {}, async (done, _converse) => {
- await test_utils.waitForRoster(_converse, 'current', 0);
- try {
- await _converse.api.contacts.add();
- throw new Error('Call should have failed');
- } catch (e) {
- expect(e.message).toBe('contacts.add: invalid jid');
- }
- try {
- await _converse.api.contacts.add("invalid jid");
- throw new Error('Call should have failed');
- } catch (e) {
- expect(e.message).toBe('contacts.add: invalid jid');
- }
- spyOn(_converse.roster, 'addAndSubscribe');
- await _converse.api.contacts.add("newcontact@example.org");
- expect(_converse.roster.addAndSubscribe).toHaveBeenCalled();
- done();
- }));
- });
- describe("The \"chats\" API", function() {
- it("has a method 'get' which returns the promise that resolves to a chat model", mock.initConverse(
- ['rosterInitialized', 'chatBoxesInitialized'], {},
- async (done, _converse) => {
- await test_utils.openControlBox(_converse);
- await test_utils.waitForRoster(_converse, 'current', 2);
- // Test on chat that doesn't exist.
- let chat = await _converse.api.chats.get('non-existing@jabber.org');
- expect(chat).toBeFalsy();
- const jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit';
- const jid2 = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@montague.lit';
- // Test on chat that's not open
- chat = await _converse.api.chats.get(jid);
- expect(chat === null).toBeTruthy();
- expect(_converse.chatboxes.length).toBe(1);
- // Test for one JID
- chat = await _converse.api.chats.open(jid);
- expect(chat instanceof Object).toBeTruthy();
- expect(chat.get('box_id')).toBe(`box-${btoa(jid)}`);
- const view = _converse.chatboxviews.get(jid);
- await u.waitUntil(() => u.isVisible(view.el));
- // Test for multiple JIDs
- test_utils.openChatBoxFor(_converse, jid2);
- await u.waitUntil(() => _converse.chatboxes.length == 3);
- const list = await _converse.api.chats.get([jid, jid2]);
- expect(Array.isArray(list)).toBeTruthy();
- expect(list[0].get('box_id')).toBe(`box-${btoa(jid)}`);
- expect(list[1].get('box_id')).toBe(`box-${btoa(jid2)}`);
- done();
- }));
- it("has a method 'open' which opens and returns a promise that resolves to a chat model", mock.initConverse(
- ['rosterGroupsFetched', 'chatBoxesInitialized'], {},
- async (done, _converse) => {
- await test_utils.openControlBox(_converse);
- await test_utils.waitForRoster(_converse, 'current', 2);
- const jid = mock.cur_names[0].replace(/ /g,'.').toLowerCase() + '@montague.lit';
- const jid2 = mock.cur_names[1].replace(/ /g,'.').toLowerCase() + '@montague.lit';
- // Test on chat that doesn't exist.
- let chat = await _converse.api.chats.get('non-existing@jabber.org');
- expect(chat).toBeFalsy();
- chat = await _converse.api.chats.open(jid);
- expect(chat instanceof Object).toBeTruthy();
- expect(chat.get('box_id')).toBe(`box-${btoa(jid)}`);
- expect(
- Object.keys(chat),
- ['close', 'endOTR', 'focus', 'get', 'initiateOTR', 'is_chatroom', 'maximize', 'minimize', 'open', 'set']
- );
- const view = _converse.chatboxviews.get(jid);
- await u.waitUntil(() => u.isVisible(view.el));
- // Test for multiple JIDs
- const list = await _converse.api.chats.open([jid, jid2]);
- expect(Array.isArray(list)).toBeTruthy();
- expect(list[0].get('box_id')).toBe(`box-${btoa(jid)}`);
- expect(list[1].get('box_id')).toBe(`box-${btoa(jid2)}`);
- done();
- }));
- });
- describe("The \"settings\" API", function() {
- it("has methods 'get' and 'set' to set configuration settings",
- mock.initConverse(null, {'play_sounds': true}, (done, _converse) => {
- expect(_.keys(_converse.api.settings)).toEqual(["update", "get", "set"]);
- expect(_converse.api.settings.get("play_sounds")).toBe(true);
- _converse.api.settings.set("play_sounds", false);
- expect(_converse.api.settings.get("play_sounds")).toBe(false);
- _converse.api.settings.set({"play_sounds": true});
- expect(_converse.api.settings.get("play_sounds")).toBe(true);
- // Only whitelisted settings allowed.
- expect(typeof _converse.api.settings.get("non_existing")).toBe("undefined");
- _converse.api.settings.set("non_existing", true);
- expect(typeof _converse.api.settings.get("non_existing")).toBe("undefined");
- done();
- }));
- });
- describe("The \"plugins\" API", function() {
- it("only has a method 'add' for registering plugins", mock.initConverse((done, _converse) => {
- expect(_.keys(converse.plugins)).toEqual(["add"]);
- // Cheating a little bit. We clear the plugins to test more easily.
- const _old_plugins = _converse.pluggable.plugins;
- _converse.pluggable.plugins = [];
- converse.plugins.add('plugin1', {});
- expect(_.keys(_converse.pluggable.plugins)).toEqual(['plugin1']);
- converse.plugins.add('plugin2', {});
- expect(_.keys(_converse.pluggable.plugins)).toEqual(['plugin1', 'plugin2']);
- _converse.pluggable.plugins = _old_plugins;
- done();
- }));
- describe("The \"plugins.add\" method", function() {
- it("throws an error when multiple plugins attempt to register with the same name",
- mock.initConverse((done, _converse) => { // eslint-disable-line no-unused-vars
- converse.plugins.add('myplugin', {});
- const error = new TypeError('Error: plugin with name "myplugin" has already been registered!');
- expect(_.partial(converse.plugins.add, 'myplugin', {})).toThrow(error);
- done();
- }));
- });
- });
- });
- }));
|