2020-05-15 19:27:29 +02:00
|
|
|
const path = require('path');
|
2020-05-15 16:02:16 +02:00
|
|
|
const puppeteer = require('puppeteer');
|
|
|
|
|
|
|
|
class CommonUtils {
|
|
|
|
constructor() {
|
|
|
|
this.browser = null;
|
2020-05-15 19:27:29 +02:00
|
|
|
this.screenshot_id = 0;
|
2020-05-15 16:02:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async ensure_browser() {
|
|
|
|
if (this.browser === null) {
|
|
|
|
this.browser = await puppeteer.launch({
|
|
|
|
args: [
|
|
|
|
'--window-size=1400,1024',
|
|
|
|
'--no-sandbox', '--disable-setuid-sandbox',
|
|
|
|
],
|
|
|
|
defaultViewport: { width: 1280, height: 1024 },
|
|
|
|
headless: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async get_page(url = null) {
|
|
|
|
await this.ensure_browser();
|
|
|
|
|
|
|
|
const page = await this.browser.newPage();
|
|
|
|
if (url !== null) {
|
|
|
|
await page.goto(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
return page;
|
|
|
|
}
|
2020-05-15 17:38:25 +02:00
|
|
|
|
2020-05-15 19:27:29 +02:00
|
|
|
async screenshot(page, name = null) {
|
|
|
|
if (name === null) {
|
|
|
|
name = `${this.screenshot_id}`;
|
|
|
|
this.screenshot_id += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const root_dir = path.resolve(__dirname, '../../');
|
|
|
|
const screenshot_path = path.join(root_dir, 'var/puppeteer', `${name}.png`);
|
|
|
|
await page.screenshot({
|
|
|
|
path: screenshot_path,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-15 17:38:25 +02:00
|
|
|
async run_test(test_function) {
|
2020-05-16 19:14:31 +02:00
|
|
|
// Pass a page instance to test so we can take
|
|
|
|
// a screenshot of it when the test fails.
|
|
|
|
const page = await this.get_page();
|
2020-05-15 17:38:25 +02:00
|
|
|
try {
|
2020-05-16 19:14:31 +02:00
|
|
|
await test_function(page);
|
2020-05-15 17:38:25 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
2020-05-16 19:14:31 +02:00
|
|
|
|
|
|
|
// Take a screenshot, and increment the screenshot_id.
|
|
|
|
await this.screenshot(page, `failure-${this.screenshot_id}`);
|
|
|
|
this.screenshot_id += 1;
|
|
|
|
|
2020-05-15 17:38:25 +02:00
|
|
|
await this.browser.close();
|
|
|
|
process.exit(1);
|
|
|
|
} finally {
|
|
|
|
this.browser.close();
|
|
|
|
}
|
|
|
|
}
|
2020-05-15 16:02:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const common = new CommonUtils();
|
|
|
|
module.exports = common;
|