|
@@ -269,7 +269,6 @@
|
|
|
}));
|
|
|
|
|
|
|
|
|
-
|
|
|
it("can be received out of order, and will still be displayed in the right order",
|
|
|
mock.initConverseWithPromises(
|
|
|
null, ['rosterGroupsFetched'], {},
|
|
@@ -1202,59 +1201,6 @@
|
|
|
});
|
|
|
}));
|
|
|
|
|
|
- describe("in which someone is mentioned", function () {
|
|
|
-
|
|
|
- it("includes XEP-0372 references to that person",
|
|
|
- mock.initConverseWithPromises(
|
|
|
- null, ['rosterGroupsFetched'], {},
|
|
|
- function (done, _converse) {
|
|
|
-
|
|
|
- test_utils.openAndEnterChatRoom(_converse, 'lounge', 'localhost', 'tom')
|
|
|
- .then(() => {
|
|
|
- const view = _converse.chatboxviews.get('lounge@localhost');
|
|
|
- ['z3r0', 'mr.robot', 'gibson', 'sw0rdf1sh'].forEach((nick) => {
|
|
|
- _converse.connection._dataRecv(test_utils.createRequest(
|
|
|
- $pres({
|
|
|
- 'to': 'tom@localhost/resource',
|
|
|
- 'from': `lounge@localhost/${nick}`
|
|
|
- })
|
|
|
- .c('x', {xmlns: Strophe.NS.MUC_USER})
|
|
|
- .c('item', {
|
|
|
- 'affiliation': 'none',
|
|
|
- 'jid': `${nick}@localhost/resource`,
|
|
|
- 'role': 'participant'
|
|
|
- })));
|
|
|
- });
|
|
|
-
|
|
|
- let [text, references] = view.model.parseForReferences('hello z3r0')
|
|
|
- expect(references.length).toBe(0);
|
|
|
- expect(text).toBe('hello z3r0');
|
|
|
-
|
|
|
- [text, references] = view.model.parseForReferences('hello @z3r0')
|
|
|
- expect(references.length).toBe(1);
|
|
|
- expect(text).toBe('hello z3r0');
|
|
|
- expect(JSON.stringify(references))
|
|
|
- .toBe('[{"begin":6,"end":10,"type":"mention","uri":"xmpp:z3r0@localhost"}]');
|
|
|
-
|
|
|
- [text, references] = view.model.parseForReferences('hello @some1 @z3r0 @gibson @mr.robot, how are you?')
|
|
|
- expect(text).toBe('hello @some1 z3r0 gibson mr.robot, how are you?');
|
|
|
- expect(JSON.stringify(references))
|
|
|
- .toBe('[{"begin":13,"end":17,"type":"mention","uri":"xmpp:z3r0@localhost"},'+
|
|
|
- '{"begin":18,"end":24,"type":"mention","uri":"xmpp:gibson@localhost"},'+
|
|
|
- '{"begin":25,"end":33,"type":"mention","uri":"xmpp:mr.robot@localhost"}]');
|
|
|
-
|
|
|
- [text, references] = view.model.parseForReferences('yo @gib')
|
|
|
- expect(text).toBe('yo @gib');
|
|
|
- expect(references.length).toBe(0);
|
|
|
-
|
|
|
- [text, references] = view.model.parseForReferences('yo @gibsonian')
|
|
|
- expect(text).toBe('yo @gibsonian');
|
|
|
- expect(references.length).toBe(0);
|
|
|
- done();
|
|
|
- }).catch(_.partial(console.error, _));
|
|
|
- }));
|
|
|
- });
|
|
|
-
|
|
|
|
|
|
describe("when received from someone else", function () {
|
|
|
|
|
@@ -2142,5 +2088,115 @@
|
|
|
done();
|
|
|
}).catch(_.partial(console.error, _));
|
|
|
}));
|
|
|
+
|
|
|
+ describe("in which someone is mentioned", function () {
|
|
|
+
|
|
|
+ it("gets parsed for mentions which get turned into references",
|
|
|
+ mock.initConverseWithPromises(
|
|
|
+ null, ['rosterGroupsFetched'], {},
|
|
|
+ function (done, _converse) {
|
|
|
+
|
|
|
+ test_utils.openAndEnterChatRoom(_converse, 'lounge', 'localhost', 'tom')
|
|
|
+ .then(() => {
|
|
|
+ const view = _converse.chatboxviews.get('lounge@localhost');
|
|
|
+ ['z3r0', 'mr.robot', 'gibson', 'sw0rdf1sh'].forEach((nick) => {
|
|
|
+ _converse.connection._dataRecv(test_utils.createRequest(
|
|
|
+ $pres({
|
|
|
+ 'to': 'tom@localhost/resource',
|
|
|
+ 'from': `lounge@localhost/${nick}`
|
|
|
+ })
|
|
|
+ .c('x', {xmlns: Strophe.NS.MUC_USER})
|
|
|
+ .c('item', {
|
|
|
+ 'affiliation': 'none',
|
|
|
+ 'jid': `${nick}@localhost/resource`,
|
|
|
+ 'role': 'participant'
|
|
|
+ })));
|
|
|
+ });
|
|
|
+
|
|
|
+ // Run a few unit tests for the parseForReferences method
|
|
|
+ let [text, references] = view.model.parseForReferences('hello z3r0')
|
|
|
+ expect(references.length).toBe(0);
|
|
|
+ expect(text).toBe('hello z3r0');
|
|
|
+
|
|
|
+ [text, references] = view.model.parseForReferences('hello @z3r0')
|
|
|
+ expect(references.length).toBe(1);
|
|
|
+ expect(text).toBe('hello z3r0');
|
|
|
+ expect(JSON.stringify(references))
|
|
|
+ .toBe('[{"begin":6,"end":10,"type":"mention","uri":"xmpp:z3r0@localhost"}]');
|
|
|
+
|
|
|
+ [text, references] = view.model.parseForReferences('hello @some1 @z3r0 @gibson @mr.robot, how are you?')
|
|
|
+ expect(text).toBe('hello @some1 z3r0 gibson mr.robot, how are you?');
|
|
|
+ expect(JSON.stringify(references))
|
|
|
+ .toBe('[{"begin":13,"end":17,"type":"mention","uri":"xmpp:z3r0@localhost"},'+
|
|
|
+ '{"begin":18,"end":24,"type":"mention","uri":"xmpp:gibson@localhost"},'+
|
|
|
+ '{"begin":25,"end":33,"type":"mention","uri":"xmpp:mr.robot@localhost"}]');
|
|
|
+
|
|
|
+ [text, references] = view.model.parseForReferences('yo @gib')
|
|
|
+ expect(text).toBe('yo @gib');
|
|
|
+ expect(references.length).toBe(0);
|
|
|
+
|
|
|
+ [text, references] = view.model.parseForReferences('yo @gibsonian')
|
|
|
+ expect(text).toBe('yo @gibsonian');
|
|
|
+ expect(references.length).toBe(0);
|
|
|
+
|
|
|
+ [text, references] = view.model.parseForReferences('@gibson')
|
|
|
+ expect(text).toBe('gibson');
|
|
|
+ expect(references.length).toBe(1);
|
|
|
+ expect(JSON.stringify(references))
|
|
|
+ .toBe('[{"begin":0,"end":6,"type":"mention","uri":"xmpp:gibson@localhost"}]');
|
|
|
+
|
|
|
+ done();
|
|
|
+ return;
|
|
|
+ });
|
|
|
+ }));
|
|
|
+
|
|
|
+ it("includes XEP-0372 references to that person",
|
|
|
+ mock.initConverseWithPromises(
|
|
|
+ null, ['rosterGroupsFetched'], {},
|
|
|
+ function (done, _converse) {
|
|
|
+
|
|
|
+ test_utils.openAndEnterChatRoom(_converse, 'lounge', 'localhost', 'tom')
|
|
|
+ .then(() => {
|
|
|
+ const view = _converse.chatboxviews.get('lounge@localhost');
|
|
|
+ ['z3r0', 'mr.robot', 'gibson', 'sw0rdf1sh'].forEach((nick) => {
|
|
|
+ _converse.connection._dataRecv(test_utils.createRequest(
|
|
|
+ $pres({
|
|
|
+ 'to': 'tom@localhost/resource',
|
|
|
+ 'from': `lounge@localhost/${nick}`
|
|
|
+ })
|
|
|
+ .c('x', {xmlns: Strophe.NS.MUC_USER})
|
|
|
+ .c('item', {
|
|
|
+ 'affiliation': 'none',
|
|
|
+ 'jid': `${nick}@localhost/resource`,
|
|
|
+ 'role': 'participant'
|
|
|
+ })));
|
|
|
+ });
|
|
|
+
|
|
|
+ spyOn(_converse.connection, 'send');
|
|
|
+ const textarea = view.el.querySelector('textarea.chat-textarea');
|
|
|
+ textarea.value = 'hello @z3r0 @gibson @mr.robot, how are you?'
|
|
|
+ const enter_event = {
|
|
|
+ 'target': textarea,
|
|
|
+ 'preventDefault': _.noop,
|
|
|
+ 'stopPropagation': _.noop,
|
|
|
+ 'keyCode': 13 // Enter
|
|
|
+ }
|
|
|
+ view.keyPressed(enter_event);
|
|
|
+
|
|
|
+ const msg = _converse.connection.send.calls.all()[0].args[0];
|
|
|
+ expect(msg.toLocaleString())
|
|
|
+ .toBe(`<message from='dummy@localhost/resource' `+
|
|
|
+ `to='lounge@localhost' type='groupchat' id='${msg.nodeTree.getAttribute('id')}' `+
|
|
|
+ `xmlns='jabber:client'>`+
|
|
|
+ `<body>hello z3r0 gibson mr.robot, how are you?</body>`+
|
|
|
+ `<active xmlns='http://jabber.org/protocol/chatstates'/>`+
|
|
|
+ `<reference xmlns='urn:xmpp:reference:0' begin='6' end='10' type='mention' uri='xmpp:z3r0@localhost'/>`+
|
|
|
+ `<reference xmlns='urn:xmpp:reference:0' begin='11' end='17' type='mention' uri='xmpp:gibson@localhost'/>`+
|
|
|
+ `<reference xmlns='urn:xmpp:reference:0' begin='18' end='26' type='mention' uri='xmpp:mr.robot@localhost'/>`+
|
|
|
+ `</message>`);
|
|
|
+ done();
|
|
|
+ }).catch(_.partial(console.error, _));
|
|
|
+ }));
|
|
|
+ });
|
|
|
});
|
|
|
}));
|