2015-10-14 00:21:23 +02:00
|
|
|
var common = require('../casper_lib/common.js').common;
|
2013-03-21 18:18:28 +01:00
|
|
|
|
|
|
|
common.start_and_log_in();
|
|
|
|
|
2016-06-25 01:41:07 +02:00
|
|
|
// We could use the messages sent by 02-site.js, but we want to
|
2013-03-21 18:18:28 +01:00
|
|
|
// make sure each test file can be run individually (which the
|
|
|
|
// 'run' script provides for).
|
|
|
|
|
|
|
|
casper.then(function () {
|
|
|
|
casper.test.info('Sending messages');
|
|
|
|
});
|
|
|
|
|
2014-03-07 20:59:30 +01:00
|
|
|
common.then_send_many([
|
2018-12-18 19:34:45 +01:00
|
|
|
{ stream: 'Verona', subject: 'frontend test',
|
2013-03-21 18:18:28 +01:00
|
|
|
content: 'test message A' },
|
|
|
|
|
2018-12-18 19:34:45 +01:00
|
|
|
{ stream: 'Verona', subject: 'frontend test',
|
2013-03-21 18:18:28 +01:00
|
|
|
content: 'test message B' },
|
|
|
|
|
2018-12-18 19:34:45 +01:00
|
|
|
{ stream: 'Verona', subject: 'other subject',
|
2013-03-21 18:18:28 +01:00
|
|
|
content: 'test message C' },
|
|
|
|
|
2018-12-18 19:34:45 +01:00
|
|
|
{ stream: 'Denmark', subject: 'frontend test',
|
2013-03-22 01:42:46 +01:00
|
|
|
content: 'other message' },
|
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
{ recipient: 'cordelia@zulip.com, hamlet@zulip.com',
|
2018-12-18 19:34:45 +01:00
|
|
|
content: 'personal A' },
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
{ recipient: 'cordelia@zulip.com, hamlet@zulip.com',
|
2018-12-18 19:34:45 +01:00
|
|
|
content: 'personal B' },
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
{ recipient: 'cordelia@zulip.com',
|
2018-12-18 19:34:45 +01:00
|
|
|
content: 'personal C' },
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2018-12-18 19:34:45 +01:00
|
|
|
{ stream: 'Verona', subject: 'frontend test',
|
2013-03-21 18:18:28 +01:00
|
|
|
content: 'test message D' },
|
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
{ recipient: 'cordelia@zulip.com, hamlet@zulip.com',
|
2018-12-18 19:34:45 +01:00
|
|
|
content: 'personal D' },
|
2013-03-22 01:42:46 +01:00
|
|
|
|
2013-07-24 20:41:09 +02:00
|
|
|
{ recipient: 'cordelia@zulip.com',
|
2018-12-18 19:34:45 +01:00
|
|
|
content: 'personal E' },
|
2013-03-21 18:18:28 +01:00
|
|
|
]);
|
|
|
|
|
|
|
|
|
2013-03-21 19:38:18 +01:00
|
|
|
// Define the messages we expect to see when narrowed.
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2013-03-21 19:38:18 +01:00
|
|
|
function expect_home() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zhome', function () {
|
|
|
|
common.expected_messages('zhome', [
|
|
|
|
'Verona > frontend test',
|
|
|
|
'You and Cordelia Lear, King Hamlet',
|
2016-12-03 23:18:30 +01:00
|
|
|
'You and Cordelia Lear',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>test message D</p>',
|
|
|
|
'<p>personal D</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>personal E</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 19:38:18 +01:00
|
|
|
}
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2013-03-21 19:38:18 +01:00
|
|
|
function expect_stream() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zfilt', function () {
|
|
|
|
common.expected_messages('zfilt', [
|
|
|
|
'Verona > frontend test',
|
|
|
|
'Verona > other subject',
|
2016-12-03 23:18:30 +01:00
|
|
|
'Verona > frontend test',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>test message A</p>',
|
|
|
|
'<p>test message B</p>',
|
|
|
|
'<p>test message C</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>test message D</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 19:38:18 +01:00
|
|
|
}
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2013-03-21 19:38:18 +01:00
|
|
|
function expect_stream_subject() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zfilt', function () {
|
|
|
|
common.expected_messages('zfilt', [
|
2016-12-03 23:18:30 +01:00
|
|
|
'Verona > frontend test',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>test message A</p>',
|
|
|
|
'<p>test message B</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>test message D</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
2018-08-09 05:59:55 +02:00
|
|
|
|
|
|
|
casper.test.assertEquals(casper.fetchText('#left_bar_compose_stream_button_big'), 'New topic');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
|
|
|
});
|
2013-03-21 19:38:18 +01:00
|
|
|
}
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2013-03-22 01:42:46 +01:00
|
|
|
function expect_subject() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zfilt', function () {
|
|
|
|
common.expected_messages('zfilt', [
|
|
|
|
'Verona > frontend test',
|
|
|
|
'Denmark > frontend test',
|
2016-12-03 23:18:30 +01:00
|
|
|
'Verona > frontend test',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>test message A</p>',
|
|
|
|
'<p>test message B</p>',
|
|
|
|
'<p>other message</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>test message D</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2013-03-22 01:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function expect_huddle() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zfilt', function () {
|
|
|
|
common.expected_messages('zfilt', [
|
2016-12-03 23:18:30 +01:00
|
|
|
'You and Cordelia Lear, King Hamlet',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>personal A</p>',
|
|
|
|
'<p>personal B</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>personal D</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 19:38:18 +01:00
|
|
|
}
|
|
|
|
|
2013-03-22 01:42:46 +01:00
|
|
|
function expect_1on1() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zfilt', function () {
|
|
|
|
common.expected_messages('zfilt', [
|
2016-12-03 23:18:30 +01:00
|
|
|
'You and Cordelia Lear',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>personal C</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>personal E</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
2013-03-22 01:42:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function expect_all_pm() {
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#zfilt', function () {
|
|
|
|
common.expected_messages('zfilt', [
|
|
|
|
'You and Cordelia Lear, King Hamlet',
|
2016-12-03 23:18:30 +01:00
|
|
|
'You and Cordelia Lear',
|
2016-09-20 12:43:06 +02:00
|
|
|
], [
|
|
|
|
'<p>personal A</p>',
|
|
|
|
'<p>personal B</p>',
|
|
|
|
'<p>personal C</p>',
|
|
|
|
'<p>personal D</p>',
|
2016-12-03 23:18:30 +01:00
|
|
|
'<p>personal E</p>',
|
2016-09-20 12:43:06 +02:00
|
|
|
]);
|
2018-08-09 05:59:55 +02:00
|
|
|
|
|
|
|
casper.test.assertEquals(casper.fetchText('#left_bar_compose_stream_button_big'), 'New stream message');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
|
|
|
});
|
2013-03-22 01:42:46 +01:00
|
|
|
}
|
|
|
|
|
2015-12-10 20:37:01 +01:00
|
|
|
function check_narrow_title(title) {
|
|
|
|
return function () {
|
|
|
|
// need to get title tag from HTML
|
|
|
|
// test if it's equal to some string passed in to function
|
|
|
|
casper.test.assertSelectorHasText('title', title, 'Got expected narrow title');
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-03-22 01:42:46 +01:00
|
|
|
function un_narrow() {
|
2013-03-29 00:03:11 +01:00
|
|
|
casper.then(common.un_narrow);
|
2016-09-20 12:43:06 +02:00
|
|
|
expect_home();
|
2015-12-10 20:37:01 +01:00
|
|
|
casper.then(check_narrow_title('home - Zulip Dev - Zulip'));
|
2013-03-22 01:42:46 +01:00
|
|
|
}
|
|
|
|
|
2015-12-10 20:37:01 +01:00
|
|
|
function search_and_check(str, item, check, narrow_title) {
|
2016-06-09 09:29:49 +02:00
|
|
|
common.select_item_via_typeahead('#search_query', str, item);
|
2016-09-20 12:43:06 +02:00
|
|
|
check();
|
2015-12-10 20:37:01 +01:00
|
|
|
casper.then(check_narrow_title(narrow_title));
|
2013-03-22 01:42:46 +01:00
|
|
|
un_narrow();
|
|
|
|
}
|
|
|
|
|
2016-07-29 16:15:50 +02:00
|
|
|
function search_silent_user(str, item) {
|
|
|
|
common.select_item_via_typeahead('#search_query', str, item);
|
2016-09-08 14:10:41 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#silent_user', function () {
|
|
|
|
casper.test.info("Empty feed for silent user visible.");
|
2018-06-04 21:13:07 +02:00
|
|
|
var expected_message = "\n You haven't received any messages sent by this user yet!" +
|
2017-10-20 22:08:00 +02:00
|
|
|
"\n ";
|
2016-09-08 14:10:41 +02:00
|
|
|
this.test.assertEquals(casper.fetchText('#silent_user'), expected_message);
|
|
|
|
});
|
2016-07-29 16:15:50 +02:00
|
|
|
});
|
|
|
|
un_narrow();
|
|
|
|
}
|
|
|
|
|
|
|
|
function search_non_existing_user(str, item) {
|
|
|
|
common.select_item_via_typeahead('#search_query', str, item);
|
2016-09-08 14:10:41 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.waitUntilVisible('#non_existing_user', function () {
|
|
|
|
casper.test.info("Empty feed for non existing user visible.");
|
2018-06-04 21:13:07 +02:00
|
|
|
var expected_message = "\n This user does not exist!" +
|
2017-10-20 22:08:00 +02:00
|
|
|
"\n ";
|
2016-09-08 14:10:41 +02:00
|
|
|
this.test.assertEquals(casper.fetchText('#non_existing_user'), expected_message);
|
|
|
|
});
|
2016-07-29 16:15:50 +02:00
|
|
|
});
|
|
|
|
un_narrow();
|
|
|
|
}
|
|
|
|
|
2016-09-20 12:43:06 +02:00
|
|
|
// Narrow by clicking links.
|
|
|
|
|
2016-09-08 14:10:41 +02:00
|
|
|
casper.then(function () {
|
2016-09-20 12:43:06 +02:00
|
|
|
common.wait_for_receive(function () {
|
|
|
|
casper.test.info('Narrowing by clicking stream');
|
2016-12-06 19:57:46 +01:00
|
|
|
casper.click('*[title="Narrow to stream \\"Verona\\""]');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
2016-09-08 14:10:41 +02:00
|
|
|
});
|
2013-03-22 01:42:46 +01:00
|
|
|
|
2016-09-20 12:43:06 +02:00
|
|
|
expect_stream();
|
|
|
|
|
|
|
|
casper.then(check_narrow_title('Verona - Zulip Dev - Zulip'));
|
|
|
|
|
|
|
|
un_narrow();
|
|
|
|
|
|
|
|
expect_home();
|
|
|
|
|
|
|
|
casper.then(function () {
|
|
|
|
casper.test.info('Narrowing by clicking subject');
|
2016-12-06 19:57:46 +01:00
|
|
|
casper.click('*[title="Narrow to stream \\"Verona\\", topic \\"frontend test\\""]');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
expect_stream_subject();
|
|
|
|
|
|
|
|
casper.then(check_narrow_title('frontend test - Zulip Dev - Zulip'));
|
|
|
|
|
|
|
|
casper.then(function () {
|
|
|
|
// This time, un-narrow by hitting the search 'x'
|
|
|
|
casper.test.info('Un-narrowing');
|
|
|
|
casper.click('#search_exit');
|
|
|
|
});
|
|
|
|
|
|
|
|
expect_home();
|
|
|
|
|
|
|
|
casper.then(function () {
|
|
|
|
casper.test.info('Narrowing by clicking personal');
|
|
|
|
casper.click('*[title="Narrow to your private messages with Cordelia Lear, King Hamlet"]');
|
|
|
|
});
|
|
|
|
|
|
|
|
expect_huddle();
|
|
|
|
|
|
|
|
casper.then(check_narrow_title('private - Zulip Dev - Zulip'));
|
|
|
|
|
|
|
|
casper.then(function () {
|
|
|
|
// Un-narrow by clicking "Zulip"
|
|
|
|
casper.test.info('Un-narrowing');
|
|
|
|
casper.click('.brand');
|
|
|
|
});
|
|
|
|
|
|
|
|
expect_home();
|
|
|
|
|
|
|
|
// Narrow by typing in search strings or operators.
|
2013-03-22 01:42:46 +01:00
|
|
|
// Test stream / recipient autocomplete in the search bar
|
2017-06-06 02:28:12 +02:00
|
|
|
search_and_check('Verona', 'Stream', expect_stream,
|
2015-12-10 20:37:01 +01:00
|
|
|
'Verona - Zulip Dev - Zulip');
|
2016-09-20 12:43:06 +02:00
|
|
|
|
2017-06-06 02:28:12 +02:00
|
|
|
search_and_check('Cordelia', 'Private', expect_1on1,
|
2016-09-20 12:43:06 +02:00
|
|
|
'private - Zulip Dev - Zulip');
|
2013-03-22 01:42:46 +01:00
|
|
|
|
|
|
|
// Test operators
|
2017-06-06 02:28:12 +02:00
|
|
|
search_and_check('stream:Verona', '', expect_stream,
|
2016-09-20 12:43:06 +02:00
|
|
|
'Verona - Zulip Dev - Zulip');
|
|
|
|
|
2017-06-06 02:28:12 +02:00
|
|
|
search_and_check('stream:Verona subject:frontend+test', '', expect_stream_subject,
|
2016-09-20 12:43:06 +02:00
|
|
|
'frontend test - Zulip Dev - Zulip');
|
|
|
|
|
2017-06-06 02:28:12 +02:00
|
|
|
search_and_check('stream:Verona topic:frontend+test', '', expect_stream_subject,
|
2016-10-16 23:09:45 +02:00
|
|
|
'frontend test - Zulip Dev - Zulip');
|
|
|
|
|
2017-06-06 02:28:12 +02:00
|
|
|
search_and_check('subject:frontend+test', '', expect_subject,
|
2016-09-20 12:43:06 +02:00
|
|
|
'home - Zulip Dev - Zulip');
|
2013-03-22 01:42:46 +01:00
|
|
|
|
2017-06-06 02:28:12 +02:00
|
|
|
search_silent_user('sender:emailgateway@zulip.com', '');
|
2016-09-20 12:43:06 +02:00
|
|
|
|
2017-06-06 02:28:12 +02:00
|
|
|
search_non_existing_user('sender:dummyuser@zulip.com', '');
|
2016-07-29 16:15:50 +02:00
|
|
|
|
2013-03-22 01:42:46 +01:00
|
|
|
// Narrow by clicking the left sidebar.
|
|
|
|
casper.then(function () {
|
|
|
|
casper.test.info('Narrowing with left sidebar');
|
2017-08-17 02:05:37 +02:00
|
|
|
casper.click('#stream_filters [data-stream-name="Verona"] a');
|
2013-03-22 01:42:46 +01:00
|
|
|
});
|
2016-09-20 12:43:06 +02:00
|
|
|
|
|
|
|
expect_stream();
|
|
|
|
|
2015-12-10 20:37:01 +01:00
|
|
|
casper.then(check_narrow_title('Verona - Zulip Dev - Zulip'));
|
2016-09-20 12:43:06 +02:00
|
|
|
|
2019-01-30 18:24:56 +01:00
|
|
|
casper.thenClick('.top_left_all_messages a');
|
2016-09-20 12:43:06 +02:00
|
|
|
|
|
|
|
expect_home();
|
|
|
|
|
2015-12-10 20:37:01 +01:00
|
|
|
casper.then(check_narrow_title('home - Zulip Dev - Zulip'));
|
2016-09-20 12:43:06 +02:00
|
|
|
|
2019-01-30 18:24:56 +01:00
|
|
|
casper.thenClick('.top_left_private_messages a');
|
2016-09-20 12:43:06 +02:00
|
|
|
|
|
|
|
expect_all_pm();
|
|
|
|
|
2015-12-10 20:37:01 +01:00
|
|
|
casper.then(check_narrow_title('private - Zulip Dev - Zulip'));
|
2013-03-21 19:38:18 +01:00
|
|
|
|
2016-09-20 12:43:06 +02:00
|
|
|
un_narrow();
|
2013-03-21 18:18:28 +01:00
|
|
|
|
2016-06-13 22:06:12 +02:00
|
|
|
// Make sure stream search filters the stream list
|
|
|
|
casper.then(function () {
|
|
|
|
casper.test.info('Search streams using left sidebar');
|
2017-04-05 14:18:35 +02:00
|
|
|
casper.test.assertExists('.input-append.notdisplayed', 'Stream filter box not visible initially');
|
2016-09-20 12:43:06 +02:00
|
|
|
casper.click('#streams_header .sidebar-title');
|
2016-06-13 22:06:12 +02:00
|
|
|
});
|
|
|
|
|
2018-01-04 18:15:42 +01:00
|
|
|
casper.waitWhileSelector('#streams_list .input-append.notdisplayed', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Denmark"]',
|
|
|
|
'Original stream list contains Denmark');
|
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Scotland"]',
|
|
|
|
'Original stream list contains Scotland');
|
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Verona"]',
|
|
|
|
'Original stream list contains Verona');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Enter the search box and test highlighted suggestion navigation
|
|
|
|
casper.then(function () {
|
|
|
|
casper.evaluate(function () {
|
|
|
|
$('.stream-list-filter').expectOne()
|
|
|
|
.focus()
|
|
|
|
.trigger($.Event('click'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
casper.waitForSelector('#stream_filters .highlighted_stream', function () {
|
|
|
|
casper.test.info('Suggestion highlighting - initial situation');
|
|
|
|
casper.test.assertExist('#stream_filters [data-stream-name="Denmark"].highlighted_stream',
|
|
|
|
'Stream Denmark is highlighted');
|
|
|
|
casper.test.assertDoesntExist('#stream_filters [data-stream-name="Scotland"].highlighted_stream',
|
|
|
|
'Stream Scotland is not highlighted');
|
|
|
|
casper.test.assertDoesntExist('#stream_filters [data-stream-name="Verona"].highlighted_stream',
|
|
|
|
'Stream Verona is not highlighted');
|
|
|
|
});
|
|
|
|
|
|
|
|
// Use arrow keys to navigate through suggestions
|
|
|
|
casper.then(function () {
|
2018-04-24 16:59:01 +02:00
|
|
|
function arrow(key) {
|
|
|
|
casper.sendKeys('.stream-list-filter',
|
|
|
|
casper.page.event.key[key],
|
|
|
|
{keepFocus: true});
|
|
|
|
}
|
|
|
|
arrow('Down'); // Denmark -> Scotland
|
|
|
|
arrow('Up'); // Scotland -> Denmark
|
|
|
|
arrow('Up'); // Denmark -> Denmark
|
|
|
|
arrow('Down'); // Denmark -> Scotland
|
2018-02-12 22:56:37 +01:00
|
|
|
});
|
|
|
|
|
2018-04-24 16:59:01 +02:00
|
|
|
casper.waitForSelector('#stream_filters [data-stream-name="Scotland"].highlighted_stream', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.info('Suggestion highlighting - after arrow key navigation');
|
2018-04-24 16:59:01 +02:00
|
|
|
casper.test.assertDoesntExist(
|
2018-05-07 01:42:17 +02:00
|
|
|
'#stream_filters [data-stream-name="Denmark"].highlighted_stream',
|
|
|
|
'Stream Denmark is not highlighted');
|
2018-04-24 16:59:01 +02:00
|
|
|
casper.test.assertExist(
|
2018-05-07 01:42:17 +02:00
|
|
|
'#stream_filters [data-stream-name="Scotland"].highlighted_stream',
|
|
|
|
'Stream Scotland is highlighted');
|
2018-04-24 16:59:01 +02:00
|
|
|
casper.test.assertDoesntExist(
|
2018-05-07 01:42:17 +02:00
|
|
|
'#stream_filters [data-stream-name="Verona"].highlighted_stream',
|
|
|
|
'Stream Verona is not highlighted');
|
2016-06-13 22:06:12 +02:00
|
|
|
});
|
|
|
|
|
2018-04-24 16:59:01 +02:00
|
|
|
// We search for the beginning of "Scotland", not case sensitive
|
2016-06-13 22:06:12 +02:00
|
|
|
casper.then(function () {
|
|
|
|
casper.evaluate(function () {
|
|
|
|
$('.stream-list-filter').expectOne()
|
|
|
|
.focus()
|
2018-04-24 16:59:01 +02:00
|
|
|
.val('sCoT')
|
2018-02-12 22:56:37 +01:00
|
|
|
.trigger($.Event('input'))
|
|
|
|
.trigger($.Event('click'));
|
2016-06-13 22:06:12 +02:00
|
|
|
});
|
|
|
|
});
|
2016-09-20 12:43:06 +02:00
|
|
|
|
|
|
|
// There will be no race condition between these two waits because we
|
|
|
|
// expect them to happen in parallel.
|
2017-08-17 02:05:37 +02:00
|
|
|
casper.waitWhileVisible('#stream_filters [data-stream-name="Denmark"]', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.info('Search term entered');
|
|
|
|
casper.test.assertDoesntExist('#stream_filters [data-stream-name="Denmark"]',
|
|
|
|
'Filtered stream list does not contain Denmark');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
2018-04-24 16:59:01 +02:00
|
|
|
casper.waitWhileVisible('#stream_filters [data-stream-name="Verona"]', function () {
|
|
|
|
casper.test.assertDoesntExist('#stream_filters [data-stream-name="Verona"]',
|
|
|
|
'Filtered stream list does not contain Verona');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
casper.then(function () {
|
2018-04-24 16:59:01 +02:00
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Scotland"]',
|
|
|
|
'Filtered stream list does contain Scotland');
|
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Scotland"].highlighted_stream',
|
|
|
|
'Stream Scotland is highlighted');
|
2016-06-13 22:06:12 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Clearing the list should give us back all the streams in the list
|
|
|
|
casper.then(function () {
|
|
|
|
casper.evaluate(function () {
|
|
|
|
$('.stream-list-filter').expectOne()
|
|
|
|
.focus()
|
|
|
|
.val('')
|
|
|
|
.trigger($.Event('input'));
|
|
|
|
});
|
|
|
|
});
|
2016-09-20 12:43:06 +02:00
|
|
|
|
|
|
|
// There will be no race condition between these waits because we
|
|
|
|
// expect them to happen in parallel.
|
2017-08-17 02:05:37 +02:00
|
|
|
casper.waitUntilVisible('#stream_filters [data-stream-name="Denmark"]', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Denmark"]',
|
|
|
|
'Restored stream list contains Denmark');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
2017-08-17 02:05:37 +02:00
|
|
|
casper.waitUntilVisible('#stream_filters [data-stream-name="Scotland"]', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Denmark"]',
|
|
|
|
'Restored stream list contains Scotland');
|
2016-09-20 12:43:06 +02:00
|
|
|
});
|
2017-08-17 02:05:37 +02:00
|
|
|
casper.waitUntilVisible('#stream_filters [data-stream-name="Verona"]', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.assertExists('#stream_filters [data-stream-name="Denmark"]',
|
|
|
|
'Restored stream list contains Verona');
|
2016-06-13 22:06:12 +02:00
|
|
|
});
|
|
|
|
|
2016-09-20 12:43:06 +02:00
|
|
|
|
2016-06-13 22:06:12 +02:00
|
|
|
casper.thenClick('#streams_header .sidebar-title');
|
|
|
|
|
2017-04-05 14:18:35 +02:00
|
|
|
casper.waitForSelector('.input-append.notdisplayed', function () {
|
2018-02-12 22:56:37 +01:00
|
|
|
casper.test.assertExists('.input-append.notdisplayed',
|
|
|
|
'Stream filter box not visible after second click');
|
2016-06-13 22:06:12 +02:00
|
|
|
});
|
|
|
|
|
2018-01-25 20:44:30 +01:00
|
|
|
// We search for the beginning of "Verona", not case sensitive
|
|
|
|
casper.then(function () {
|
|
|
|
casper.evaluate(function () {
|
|
|
|
$('.stream-list-filter').expectOne()
|
|
|
|
.focus()
|
|
|
|
.val('ver')
|
|
|
|
.trigger($.Event('input'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
casper.waitWhileVisible('#stream_filters [data-stream-name="Denmark"]', function () {
|
|
|
|
// Clicking the narrowed list should clear the search
|
|
|
|
casper.click('#stream_filters [data-stream-name="Verona"] a');
|
|
|
|
expect_stream();
|
|
|
|
casper.test.assertEquals(casper.fetchText('.stream-list-filter'), '', 'Clicking on a stream clears the search');
|
|
|
|
});
|
|
|
|
|
2016-06-13 22:06:12 +02:00
|
|
|
un_narrow();
|
|
|
|
|
2018-09-08 17:44:47 +02:00
|
|
|
function assert_in_list(name) {
|
|
|
|
casper.test.assertExists(
|
|
|
|
'#user_presences li [data-name="' + name + '"]',
|
|
|
|
'User ' + name + ' is IN buddy list'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function assert_selected(name) {
|
|
|
|
casper.test.assertExists(
|
|
|
|
'#user_presences li.highlighted_user [data-name="' + name + '"]',
|
|
|
|
'User ' + name + ' is SELECTED IN buddy list'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function assert_not_selected(name) {
|
|
|
|
assert_in_list(name);
|
|
|
|
casper.test.assertDoesntExist(
|
|
|
|
'#user_presences li.highlighted_user [data-name="' + name + '"]',
|
|
|
|
'User ' + name + ' is NOT SELECTED buddy list'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-12 23:31:17 +01:00
|
|
|
// User search at the right sidebar
|
|
|
|
casper.then(function () {
|
|
|
|
casper.test.info('Search users using right sidebar');
|
2018-09-08 14:41:41 +02:00
|
|
|
assert_in_list('Iago');
|
2018-09-08 17:44:47 +02:00
|
|
|
assert_in_list('Cordelia Lear');
|
|
|
|
assert_in_list('King Hamlet');
|
|
|
|
assert_in_list('aaron');
|
2018-02-12 23:31:17 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Enter the search box and test selected suggestion navigation
|
|
|
|
// Click on search icon
|
|
|
|
casper.then(function () {
|
|
|
|
casper.evaluate(function () {
|
|
|
|
$('#user_filter_icon').expectOne()
|
|
|
|
.focus()
|
|
|
|
.trigger($.Event('click'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
casper.waitForSelector('#user_presences .highlighted_user', function () {
|
|
|
|
casper.test.info('Suggestion highlighting - initial situation');
|
2018-09-08 14:41:41 +02:00
|
|
|
assert_selected('Iago');
|
|
|
|
assert_not_selected('Cordelia Lear');
|
2018-09-08 17:44:47 +02:00
|
|
|
assert_not_selected('King Hamlet');
|
|
|
|
assert_not_selected('aaron');
|
2018-02-12 23:31:17 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Use arrow keys to navigate through suggestions
|
|
|
|
casper.then(function () {
|
2018-04-21 14:59:03 +02:00
|
|
|
function arrow(key) {
|
|
|
|
casper.sendKeys('.user-list-filter',
|
|
|
|
casper.page.event.key[key],
|
|
|
|
{keepFocus: true});
|
|
|
|
}
|
2018-09-08 14:41:41 +02:00
|
|
|
|
|
|
|
// go down 2, up 3 (which is really 2), then down 2
|
|
|
|
// Iago
|
|
|
|
// Cordelia
|
|
|
|
// Hamlet
|
|
|
|
arrow('Down');
|
|
|
|
arrow('Down');
|
|
|
|
arrow('Up');
|
|
|
|
arrow('Up');
|
|
|
|
arrow('Up'); // does nothing
|
|
|
|
arrow('Down');
|
|
|
|
arrow('Down');
|
2018-02-12 23:31:17 +01:00
|
|
|
});
|
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
casper.waitForSelector('#user_presences li.highlighted_user [data-name="King Hamlet"]', function () {
|
2018-02-12 23:31:17 +01:00
|
|
|
casper.test.info('Suggestion highlighting - after arrow key navigation');
|
2018-09-08 14:41:41 +02:00
|
|
|
assert_not_selected('Iago');
|
2018-09-08 17:44:47 +02:00
|
|
|
assert_not_selected('Cordelia Lear');
|
|
|
|
assert_selected('King Hamlet');
|
2018-02-12 23:31:17 +01:00
|
|
|
});
|
|
|
|
|
2013-03-21 18:18:28 +01:00
|
|
|
common.then_log_out();
|
|
|
|
|
|
|
|
// Run the above queued actions.
|
|
|
|
casper.run(function () {
|
|
|
|
casper.test.done();
|
|
|
|
});
|