2021-04-20 01:27:36 -04:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-01-27 09:06:18 -05:00
|
|
|
/// FLAGS
|
|
|
|
|
2021-08-12 04:09:27 -04:00
|
|
|
import { parse } from "../../test_util/std/flags/mod.ts";
|
2021-06-23 11:46:15 -04:00
|
|
|
import { join, resolve, ROOT_PATH } from "../util.js";
|
2021-01-27 09:06:18 -05:00
|
|
|
|
|
|
|
export const {
|
|
|
|
json,
|
2021-06-06 12:08:50 -04:00
|
|
|
wptreport,
|
2021-01-27 09:06:18 -05:00
|
|
|
quiet,
|
|
|
|
release,
|
2021-01-30 13:22:24 -05:00
|
|
|
rebuild,
|
2021-01-27 09:06:18 -05:00
|
|
|
["--"]: rest,
|
|
|
|
["auto-config"]: autoConfig,
|
2021-06-14 07:48:57 -04:00
|
|
|
binary,
|
2021-01-27 09:06:18 -05:00
|
|
|
} = parse(Deno.args, {
|
|
|
|
"--": true,
|
|
|
|
boolean: ["quiet", "release", "no-interactive"],
|
2021-06-14 07:48:57 -04:00
|
|
|
string: ["json", "wptreport", "binary"],
|
2021-01-27 09:06:18 -05:00
|
|
|
});
|
|
|
|
|
2021-06-14 07:48:57 -04:00
|
|
|
export function denoBinary() {
|
|
|
|
if (binary) {
|
2021-06-23 11:46:15 -04:00
|
|
|
return resolve(binary);
|
2021-06-14 07:48:57 -04:00
|
|
|
}
|
|
|
|
return join(ROOT_PATH, `./target/${release ? "release" : "debug"}/deno`);
|
|
|
|
}
|
2021-01-27 09:06:18 -05:00
|
|
|
|
|
|
|
/// WPT TEST MANIFEST
|
|
|
|
|
|
|
|
export interface Manifest {
|
|
|
|
items: {
|
|
|
|
testharness: ManifestFolder;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
export interface ManifestFolder {
|
|
|
|
[key: string]: ManifestFolder | ManifestTest;
|
|
|
|
}
|
|
|
|
export type ManifestTest = [
|
|
|
|
hash: string,
|
|
|
|
...variations: ManifestTestVariation[],
|
|
|
|
];
|
|
|
|
export type ManifestTestVariation = [
|
|
|
|
path: string,
|
|
|
|
options: ManifestTestOptions,
|
|
|
|
];
|
|
|
|
export interface ManifestTestOptions {
|
2021-06-02 19:12:28 -04:00
|
|
|
// deno-lint-ignore camelcase
|
|
|
|
script_metadata: [string, string][];
|
2021-01-27 09:06:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const MANIFEST_PATH = join(ROOT_PATH, "./tools/wpt/manifest.json");
|
|
|
|
|
|
|
|
export async function updateManifest() {
|
|
|
|
const proc = runPy(
|
2021-01-30 13:22:24 -05:00
|
|
|
[
|
|
|
|
"wpt",
|
|
|
|
"manifest",
|
|
|
|
"--tests-root",
|
|
|
|
".",
|
|
|
|
"-p",
|
|
|
|
MANIFEST_PATH,
|
|
|
|
...(rebuild ? ["--rebuild"] : []),
|
|
|
|
],
|
2021-01-27 09:06:18 -05:00
|
|
|
{},
|
|
|
|
);
|
|
|
|
const status = await proc.status();
|
|
|
|
assert(status.success, "updating wpt manifest should succeed");
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getManifest(): Manifest {
|
|
|
|
const manifestText = Deno.readTextFileSync(MANIFEST_PATH);
|
|
|
|
return JSON.parse(manifestText);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// WPT TEST EXPECTATIONS
|
|
|
|
|
|
|
|
const EXPECTATION_PATH = join(ROOT_PATH, "./tools/wpt/expectation.json");
|
|
|
|
|
|
|
|
export interface Expectation {
|
|
|
|
[key: string]: Expectation | boolean | string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getExpectation(): Expectation {
|
|
|
|
const expectationText = Deno.readTextFileSync(EXPECTATION_PATH);
|
|
|
|
return JSON.parse(expectationText);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function saveExpectation(expectation: Expectation) {
|
|
|
|
Deno.writeTextFileSync(
|
|
|
|
EXPECTATION_PATH,
|
|
|
|
JSON.stringify(expectation, undefined, " "),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getExpectFailForCase(
|
|
|
|
expectation: boolean | string[],
|
|
|
|
caseName: string,
|
|
|
|
): boolean {
|
|
|
|
if (typeof expectation == "boolean") {
|
|
|
|
return !expectation;
|
|
|
|
}
|
|
|
|
return expectation.includes(caseName);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// UTILS
|
|
|
|
|
|
|
|
class AssertionError extends Error {
|
|
|
|
name = "AssertionError";
|
|
|
|
constructor(message: string) {
|
|
|
|
super(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function assert(condition: unknown, message: string): asserts condition {
|
|
|
|
if (!condition) {
|
|
|
|
throw new AssertionError(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function runPy(
|
|
|
|
args: string[],
|
|
|
|
options: Omit<Omit<Deno.RunOptions, "cmd">, "cwd">,
|
|
|
|
): Deno.Process {
|
|
|
|
const cmd = Deno.build.os == "windows" ? "python.exe" : "python3";
|
|
|
|
return Deno.run({
|
|
|
|
cmd: [cmd, ...args],
|
|
|
|
cwd: join(ROOT_PATH, "./test_util/wpt/"),
|
|
|
|
...options,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function checkPy3Available() {
|
|
|
|
const proc = runPy(["--version"], { stdout: "piped" });
|
|
|
|
const status = await proc.status();
|
|
|
|
assert(status.success, "failed to run python --version");
|
|
|
|
const output = new TextDecoder().decode(await proc.output());
|
|
|
|
assert(
|
|
|
|
output.includes("Python 3."),
|
|
|
|
`The ${
|
|
|
|
Deno.build.os == "windows" ? "python.exe" : "python3"
|
2021-02-02 22:21:48 -05:00
|
|
|
} in your path is not Python 3.`,
|
2021-01-27 09:06:18 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function cargoBuild() {
|
2021-06-14 14:57:02 -04:00
|
|
|
if (binary) return;
|
2021-01-27 09:06:18 -05:00
|
|
|
const proc = Deno.run({
|
|
|
|
cmd: ["cargo", "build", ...(release ? ["--release"] : [])],
|
|
|
|
cwd: ROOT_PATH,
|
|
|
|
});
|
|
|
|
const status = await proc.status();
|
|
|
|
proc.close();
|
|
|
|
assert(status.success, "cargo build failed");
|
|
|
|
}
|
2021-06-06 12:08:50 -04:00
|
|
|
|
2021-07-07 13:56:47 -04:00
|
|
|
export function escapeLoneSurrogates(input: string): string;
|
|
|
|
export function escapeLoneSurrogates(input: string | null): string | null;
|
|
|
|
export function escapeLoneSurrogates(input: string | null): string | null {
|
|
|
|
if (input === null) return null;
|
|
|
|
return input.replace(
|
|
|
|
/[\uD800-\uDFFF]/gu,
|
|
|
|
(match) => `U+${match.charCodeAt(0).toString(16)}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-06-06 12:08:50 -04:00
|
|
|
/// WPTREPORT
|
|
|
|
|
|
|
|
export async function generateRunInfo(): Promise<unknown> {
|
|
|
|
const oses = {
|
|
|
|
"windows": "win",
|
|
|
|
"darwin": "mac",
|
|
|
|
"linux": "linux",
|
|
|
|
};
|
|
|
|
const proc = Deno.run({
|
|
|
|
cmd: ["git", "rev-parse", "HEAD"],
|
|
|
|
cwd: join(ROOT_PATH, "test_util", "wpt"),
|
|
|
|
stdout: "piped",
|
|
|
|
});
|
|
|
|
await proc.status();
|
|
|
|
const revision = (new TextDecoder().decode(await proc.output())).trim();
|
|
|
|
proc.close();
|
|
|
|
const proc2 = Deno.run({
|
2021-06-14 07:48:57 -04:00
|
|
|
cmd: [denoBinary(), "eval", "console.log(JSON.stringify(Deno.version))"],
|
2021-06-06 12:08:50 -04:00
|
|
|
cwd: join(ROOT_PATH, "test_util", "wpt"),
|
|
|
|
stdout: "piped",
|
|
|
|
});
|
|
|
|
await proc2.status();
|
|
|
|
const version = JSON.parse(new TextDecoder().decode(await proc2.output()));
|
|
|
|
proc2.close();
|
|
|
|
const runInfo = {
|
|
|
|
"os": oses[Deno.build.os],
|
|
|
|
"processor": Deno.build.arch,
|
|
|
|
"version": "unknown",
|
|
|
|
"os_version": "unknown",
|
|
|
|
"bits": 64,
|
|
|
|
"has_sandbox": true,
|
|
|
|
"webrender": false,
|
|
|
|
"automation": false,
|
|
|
|
"linux_distro": "unknown",
|
|
|
|
"revision": revision,
|
|
|
|
"python_version": 3,
|
|
|
|
"product": "deno",
|
|
|
|
"debug": false,
|
|
|
|
"browser_version": version.deno,
|
|
|
|
"browser_channel": version.deno.includes("+") ? "canary" : "stable",
|
|
|
|
"verify": false,
|
|
|
|
"wasm": false,
|
|
|
|
"headless": true,
|
|
|
|
};
|
|
|
|
return runInfo;
|
|
|
|
}
|