2018-07-09 16:50:49 +02: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 12:55:45 +02:00
|
|
|
const puppeteer = require('puppeteer');
|
2018-07-09 17:06:17 +02:00
|
|
|
const helpers = require('./helpers');
|
2018-07-09 17:43:21 +02:00
|
|
|
const assert = require('assert');
|
2018-07-09 18:35:47 +02:00
|
|
|
|
|
|
|
const signup = require('./tests/signup');
|
|
|
|
const join = require('./tests/join');
|
2018-07-20 18:51:25 +02:00
|
|
|
const createRoom = require('./tests/create-room');
|
|
|
|
const acceptServerNoticesInviteAndConsent = require('./tests/server-notices-consent');
|
|
|
|
|
|
|
|
const homeserver = 'http://localhost:8008';
|
2018-07-09 17:43:21 +02:00
|
|
|
|
2018-07-27 16:22:17 +02:00
|
|
|
global.riotserver = 'http://localhost:5000';
|
2018-07-09 17:06:17 +02:00
|
|
|
global.browser = null;
|
2018-07-05 12:55:45 +02:00
|
|
|
|
2018-07-27 18:43:11 +02:00
|
|
|
let consoleLogs = null;
|
|
|
|
let xhrLogs = null;
|
|
|
|
|
2018-07-09 18:35:47 +02:00
|
|
|
async function runTests() {
|
2018-07-27 13:43:12 +02:00
|
|
|
console.log("running tests ...");
|
2018-07-27 15:15:10 +02:00
|
|
|
const options = {};
|
|
|
|
if (process.env.CHROME_PATH) {
|
|
|
|
options.executablePath = process.env.CHROME_PATH;
|
|
|
|
}
|
|
|
|
global.browser = await puppeteer.launch(options);
|
2018-07-09 18:35:47 +02:00
|
|
|
const page = await helpers.newPage();
|
2018-07-27 18:43:11 +02:00
|
|
|
|
|
|
|
consoleLogs = helpers.logConsole(page);
|
|
|
|
xhrLogs = helpers.logXHRRequests(page);
|
2018-07-09 18:40:25 +02:00
|
|
|
|
2018-07-23 10:36:03 +02:00
|
|
|
const username = 'user-' + helpers.randomInt(10000);
|
2018-07-09 17:43:21 +02:00
|
|
|
const password = 'testtest';
|
|
|
|
process.stdout.write(`* signing up as ${username} ... `);
|
2018-07-23 11:20:07 +02:00
|
|
|
await signup(page, username, password);
|
2018-07-09 17:43:21 +02:00
|
|
|
process.stdout.write('done\n');
|
2018-07-09 18:21:05 +02:00
|
|
|
|
2018-07-20 18:51:25 +02:00
|
|
|
const noticesName = "Server Notices";
|
2018-07-27 18:43:11 +02:00
|
|
|
process.stdout.write(`* accepting "${noticesName}" and accepting terms & conditions ... `);
|
2018-07-20 18:51:25 +02:00
|
|
|
await acceptServerNoticesInviteAndConsent(page, noticesName);
|
|
|
|
process.stdout.write('done\n');
|
|
|
|
|
2018-07-09 18:21:05 +02:00
|
|
|
const room = 'test';
|
2018-07-20 18:51:25 +02:00
|
|
|
process.stdout.write(`* creating room ${room} ... `);
|
|
|
|
await createRoom(page, room);
|
2018-07-09 18:21:05 +02:00
|
|
|
process.stdout.write('done\n');
|
|
|
|
|
2018-07-09 18:40:25 +02:00
|
|
|
await browser.close();
|
2018-07-09 17:43:21 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 18:35:47 +02:00
|
|
|
function onSuccess() {
|
2018-07-09 17:43:21 +02:00
|
|
|
console.log('all tests finished successfully');
|
|
|
|
}
|
2018-07-05 12:55:45 +02:00
|
|
|
|
2018-07-09 18:35:47 +02:00
|
|
|
function onFailure(err) {
|
2018-07-09 17:43:21 +02:00
|
|
|
console.log('failure: ', err);
|
2018-07-27 18:43:11 +02:00
|
|
|
console.log('console.log output:');
|
|
|
|
console.log(consoleLogs.logs());
|
|
|
|
console.log('XHR requests:');
|
|
|
|
console.log(xhrLogs.logs());
|
2018-07-09 17:43:21 +02:00
|
|
|
process.exit(-1);
|
|
|
|
}
|
|
|
|
|
2018-07-09 18:35:47 +02:00
|
|
|
runTests().then(onSuccess, onFailure);
|