element-web/start.js

69 lines
1.8 KiB
JavaScript
Raw Normal View History

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');
const assert = require('assert');
2018-07-09 17:51:02 +02:00
const do_signup = require('./tests/signup');
const test_title = require('./tests/loads');
2018-07-09 18:21:05 +02:00
const join_room = require('./tests/join_room');
2018-07-09 17:06:17 +02:00
global.riotserver = 'http://localhost:8080';
global.homeserver = 'http://localhost:8008';
global.browser = null;
2018-07-05 12:55:45 +02:00
async function run_tests() {
await start_session();
process.stdout.write(`* testing riot loads ... `);
await test_title();
process.stdout.write('done\n');
2018-07-09 18:21:05 +02:00
const page = await helpers.new_page();
const username = 'bruno-' + helpers.rnd_int(10000);
const password = 'testtest';
process.stdout.write(`* signing up as ${username} ... `);
2018-07-09 18:21:05 +02:00
await do_signup(page, username, password, homeserver);
process.stdout.write('done\n');
2018-07-09 18:21:05 +02:00
const room = 'test';
process.stdout.write(`* joining room ${room} ... `);
await join_room(page, room);
process.stdout.write('done\n');
await end_session();
}
2018-07-05 12:55:45 +02:00
async function start_session() {
2018-07-09 17:06:17 +02:00
global.browser = await puppeteer.launch();
}
2018-07-05 12:55:45 +02:00
function end_session() {
2018-07-05 12:55:45 +02:00
return browser.close();
}
function on_success() {
console.log('all tests finished successfully');
}
2018-07-05 12:55:45 +02:00
function on_failure(err) {
console.log('failure: ', err);
process.exit(-1);
}
run_tests().then(on_success, on_failure);