2023-01-17 17:16:36 -08:00
|
|
|
/**
|
|
|
|
|
* Copyright Microsoft Corporation. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-01-20 18:24:15 -08:00
|
|
|
import path from 'path';
|
|
|
|
|
import type { TestError } from '../reporter';
|
|
|
|
|
import type { FullConfigInternal } from './types';
|
2023-01-25 17:26:30 -08:00
|
|
|
import type { LoadError } from './fixtures';
|
2023-01-17 17:16:36 -08:00
|
|
|
import { setCurrentlyLoadingFileSuite } from './globals';
|
2023-01-20 18:24:15 -08:00
|
|
|
import { PoolBuilder } from './poolBuilder';
|
2023-01-19 15:56:57 -08:00
|
|
|
import { Suite } from './test';
|
2023-01-17 17:16:36 -08:00
|
|
|
import { requireOrImport } from './transform';
|
|
|
|
|
import { serializeError } from './util';
|
|
|
|
|
|
|
|
|
|
export const defaultTimeout = 30000;
|
|
|
|
|
|
|
|
|
|
// To allow multiple loaders in the same process without clearing require cache,
|
|
|
|
|
// we make these maps global.
|
|
|
|
|
const cachedFileSuites = new Map<string, Suite>();
|
|
|
|
|
|
|
|
|
|
export class TestLoader {
|
|
|
|
|
private _fullConfig: FullConfigInternal;
|
|
|
|
|
|
|
|
|
|
constructor(fullConfig: FullConfigInternal) {
|
|
|
|
|
this._fullConfig = fullConfig;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-20 18:24:15 -08:00
|
|
|
async loadTestFile(file: string, environment: 'loader' | 'worker', loadErrors: TestError[]): Promise<Suite> {
|
2023-01-17 17:16:36 -08:00
|
|
|
if (cachedFileSuites.has(file))
|
|
|
|
|
return cachedFileSuites.get(file)!;
|
|
|
|
|
const suite = new Suite(path.relative(this._fullConfig.rootDir, file) || path.basename(file), 'file');
|
|
|
|
|
suite._requireFile = file;
|
|
|
|
|
suite.location = { file, line: 0, column: 0 };
|
|
|
|
|
|
|
|
|
|
setCurrentlyLoadingFileSuite(suite);
|
|
|
|
|
try {
|
|
|
|
|
await requireOrImport(file);
|
|
|
|
|
cachedFileSuites.set(file, suite);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
if (environment === 'worker')
|
|
|
|
|
throw e;
|
2023-01-20 18:24:15 -08:00
|
|
|
loadErrors.push(serializeError(e));
|
2023-01-17 17:16:36 -08:00
|
|
|
} finally {
|
|
|
|
|
setCurrentlyLoadingFileSuite(undefined);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
// Test locations that we discover potentially have different file name.
|
|
|
|
|
// This could be due to either
|
|
|
|
|
// a) use of source maps or due to
|
|
|
|
|
// b) require of one file from another.
|
|
|
|
|
// Try fixing (a) w/o regressing (b).
|
|
|
|
|
|
|
|
|
|
const files = new Set<string>();
|
|
|
|
|
suite.allTests().map(t => files.add(t.location.file));
|
|
|
|
|
if (files.size === 1) {
|
|
|
|
|
// All tests point to one file.
|
|
|
|
|
const mappedFile = files.values().next().value;
|
|
|
|
|
if (suite.location.file !== mappedFile) {
|
|
|
|
|
// The file is different, check for a likely source map case.
|
|
|
|
|
if (path.extname(mappedFile) !== path.extname(suite.location.file))
|
|
|
|
|
suite.location.file = mappedFile;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return suite;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-20 18:24:15 -08:00
|
|
|
|
2023-01-25 17:26:30 -08:00
|
|
|
export async function loadTestFilesInProcess(config: FullConfigInternal, testFiles: string[], loadErrors: LoadError[]): Promise<Suite> {
|
2023-01-20 18:24:15 -08:00
|
|
|
const testLoader = new TestLoader(config);
|
|
|
|
|
const rootSuite = new Suite('', 'root');
|
|
|
|
|
for (const file of testFiles) {
|
|
|
|
|
const fileSuite = await testLoader.loadTestFile(file, 'loader', loadErrors);
|
|
|
|
|
rootSuite._addSuite(fileSuite);
|
|
|
|
|
}
|
|
|
|
|
// Generate hashes.
|
2023-01-25 17:26:30 -08:00
|
|
|
PoolBuilder.buildForLoader(rootSuite, loadErrors);
|
2023-01-20 18:24:15 -08:00
|
|
|
return rootSuite;
|
|
|
|
|
}
|