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
|
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2018-07-09 16:50:49 +02:00
|
|
|
|
|
|
|
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 17:43:21 +02:00
|
|
|
const assert = require('assert');
|
2018-08-07 16:45:34 +02:00
|
|
|
const RiotSession = require('./src/session');
|
2018-08-07 17:58:58 +02:00
|
|
|
const scenario = require('./src/scenario');
|
2018-09-11 15:02:02 +02:00
|
|
|
const RestSessionCreator = require('./src/rest/creator');
|
2019-04-08 17:00:19 +02:00
|
|
|
const fs = require("fs");
|
2018-07-09 18:35:47 +02:00
|
|
|
|
2018-08-15 10:49:06 +02:00
|
|
|
const program = require('commander');
|
|
|
|
program
|
|
|
|
.option('--no-logs', "don't output logs, document html on error", false)
|
|
|
|
.option('--riot-url [url]', "riot url to test", "http://localhost:5000")
|
2018-09-12 17:27:51 +02:00
|
|
|
.option('--windowed', "dont run tests headless", false)
|
|
|
|
.option('--slow-mo', "run tests slower to follow whats going on", false)
|
|
|
|
.option('--dev-tools', "open chrome devtools in browser window", false)
|
2019-04-05 16:45:07 +02:00
|
|
|
.option('--no-sandbox', "same as puppeteer arg", false)
|
2019-04-08 17:00:19 +02:00
|
|
|
.option('--error-log <n>', 'stdout, or a file to dump html and network logs in when the tests fail')
|
2018-08-15 10:49:06 +02:00
|
|
|
.parse(process.argv);
|
2018-08-08 15:22:54 +02:00
|
|
|
|
2018-09-11 18:28:50 +02:00
|
|
|
const hsUrl = 'http://localhost:5005';
|
|
|
|
|
2018-07-09 18:35:47 +02:00
|
|
|
async function runTests() {
|
2018-08-14 12:53:16 +02:00
|
|
|
let sessions = [];
|
|
|
|
console.log("running tests ...");
|
2018-09-12 17:27:51 +02:00
|
|
|
const options = {
|
|
|
|
slowMo: program.slowMo ? 20 : undefined,
|
|
|
|
devtools: program.devTools,
|
|
|
|
headless: !program.windowed,
|
2019-04-05 16:45:07 +02:00
|
|
|
args: [],
|
2018-09-12 17:27:51 +02:00
|
|
|
};
|
2019-04-05 16:45:07 +02:00
|
|
|
if (!program.sandbox) {
|
2019-04-05 16:55:59 +02:00
|
|
|
options.args.push('--no-sandbox', '--disable-setuid-sandbox');
|
2019-04-05 16:45:07 +02:00
|
|
|
}
|
2018-08-14 12:53:16 +02:00
|
|
|
if (process.env.CHROME_PATH) {
|
|
|
|
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 18:43:11 +02:00
|
|
|
|
2018-09-11 15:02:02 +02:00
|
|
|
const restCreator = new RestSessionCreator(
|
2018-09-11 14:46:25 +02:00
|
|
|
'synapse/installations/consent',
|
2018-09-11 18:28:50 +02:00
|
|
|
hsUrl,
|
2018-09-11 14:46:25 +02:00
|
|
|
__dirname
|
|
|
|
);
|
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
async function createSession(username) {
|
2018-09-11 18:28:50 +02:00
|
|
|
const session = await RiotSession.create(username, options, program.riotUrl, hsUrl);
|
2018-08-14 12:53:16 +02:00
|
|
|
sessions.push(session);
|
|
|
|
return session;
|
|
|
|
}
|
2018-07-09 17:43:21 +02:00
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
let failure = false;
|
|
|
|
try {
|
2019-04-02 15:14:44 +02:00
|
|
|
await scenario(createSession, restCreator);
|
2018-08-14 12:53:16 +02:00
|
|
|
} catch(err) {
|
|
|
|
failure = true;
|
|
|
|
console.log('failure: ', err);
|
2019-04-08 17:00:19 +02:00
|
|
|
if (program.errorLog) {
|
|
|
|
const logs = await createLogs(sessions);
|
|
|
|
if (program.errorLog === "stdout") {
|
|
|
|
process.stdout.write(logs);
|
|
|
|
} else {
|
|
|
|
console.log(`wrote logs to "${program.errorLog}"`);
|
|
|
|
fs.writeFileSync(program.errorLog, logs);
|
2018-08-14 12:53:16 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-07 17:58:58 +02:00
|
|
|
}
|
2018-07-05 12:55:45 +02:00
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
// wait 5 minutes on failure if not running headless
|
|
|
|
// to inspect what went wrong
|
|
|
|
if (failure && options.headless === false) {
|
|
|
|
await new Promise((resolve) => setTimeout(resolve, 5 * 60 * 1000));
|
|
|
|
}
|
2018-08-08 15:22:54 +02:00
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
await Promise.all(sessions.map((session) => session.close()));
|
2018-08-07 17:58:58 +02:00
|
|
|
|
2018-08-14 12:53:16 +02:00
|
|
|
if (failure) {
|
|
|
|
process.exit(-1);
|
|
|
|
} else {
|
|
|
|
console.log('all tests finished successfully');
|
|
|
|
}
|
2018-07-09 17:43:21 +02:00
|
|
|
}
|
|
|
|
|
2019-04-08 17:00:19 +02:00
|
|
|
async function createLogs(sessions) {
|
|
|
|
let logs = "";
|
|
|
|
for(let i = 0; i < sessions.length; ++i) {
|
|
|
|
const session = sessions[i];
|
|
|
|
documentHtml = await session.page.content();
|
|
|
|
logs = logs + `---------------- START OF ${session.username} LOGS ----------------\n`;
|
|
|
|
logs = logs + '\n---------------- console.log output:\n';
|
|
|
|
logs = logs + session.consoleLogs();
|
|
|
|
logs = logs + '\n---------------- network requests:\n';
|
|
|
|
logs = logs + session.networkLogs();
|
|
|
|
logs = logs + '\n---------------- document html:\n';
|
|
|
|
logs = logs + documentHtml;
|
|
|
|
logs = logs + `\n---------------- END OF ${session.username} LOGS ----------------\n`;
|
|
|
|
}
|
|
|
|
return logs;
|
|
|
|
}
|
|
|
|
|
2018-08-07 17:58:58 +02:00
|
|
|
runTests().catch(function(err) {
|
2018-08-14 12:53:16 +02:00
|
|
|
console.log(err);
|
|
|
|
process.exit(-1);
|
2018-08-15 10:49:06 +02:00
|
|
|
});
|