2023-10-30 06:33:08 +08:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
|
|
|
|
import { BatchedTestRunner } from './batchedtestrunner.js'
|
|
|
|
import { EmrunAdapter, EmrunCommunication } from './emrunadapter.js'
|
|
|
|
import {
|
|
|
|
ModuleLoader,
|
|
|
|
ResourceFetcher,
|
|
|
|
ResourceLocator,
|
|
|
|
} from './qwasmjsruntime.js';
|
|
|
|
import { parseQuery } from './util.js';
|
|
|
|
import { VisualOutputProducer, UI, ScannerFactory } from './qtestoutputreporter.js'
|
|
|
|
|
2023-11-02 05:23:55 +08:00
|
|
|
const StandardArg = {
|
|
|
|
qVisualOutput: 'qvisualoutput',
|
|
|
|
qTestName: 'qtestname',
|
|
|
|
qBatchedTest: 'qbatchedtest',
|
|
|
|
qUseEmrun: 'quseemrun',
|
|
|
|
qTestOutputFormat: 'qtestoutputformat',
|
|
|
|
}
|
|
|
|
|
|
|
|
const allArgs = new Set(Object.getOwnPropertyNames(StandardArg).map(arg => StandardArg[arg]));
|
|
|
|
Object.defineProperty(StandardArg, 'isKnown', {
|
|
|
|
get()
|
|
|
|
{
|
|
|
|
return name => allArgs.has(name);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2023-10-30 06:33:08 +08:00
|
|
|
(() => {
|
|
|
|
const setPageTitle = (useEmrun, testName, isBatch) => {
|
|
|
|
document.title = 'Qt WASM test runner';
|
|
|
|
if (useEmrun || testName || isBatch) {
|
|
|
|
document.title += `(${[
|
|
|
|
...[useEmrun ? ['emrun'] : []],
|
|
|
|
...[testName ? ['test=' + testName] : []],
|
|
|
|
...[isBatch ? ['batch'] : []]
|
|
|
|
].flat().join(", ")})`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const parsed = parseQuery(location.search);
|
2023-11-02 05:23:55 +08:00
|
|
|
const outputInPage = parsed.has(StandardArg.qVisualOutput);
|
|
|
|
const testName = parsed.get(StandardArg.qTestName);
|
|
|
|
const isBatch = parsed.has(StandardArg.qBatchedTest);
|
|
|
|
const useEmrun = parsed.has(StandardArg.qUseEmrun);
|
|
|
|
const functions = [...parsed.keys()].filter(arg => !StandardArg.isKnown(arg));
|
2023-10-30 06:33:08 +08:00
|
|
|
|
|
|
|
if (testName === undefined) {
|
|
|
|
if (!isBatch)
|
|
|
|
throw new Error('The qtestname parameter is required if not running a batch');
|
|
|
|
} else if (testName === '') {
|
|
|
|
throw new Error(`The qtestname=${testName} parameter is incorrect`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const testOutputFormat = (() => {
|
2023-11-02 05:23:55 +08:00
|
|
|
const format = parsed.get(StandardArg.qTestOutputFormat) ?? 'txt';
|
2023-10-30 06:33:08 +08:00
|
|
|
if (-1 === ['txt', 'xml', 'lightxml', 'junitxml', 'tap'].indexOf(format))
|
|
|
|
throw new Error(`Bad file format: ${format}`);
|
|
|
|
return format;
|
|
|
|
})();
|
|
|
|
|
|
|
|
const resourceLocator = new ResourceLocator('');
|
|
|
|
const testRunner = new BatchedTestRunner(
|
|
|
|
new ModuleLoader(new ResourceFetcher(resourceLocator), resourceLocator),
|
|
|
|
);
|
|
|
|
window.qtTestRunner = testRunner;
|
|
|
|
|
|
|
|
if (useEmrun) {
|
|
|
|
const adapter = new EmrunAdapter(new EmrunCommunication(), testRunner, () => {
|
|
|
|
if (!outputInPage)
|
|
|
|
window.close();
|
|
|
|
});
|
|
|
|
adapter.run();
|
|
|
|
}
|
|
|
|
if (outputInPage) {
|
|
|
|
const scanner = ScannerFactory.createScannerForFormat(testOutputFormat);
|
|
|
|
const ui = new UI(document.querySelector('body'), !!scanner);
|
|
|
|
const adapter =
|
|
|
|
new VisualOutputProducer(ui.outputArea, ui.counters, scanner, testRunner);
|
|
|
|
adapter.run();
|
|
|
|
}
|
|
|
|
setPageTitle(useEmrun, testName, isBatch);
|
|
|
|
|
2023-11-02 05:23:55 +08:00
|
|
|
testRunner.run(isBatch, testName, functions, testOutputFormat);
|
2023-10-30 06:33:08 +08:00
|
|
|
})();
|