(function (root, factory) { define("mock", [], factory); }(this, function () { converse.load(); const _ = converse.env._; const Promise = converse.env.Promise; const Strophe = converse.env.Strophe; const dayjs = converse.env.dayjs; const $iq = converse.env.$iq; window.libsignal = { 'SignalProtocolAddress': function (name, device_id) { this.name = name; this.deviceId = device_id; }, 'SessionCipher': function (storage, remote_address) { this.remoteAddress = remote_address; this.storage = storage; this.encrypt = () => Promise.resolve({ 'type': 1, 'body': 'c1ph3R73X7', 'registrationId': '1337' }); this.decryptPreKeyWhisperMessage = (key_and_tag) => { return Promise.resolve(key_and_tag); }; this.decryptWhisperMessage = (key_and_tag) => { return Promise.resolve(key_and_tag); } }, 'SessionBuilder': function (storage, remote_address) { // eslint-disable-line no-unused-vars this.processPreKey = function () { return Promise.resolve(); } }, 'KeyHelper': { 'generateIdentityKeyPair': function () { return Promise.resolve({ 'pubKey': new TextEncoder('utf-8').encode('1234'), 'privKey': new TextEncoder('utf-8').encode('4321') }); }, 'generateRegistrationId': function () { return '123456789'; }, 'generatePreKey': function (keyid) { return Promise.resolve({ 'keyId': keyid, 'keyPair': { 'pubKey': new TextEncoder('utf-8').encode('1234'), 'privKey': new TextEncoder('utf-8').encode('4321') } }); }, 'generateSignedPreKey': function (identity_keypair, keyid) { return Promise.resolve({ 'signature': new TextEncoder('utf-8').encode('11112222333344445555'), 'keyId': keyid, 'keyPair': { 'pubKey': new TextEncoder('utf-8').encode('1234'), 'privKey': new TextEncoder('utf-8').encode('4321') } }); } } }; const mock = {}; mock.view_mode = 'overlayed'; // Names from http://www.fakenamegenerator.com/ mock.req_names = [ 'Escalus, prince of Verona', 'The Nurse', 'Paris' ]; mock.pend_names = [ 'Lord Capulet', 'Lady Capulet', 'Servant' ]; mock.cur_names = [ 'Mercutio', 'Juliet Capulet', 'Lady Montague', 'Lord Montague', 'Friar Laurence', 'Tybalt', 'Lady Capulet', 'Benviolo', 'Balthasar', 'Peter', 'Abram', 'Sampson', 'Gregory', 'Potpan', 'Friar John' ]; mock.num_contacts = mock.req_names.length + mock.pend_names.length + mock.cur_names.length; mock.groups = { 'colleagues': 3, 'friends & acquaintences': 3, 'Family': 4, 'ænemies': 3, 'Ungrouped': 2 }; mock.chatroom_names = [ 'Dyon van de Wege', 'Thomas Kalb', 'Dirk Theissen', 'Felix Hofmann', 'Ka Lek', 'Anne Ebersbacher' ]; // TODO: need to also test other roles and affiliations mock.chatroom_roles = { 'Anne Ebersbacher': { affiliation: "owner", role: "moderator" }, 'Dirk Theissen': { affiliation: "admin", role: "moderator" }, 'Dyon van de Wege': { affiliation: "member", role: "occupant" }, 'Felix Hofmann': { affiliation: "member", role: "occupant" }, 'Ka Lek': { affiliation: "member", role: "occupant" }, 'Thomas Kalb': { affiliation: "member", role: "occupant" } }; mock.event = { 'preventDefault': function () {} }; const OriginalConnection = Strophe.Connection; function MockConnection (service, options) { OriginalConnection.call(this, service, options); Strophe.Bosh.prototype._processRequest = function () {}; // Don't attempt to send out stanzas const sendIQ = this.sendIQ; this.IQ_stanzas = []; this.IQ_ids = []; this.sendIQ = function (iq, callback, errback) { if (!_.isElement(iq)) { iq = iq.nodeTree; } this.IQ_stanzas.push(iq); const id = sendIQ.bind(this)(iq, callback, errback); this.IQ_ids.push(id); return id; } const send = this.send; this.sent_stanzas = []; this.send = function (stanza) { if (_.isElement(stanza)) { this.sent_stanzas.push(stanza); } else { this.sent_stanzas.push(stanza.nodeTree); } return send.apply(this, arguments); } this.features = Strophe.xmlHtmlNode( ''+ ''+ ''+ ''+ ''+ ''+ ''+ ``+ ''+ ''+ ''+ '').firstChild; this._proto._connect = () => { this.connected = true; this.mock = true; this.jid = 'romeo@montague.lit/orchard'; this._changeConnectStatus(Strophe.Status.BINDREQUIRED); }; this.bind = () => { this.authenticated = true; this.authenticated = true; this._changeConnectStatus(Strophe.Status.CONNECTED); }; this._proto._disconnect = () => this._onDisconnectTimeout(); this._proto._onDisconnectTimeout = _.noop; } MockConnection.prototype = Object.create(OriginalConnection.prototype); Strophe.Connection = MockConnection; async function initConverse (settings) { window.localStorage.clear(); window.sessionStorage.clear(); const _converse = await converse.initialize(Object.assign({ 'animate': false, 'auto_subscribe': false, 'bosh_service_url': 'montague.lit/http-bind', 'debug': false, 'i18n': 'en', 'no_trimming': true, 'play_sounds': false, 'use_emojione': false, 'view_mode': mock.view_mode, }, settings || {})); _converse.ChatBoxViews.prototype.trimChat = function () {}; _converse.api.vcard.get = function (model, force) { return new Promise(resolve => { let jid; if (_.isString(model)) { jid = model; } else if (!model.get('vcard_updated') || force) { jid = model.get('jid') || model.get('muc_jid'); } let fullname; if (!jid || jid == 'romeo@montague.lit') { jid = 'romeo@montague.lit'; fullname = 'Romeo Montague' ; } else { const name = jid.split('@')[0].replace(/\./g, ' ').split(' '); const last = name.length-1; name[0] = name[0].charAt(0).toUpperCase()+name[0].slice(1); name[last] = name[last].charAt(0).toUpperCase()+name[last].slice(1); fullname = name.join(' '); } const vcard = $iq().c('vCard').c('FN').t(fullname).nodeTree; const result = { 'vcard': vcard, 'fullname': _.get(vcard.querySelector('FN'), 'textContent'), 'image': _.get(vcard.querySelector('PHOTO BINVAL'), 'textContent'), 'image_type': _.get(vcard.querySelector('PHOTO TYPE'), 'textContent'), 'url': _.get(vcard.querySelector('URL'), 'textContent'), 'vcard_updated': dayjs().format(), 'vcard_error': undefined }; resolve(result); }).catch(e => _converse.log(e, Strophe.LogLevel.FATAL)); }; if (_.get(settings, 'auto_login') !== false) { _converse.api.user.login('romeo@montague.lit/orchard', 'secret'); await _converse.api.waitUntil('afterResourceBinding'); } window.converse_disable_effects = true; return _converse; } mock.initConverse = function (promise_names=[], settings=null, func) { if (_.isFunction(promise_names)) { func = promise_names; promise_names = [] settings = null; } return async done => { const _converse = await initConverse(settings); async function _done () { if (_converse.api.connection.connected()) { await _converse.api.user.logout(); } const el = document.querySelector('#conversejs'); if (el) { el.parentElement.removeChild(el); } document.title = "Converse Tests"; done(); } await Promise.all((promise_names || []).map(_converse.api.waitUntil)); try { await func(_done, _converse); } catch(e) { console.error(e); fail(e); _done(); } } }; return mock; }));