element-web/title.test.js

102 lines
3.7 KiB
JavaScript
Raw Normal View History

2018-07-09 17:50:49 +03:00
/*
Copyright 2018 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2018-07-05 13:55:45 +03:00
const puppeteer = require('puppeteer');
2018-07-09 18:06:17 +03:00
const helpers = require('./helpers');
global.riotserver = 'http://localhost:8080';
global.homeserver = 'http://localhost:8008';
global.browser = null;
2018-07-05 13:55:45 +03:00
jest.setTimeout(10000);
beforeAll(async () => {
2018-07-09 18:06:17 +03:00
global.browser = await puppeteer.launch();
2018-07-05 13:55:45 +03:00
});
afterAll(() => {
return browser.close();
})
test('test page loads', async () => {
const page = await browser.newPage();
2018-07-09 18:06:17 +03:00
await page.goto(helpers.riot_url('/'));
2018-07-05 13:55:45 +03:00
const title = await page.title();
expect(title).toBe("Riot");
});
test('test signup', async () => {
2018-07-09 18:06:17 +03:00
const page = await helpers.new_page();
const console_logs = helpers.log_console(page);
const xhr_logs = helpers.log_xhr_requests(page);
await page.goto(helpers.riot_url('/#/register'));
2018-07-05 13:55:45 +03:00
//click 'Custom server' radio button
await page.waitForSelector('#advanced', {visible: true, timeout: 500});
await page.click('#advanced');
2018-07-09 18:06:17 +03:00
const username = 'bruno-' + helpers.rnd_int(10000);
2018-07-05 13:55:45 +03:00
const password = 'testtest';
//fill out form
await page.waitForSelector('.mx_ServerConfig', {visible: true, timeout: 500});
const login_fields = await page.$$('.mx_Login_field');
expect(login_fields.length).toBe(7);
const username_field = login_fields[2];
const password_field = login_fields[3];
const password_repeat_field = login_fields[4];
const hsurl_field = login_fields[5];
2018-07-09 18:06:17 +03:00
await helpers.replace_input_text(username_field, username);
await helpers.replace_input_text(password_field, password);
await helpers.replace_input_text(password_repeat_field, password);
await helpers.replace_input_text(hsurl_field, homeserver);
2018-07-05 13:55:45 +03:00
//wait over a second because Registration/ServerConfig have a 1000ms
//delay to internally set the homeserver url
//see Registration::render and ServerConfig::props::delayTimeMs
2018-07-09 18:06:17 +03:00
await helpers.delay(1200);
2018-07-05 13:55:45 +03:00
/// focus on the button to make sure error validation
/// has happened before checking the form is good to go
const register_button = await page.$('.mx_Login_submit');
await register_button.focus();
//check no errors
2018-07-09 18:06:17 +03:00
const error_text = await helpers.try_get_innertext(page, '.mx_Login_error');
2018-07-05 13:55:45 +03:00
expect(error_text).toBeFalsy();
//submit form
await page.screenshot({path: "beforesubmit.png", fullPage: true});
await register_button.click();
//confirm dialog saying you cant log back in without e-mail
await page.waitForSelector('.mx_QuestionDialog', {visible: true, timeout: 500});
const continue_button = await page.$('.mx_QuestionDialog button.mx_Dialog_primary');
2018-07-09 18:06:17 +03:00
await helpers.print_elements('continue_button', [continue_button]);
2018-07-05 13:55:45 +03:00
await continue_button.click();
//wait for registration to finish so the hash gets set
//onhashchange better?
2018-07-09 18:06:17 +03:00
await helpers.delay(1000);
2018-07-05 13:55:45 +03:00
/*
await page.screenshot({path: "afterlogin.png", fullPage: true});
console.log('browser console logs:');
console.log(console_logs.logs());
console.log('xhr logs:');
console.log(xhr_logs.logs());
*/
//print_elements('page', await page.$('#matrixchat'));
// await navigation_promise;
//await page.waitForSelector('.mx_MatrixChat', {visible: true, timeout: 3000});
const url = page.url();
2018-07-09 18:06:17 +03:00
expect(url).toBe(helpers.riot_url('/#/home'));
2018-07-05 13:55:45 +03:00
});