123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- (function (root, factory) {
- define([
- "jasmine",
- "mock",
- "test-utils"
- ], factory);
- } (this, function (jasmine, mock, test_utils) {
- "use strict";
- const _ = converse.env._;
- const $iq = converse.env.$iq;
- const $msg = converse.env.$msg;
- const $pres = converse.env.$pres;
- const Strophe = converse.env.Strophe;
- const u = converse.env.utils;
- describe("The nickname autocomplete feature", function () {
- it("shows all autocompletion options when the user presses @",
- mock.initConverseWithPromises(
- null, ['rosterGroupsFetched'], {},
- function (done, _converse) {
- test_utils.openAndEnterChatRoom(_converse, 'lounge', 'localhost', 'tom')
- .then(() => {
- const view = _converse.chatboxviews.get('lounge@localhost');
- ['dick', 'harry'].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'
- })));
- });
- // Test that pressing @ brings up all options
- const textarea = view.el.querySelector('textarea.chat-textarea');
- const at_event = {
- 'target': textarea,
- 'preventDefault': _.noop,
- 'stopPropagation': _.noop,
- 'keyCode': 50
- };
- view.keyPressed(at_event);
- textarea.value = '@';
- view.keyUp(at_event);
- expect(view.el.querySelectorAll('.suggestion-box__results li').length).toBe(3);
- expect(view.el.querySelector('.suggestion-box__results li[aria-selected="true"]').textContent).toBe('tom');
- expect(view.el.querySelector('.suggestion-box__results li:first-child').textContent).toBe('tom');
- expect(view.el.querySelector('.suggestion-box__results li:nth-child(2)').textContent).toBe('dick');
- expect(view.el.querySelector('.suggestion-box__results li:nth-child(3)').textContent).toBe('harry');
- done();
- }).catch(_.partial(console.error, _));
- }));
- it("autocompletes when the user presses tab",
- mock.initConverseWithPromises(
- null, ['rosterGroupsFetched'], {},
- function (done, _converse) {
- test_utils.openAndEnterChatRoom(_converse, 'lounge', 'localhost', 'dummy')
- .then(() => {
- const view = _converse.chatboxviews.get('lounge@localhost');
- expect(view.model.occupants.length).toBe(1);
- let presence = $pres({
- 'to': 'dummy@localhost/resource',
- 'from': 'lounge@localhost/some1'
- })
- .c('x', {xmlns: Strophe.NS.MUC_USER})
- .c('item', {
- 'affiliation': 'none',
- 'jid': 'some1@localhost/resource',
- 'role': 'participant'
- });
- _converse.connection._dataRecv(test_utils.createRequest(presence));
- expect(view.model.occupants.length).toBe(2);
- const textarea = view.el.querySelector('textarea.chat-textarea');
- textarea.value = "hello som";
- // Press tab
- const tab_event = {
- 'target': textarea,
- 'preventDefault': _.noop,
- 'stopPropagation': _.noop,
- 'keyCode': 9
- }
- view.keyPressed(tab_event);
- view.keyUp(tab_event);
- expect(view.el.querySelector('.suggestion-box__results').hidden).toBeFalsy();
- expect(view.el.querySelectorAll('.suggestion-box__results li').length).toBe(1);
- expect(view.el.querySelector('.suggestion-box__results li').textContent).toBe('some1');
- const backspace_event = {
- 'target': textarea,
- 'preventDefault': _.noop,
- 'keyCode': 8
- }
- for (var i=0; i<3; i++) {
- // Press backspace 3 times to remove "som"
- view.keyPressed(backspace_event);
- textarea.value = textarea.value.slice(0, textarea.value.length-1)
- view.keyUp(backspace_event);
- }
- expect(view.el.querySelector('.suggestion-box__results').hidden).toBeTruthy();
- presence = $pres({
- 'to': 'dummy@localhost/resource',
- 'from': 'lounge@localhost/some2'
- })
- .c('x', {xmlns: Strophe.NS.MUC_USER})
- .c('item', {
- 'affiliation': 'none',
- 'jid': 'some2@localhost/resource',
- 'role': 'participant'
- });
- _converse.connection._dataRecv(test_utils.createRequest(presence));
- textarea.value = "hello s s";
- view.keyPressed(tab_event);
- view.keyUp(tab_event);
- expect(view.el.querySelector('.suggestion-box__results').hidden).toBeFalsy();
- expect(view.el.querySelectorAll('.suggestion-box__results li').length).toBe(2);
- const up_arrow_event = {
- 'target': textarea,
- 'preventDefault': () => (up_arrow_event.defaultPrevented = true),
- 'stopPropagation': _.noop,
- 'keyCode': 38
- }
- view.keyPressed(up_arrow_event);
- view.keyUp(up_arrow_event);
- expect(view.el.querySelectorAll('.suggestion-box__results li').length).toBe(2);
- expect(view.el.querySelector('.suggestion-box__results li[aria-selected="false"]').textContent).toBe('some1');
- expect(view.el.querySelector('.suggestion-box__results li[aria-selected="true"]').textContent).toBe('some2');
- view.keyPressed({
- 'target': textarea,
- 'preventDefault': _.noop,
- 'stopPropagation': _.noop,
- 'keyCode': 13 // Enter
- });
- expect(textarea.value).toBe('hello s @some2 ');
- // Test that pressing tab twice selects
- presence = $pres({
- 'to': 'dummy@localhost/resource',
- 'from': 'lounge@localhost/z3r0'
- })
- .c('x', {xmlns: Strophe.NS.MUC_USER})
- .c('item', {
- 'affiliation': 'none',
- 'jid': 'z3r0@localhost/resource',
- 'role': 'participant'
- });
- _converse.connection._dataRecv(test_utils.createRequest(presence));
- textarea.value = "hello z";
- view.keyPressed(tab_event);
- view.keyUp(tab_event);
- view.keyPressed(tab_event);
- view.keyUp(tab_event);
- expect(textarea.value).toBe('hello @z3r0 ');
- done();
- }).catch(_.partial(console.error, _));
- }));
- });
- }));
|