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-02 05:13:08 +03:00
|
|
|
import { test as playwrightTest, slowTest as playwrightSlowTest } from './playwrightTest';
|
2021-04-06 04:48:46 +03:00
|
|
|
import { test as browserTest, slowTest as browserSlowTest } from './browserTest';
|
|
|
|
import { test as contextTest } from './contextTest';
|
2021-04-02 02:35:26 +03:00
|
|
|
import { test as pageTest } from './pageTest';
|
2021-04-02 21:19:26 +03:00
|
|
|
import { test as cliTest } from './cliTest';
|
2021-04-02 02:35:26 +03:00
|
|
|
import { PlaywrightEnv, BrowserEnv, PageEnv, BrowserName } from './browserEnv';
|
|
|
|
import { ServerEnv } from './serverEnv';
|
2021-04-02 21:19:26 +03:00
|
|
|
import { CLIEnv } from './cliEnv';
|
2021-04-09 17:59:09 +03:00
|
|
|
import { CoverageEnv } from './coverage';
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
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-02 02:35:26 +03:00
|
|
|
const options = {
|
2021-04-02 19:00:49 +03:00
|
|
|
mode,
|
2021-04-02 02:35:26 +03:00
|
|
|
executablePath,
|
2021-04-08 17:59:05 +03:00
|
|
|
traceDir: process.env.PWTRACE ? path.join(config.outputDir, 'trace') : undefined,
|
2021-04-02 02:35:26 +03:00
|
|
|
headless: !process.env.HEADFUL,
|
2021-04-09 17:59:09 +03:00
|
|
|
channel: process.env.PWTEST_CHANNEL as any,
|
|
|
|
video: !!process.env.PWTEST_VIDEO,
|
2021-04-02 02:35:26 +03:00
|
|
|
};
|
2021-04-09 17:59:09 +03:00
|
|
|
const commonEnv = folio.merge(new CoverageEnv(browserName), new ServerEnv());
|
|
|
|
playwrightTest.runWith(folio.merge(commonEnv, new PlaywrightEnv(browserName, options)), { tag: browserName });
|
|
|
|
playwrightSlowTest.runWith(folio.merge(commonEnv, new PlaywrightEnv(browserName, options)), { timeout: config.timeout * 3, tag: browserName });
|
|
|
|
browserTest.runWith(folio.merge(commonEnv, new BrowserEnv(browserName, options)), { tag: browserName });
|
|
|
|
browserSlowTest.runWith(folio.merge(commonEnv, new BrowserEnv(browserName, options)), { timeout: config.timeout * 3, tag: browserName });
|
|
|
|
pageTest.runWith(folio.merge(commonEnv, new PageEnv(browserName, options)), { tag: browserName });
|
|
|
|
contextTest.runWith(folio.merge(commonEnv, new PageEnv(browserName, options)), { tag: browserName });
|
2021-04-05 19:18:56 +03:00
|
|
|
if (mode !== 'service')
|
2021-04-09 17:59:09 +03:00
|
|
|
cliTest.runWith(folio.merge(commonEnv, new CLIEnv(browserName, options)), { tag: browserName });
|
2021-04-02 02:35:26 +03:00
|
|
|
}
|