2022-09-05 23:14:43 +03:00
|
|
|
|
|
|
|
import fs from "fs"
|
|
|
|
import path from "path";
|
|
|
|
import zlib from 'zlib';
|
|
|
|
|
|
|
|
// Find the package root (based on the nyc output/ folder)
|
|
|
|
const root = (function() {
|
|
|
|
let root = process.cwd();
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
if (fs.existsSync(path.join(root, "output"))) { return root; }
|
|
|
|
const parent = path.join(root, "..");
|
|
|
|
if (parent === root) { break; }
|
|
|
|
root = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error("could not find root");
|
|
|
|
})();
|
|
|
|
|
|
|
|
// Load the tests
|
|
|
|
export function loadTests<T>(tag: string): Array<T> {
|
|
|
|
const filename = path.resolve(root, "testcases", tag + ".json.gz");
|
|
|
|
return JSON.parse(zlib.gunzipSync(fs.readFileSync(filename)).toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
export function log(context: any, text: string): void {
|
|
|
|
if (context && context.test && typeof(context.test._ethersLog) === "function") {
|
|
|
|
context.test._ethersLog(text);
|
|
|
|
} else {
|
|
|
|
console.log(text);
|
|
|
|
}
|
|
|
|
}
|
2022-09-16 05:20:48 +03:00
|
|
|
|
|
|
|
async function stall(duration: number): Promise<void> {
|
|
|
|
return new Promise((resolve) => { setTimeout(resolve, duration); });
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MochaRunnable {
|
|
|
|
timeout: (value: number) => void;
|
|
|
|
skip: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ATTEMPTS = 5;
|
|
|
|
export async function retryIt(name: string, func: (this: MochaRunnable) => Promise<void>): Promise<void> {
|
2022-11-05 01:11:38 +03:00
|
|
|
//const errors: Array<Error> = [ ];
|
|
|
|
|
2022-09-16 05:20:48 +03:00
|
|
|
it(name, async function() {
|
|
|
|
this.timeout(ATTEMPTS * 5000);
|
|
|
|
|
|
|
|
for (let i = 0; i < ATTEMPTS; i++) {
|
|
|
|
try {
|
|
|
|
await func.call(this);
|
|
|
|
return;
|
|
|
|
} catch (error: any) {
|
|
|
|
if (error.message === "sync skip; aborting execution") {
|
|
|
|
// Skipping a test; let mocha handle it
|
|
|
|
throw error;
|
2022-11-05 01:11:38 +03:00
|
|
|
|
2022-09-16 05:20:48 +03:00
|
|
|
} else if (error.code === "ERR_ASSERTION") {
|
|
|
|
// Assertion error; let mocha scold us
|
|
|
|
throw error;
|
2022-11-05 01:11:38 +03:00
|
|
|
|
2022-09-16 05:20:48 +03:00
|
|
|
} else {
|
2022-11-05 01:11:38 +03:00
|
|
|
//errors.push(error);
|
|
|
|
|
2022-09-16 05:20:48 +03:00
|
|
|
if (i === ATTEMPTS - 1) {
|
2022-11-05 01:11:38 +03:00
|
|
|
throw error;
|
|
|
|
//stats.pushRetry(i, name, error);
|
2022-09-16 05:20:48 +03:00
|
|
|
} else {
|
|
|
|
await stall(500 * (1 << i));
|
2022-11-05 01:11:38 +03:00
|
|
|
//stats.pushRetry(i, name, null);
|
2022-09-16 05:20:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// All hope is lost.
|
|
|
|
throw new Error(`Failed after ${ ATTEMPTS } attempts; ${ name }`);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-05 01:11:38 +03:00
|
|
|
/*
|
2022-09-16 05:20:48 +03:00
|
|
|
export interface StatSet {
|
|
|
|
name: string;
|
|
|
|
retries: Array<{ message: string, error: null | Error }>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const _guard = { };
|
|
|
|
|
|
|
|
export class Stats {
|
2022-11-05 01:11:38 +03:00
|
|
|
// #stats: Array<StatSet>;
|
2022-09-16 05:20:48 +03:00
|
|
|
|
|
|
|
constructor(guard: any) {
|
|
|
|
if (guard !== _guard) { throw new Error("private constructor"); }
|
2022-11-05 01:11:38 +03:00
|
|
|
// this.#stats = [ ];
|
2022-09-16 05:20:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#currentStats(): StatSet {
|
|
|
|
if (this.#stats.length === 0) { throw new Error("no active stats"); }
|
|
|
|
return this.#stats[this.#stats.length - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
pushRetry(attempt: number, line: string, error: null | Error): void {
|
|
|
|
const { retries } = this.#currentStats();
|
|
|
|
|
|
|
|
if (attempt > 0) { retries.pop(); }
|
|
|
|
if (retries.length < 100) {
|
|
|
|
retries.push({
|
|
|
|
message: `${ attempt + 1 } failures: ${ line }`,
|
|
|
|
error
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
start(name: string): void {
|
|
|
|
this.#stats.push({ name, retries: [ ] });
|
|
|
|
}
|
|
|
|
|
|
|
|
end(context?: any): void {
|
|
|
|
let log = console.log.bind(console);
|
|
|
|
if (context && typeof(context._ethersLog) === "function") {
|
|
|
|
log = context._ethersLog;
|
|
|
|
}
|
|
|
|
const { name, retries } = this.#currentStats();
|
|
|
|
if (retries.length === 0) { return; }
|
|
|
|
log(`Warning: The following tests required retries (${ name })`);
|
|
|
|
retries.forEach(({ error, message }) => {
|
|
|
|
log(" " + message);
|
|
|
|
if (error) { log(error); }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const stats = new Stats(_guard);
|
2022-11-05 01:11:38 +03:00
|
|
|
*/
|