2021-04-02 02:35:26 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-04-07 02:09:54 +03:00
|
|
|
import * as folio from 'folio';
|
2021-04-02 02:35:26 +03:00
|
|
|
import * as path from 'path';
|
2021-04-30 17:40:22 +03:00
|
|
|
import { playwrightTest, slowPlaywrightTest, contextTest, tracingTest } from './browserTest';
|
2021-04-02 02:35:26 +03:00
|
|
|
import { test as pageTest } from './pageTest';
|
2021-04-29 21:11:32 +03:00
|
|
|
import { BrowserName, CommonTestArgs, CommonWorkerArgs } from './baseTest';
|
|
|
|
import type { Browser, BrowserContext } from '../../index';
|
2021-04-02 02:35:26 +03:00
|
|
|
|
2021-04-07 02:09:54 +03:00
|
|
|
const config: folio.Config = {
|
2021-04-02 02:35:26 +03:00
|
|
|
testDir: path.join(__dirname, '..'),
|
2021-04-07 18:07:31 +03:00
|
|
|
outputDir: path.join(__dirname, '..', '..', 'test-results'),
|
2021-04-09 17:59:09 +03:00
|
|
|
timeout: process.env.PWTEST_VIDEO || process.env.PWTRACE ? 60000 : 30000,
|
2021-04-02 02:35:26 +03:00
|
|
|
globalTimeout: 5400000,
|
|
|
|
};
|
|
|
|
if (process.env.CI) {
|
|
|
|
config.workers = 1;
|
|
|
|
config.forbidOnly = true;
|
|
|
|
config.retries = 3;
|
|
|
|
}
|
2021-04-07 02:09:54 +03:00
|
|
|
folio.setConfig(config);
|
|
|
|
|
|
|
|
if (process.env.CI) {
|
|
|
|
folio.setReporters([
|
|
|
|
new folio.reporters.dot(),
|
2021-04-07 08:46:52 +03:00
|
|
|
new folio.reporters.json({ outputFile: path.join(__dirname, '..', '..', 'test-results', 'report.json') }),
|
2021-04-07 02:09:54 +03:00
|
|
|
]);
|
|
|
|
}
|
2021-04-02 02:35:26 +03:00
|
|
|
|
|
|
|
const getExecutablePath = (browserName: BrowserName) => {
|
|
|
|
if (browserName === 'chromium' && process.env.CRPATH)
|
|
|
|
return process.env.CRPATH;
|
|
|
|
if (browserName === 'firefox' && process.env.FFPATH)
|
|
|
|
return process.env.FFPATH;
|
|
|
|
if (browserName === 'webkit' && process.env.WKPATH)
|
|
|
|
return process.env.WKPATH;
|
|
|
|
};
|
|
|
|
|
2021-04-29 21:11:32 +03:00
|
|
|
type WorkerOptionsFor<T> = T extends folio.TestType<infer T, infer W, infer TO, infer WO> ? WO : any;
|
|
|
|
type AllOptions = WorkerOptionsFor<typeof contextTest>;
|
|
|
|
|
|
|
|
class PageEnv {
|
|
|
|
private _browser: Browser
|
|
|
|
private _browserVersion: string;
|
2021-04-30 20:19:37 +03:00
|
|
|
private _browserMajorVersion: number;
|
2021-04-29 21:11:32 +03:00
|
|
|
private _context: BrowserContext | undefined;
|
|
|
|
|
|
|
|
async beforeAll(args: AllOptions & CommonWorkerArgs, workerInfo: folio.WorkerInfo) {
|
|
|
|
this._browser = await args.playwright[args.browserName].launch({
|
|
|
|
...args.launchOptions,
|
|
|
|
_traceDir: args.traceDir,
|
|
|
|
channel: args.channel,
|
|
|
|
headless: !args.headful,
|
|
|
|
handleSIGINT: false,
|
|
|
|
} as any);
|
|
|
|
this._browserVersion = this._browser.version();
|
2021-04-30 20:19:37 +03:00
|
|
|
this._browserMajorVersion = Number(this._browserVersion.split('.')[0]);
|
2021-04-29 21:11:32 +03:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
async beforeEach(args: AllOptions & CommonTestArgs, testInfo: folio.TestInfo) {
|
|
|
|
testInfo.data.browserVersion = this._browserVersion;
|
|
|
|
this._context = await this._browser.newContext({
|
|
|
|
recordVideo: args.video ? { dir: testInfo.outputPath('') } : undefined,
|
|
|
|
...args.contextOptions,
|
|
|
|
});
|
|
|
|
const page = await this._context.newPage();
|
2021-04-30 20:19:37 +03:00
|
|
|
return { context: this._context, page, browserVersion: this._browserVersion, browserMajorVersion: this._browserMajorVersion };
|
2021-04-29 21:11:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async afterEach({}) {
|
|
|
|
if (this._context)
|
|
|
|
await this._context.close();
|
|
|
|
this._context = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
async afterAll({}, workerInfo: folio.WorkerInfo) {
|
|
|
|
await this._browser.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-02 02:35:26 +03:00
|
|
|
const browsers = ['chromium', 'webkit', 'firefox'] as BrowserName[];
|
|
|
|
for (const browserName of browsers) {
|
|
|
|
const executablePath = getExecutablePath(browserName);
|
2021-04-05 19:19:39 +03:00
|
|
|
if (executablePath && (process.env.FOLIO_WORKER_INDEX === undefined || process.env.FOLIO_WORKER_INDEX === ''))
|
|
|
|
console.error(`Using executable at ${executablePath}`);
|
2021-04-09 17:59:09 +03:00
|
|
|
const mode = (process.env.PWTEST_MODE || 'default') as ('default' | 'driver' | 'service');
|
2021-04-29 21:11:32 +03:00
|
|
|
const envConfig = {
|
|
|
|
options: {
|
|
|
|
mode,
|
|
|
|
engine: browserName,
|
|
|
|
headful: !!process.env.HEADFUL,
|
|
|
|
channel: process.env.PWTEST_CHANNEL as any,
|
|
|
|
video: !!process.env.PWTEST_VIDEO,
|
|
|
|
traceDir: process.env.PWTRACE ? path.join(config.outputDir, 'trace') : undefined,
|
|
|
|
launchOptions: {
|
|
|
|
executablePath,
|
|
|
|
},
|
|
|
|
coverageName: browserName,
|
|
|
|
},
|
|
|
|
tag: browserName,
|
2021-04-02 02:35:26 +03:00
|
|
|
};
|
2021-04-29 21:11:32 +03:00
|
|
|
playwrightTest.runWith(envConfig);
|
|
|
|
slowPlaywrightTest.runWith({ ...envConfig, timeout: config.timeout * 3 });
|
|
|
|
pageTest.runWith(envConfig, new PageEnv());
|
2021-04-30 17:40:22 +03:00
|
|
|
tracingTest.runWith({ options: { ...envConfig.options, traceDir: path.join(config.outputDir, 'trace-' + process.env.FOLIO_WORKER_INDEX) }, tag: browserName });
|
2021-04-02 02:35:26 +03:00
|
|
|
}
|