2018-07-09 22:50:49 +08: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-09 23:43:21 +08:00
|
|
|
const assert = require('assert');
|
2018-08-07 22:45:34 +08:00
|
|
|
const RiotSession = require('./src/session');
|
2018-07-10 00:35:47 +08:00
|
|
|
|
2018-08-07 22:45:34 +08:00
|
|
|
const signup = require('./src/tests/signup');
|
|
|
|
const join = require('./src/tests/join');
|
|
|
|
const createRoom = require('./src/tests/create-room');
|
|
|
|
const acceptServerNoticesInviteAndConsent = require('./src/tests/server-notices-consent');
|
2018-07-21 00:51:25 +08:00
|
|
|
|
|
|
|
const homeserver = 'http://localhost:8008';
|
2018-08-07 22:45:34 +08:00
|
|
|
const riotserver = 'http://localhost:5000';
|
2018-07-05 18:55:45 +08:00
|
|
|
|
2018-08-07 23:09:43 +08:00
|
|
|
let sessions = [];
|
2018-07-28 00:43:11 +08:00
|
|
|
|
2018-08-07 23:23:01 +08:00
|
|
|
async function createUser(username, options, riotserver) {
|
|
|
|
const session = await RiotSession.create(username, options, riotserver);
|
|
|
|
sessions.push(session);
|
|
|
|
|
|
|
|
session.log.step("signs up");
|
|
|
|
await signup(session, session.username, 'testtest');
|
|
|
|
session.log.done();
|
|
|
|
|
|
|
|
const noticesName = "Server Notices";
|
|
|
|
session.log.step(`accepts "${noticesName}" invite and accepting terms & conditions`);
|
|
|
|
await acceptServerNoticesInviteAndConsent(session, noticesName);
|
|
|
|
session.log.done();
|
|
|
|
return session;
|
|
|
|
}
|
|
|
|
|
2018-07-10 00:35:47 +08:00
|
|
|
async function runTests() {
|
2018-07-27 19:43:12 +08:00
|
|
|
console.log("running tests ...");
|
2018-07-27 21:15:10 +08:00
|
|
|
const options = {};
|
|
|
|
if (process.env.CHROME_PATH) {
|
2018-07-31 16:25:26 +08:00
|
|
|
const path = process.env.CHROME_PATH;
|
|
|
|
console.log(`(using external chrome/chromium at ${path}, make sure it's compatible with puppeteer)`);
|
|
|
|
options.executablePath = path;
|
2018-07-27 21:15:10 +08:00
|
|
|
}
|
2018-07-28 00:43:11 +08:00
|
|
|
|
2018-08-07 23:23:01 +08:00
|
|
|
const alice = await createUser("alice", options, riotserver);
|
|
|
|
const bob = await createUser("bob", options, riotserver);
|
2018-07-21 00:51:25 +08:00
|
|
|
|
2018-07-10 00:21:05 +08:00
|
|
|
const room = 'test';
|
2018-08-07 23:16:27 +08:00
|
|
|
alice.log.step(`creates room ${room}`);
|
2018-08-07 22:45:34 +08:00
|
|
|
await createRoom(alice, room);
|
2018-08-07 23:16:27 +08:00
|
|
|
alice.log.done();
|
2018-07-10 00:21:05 +08:00
|
|
|
|
2018-08-07 23:23:01 +08:00
|
|
|
bob.log.step(`joins room ${room}`);
|
|
|
|
await createRoom(bob, room);
|
|
|
|
bob.log.done();
|
|
|
|
|
|
|
|
|
2018-08-07 22:45:34 +08:00
|
|
|
await alice.close();
|
2018-08-07 23:23:01 +08:00
|
|
|
await bob.close();
|
2018-07-09 23:43:21 +08:00
|
|
|
}
|
|
|
|
|
2018-07-10 00:35:47 +08:00
|
|
|
function onSuccess() {
|
2018-07-09 23:43:21 +08:00
|
|
|
console.log('all tests finished successfully');
|
|
|
|
}
|
2018-07-05 18:55:45 +08:00
|
|
|
|
2018-07-28 02:01:13 +08:00
|
|
|
async function onFailure(err) {
|
2018-07-09 23:43:21 +08:00
|
|
|
console.log('failure: ', err);
|
2018-08-07 23:09:43 +08:00
|
|
|
for(var i = 0; i < sessions.length; ++i) {
|
|
|
|
const session = sessions[i];
|
|
|
|
documentHtml = await session.page.content();
|
|
|
|
console.log(`---------------- START OF ${session.username} LOGS ----------------`);
|
|
|
|
console.log('---------------- console.log output:');
|
|
|
|
console.log(session.consoleLogs());
|
|
|
|
console.log('---------------- network requests:');
|
|
|
|
console.log(session.networkLogs());
|
|
|
|
console.log('---------------- document html:');
|
|
|
|
console.log(documentHtml);
|
|
|
|
console.log(`---------------- END OF ${session.username} LOGS ----------------`);
|
|
|
|
}
|
2018-07-28 02:01:13 +08:00
|
|
|
|
2018-07-09 23:43:21 +08:00
|
|
|
process.exit(-1);
|
|
|
|
}
|
|
|
|
|
2018-07-10 00:35:47 +08:00
|
|
|
runTests().then(onSuccess, onFailure);
|