ethers.js/lib.commonjs/_tests/utils.js

134 lines
4.1 KiB
JavaScript
Raw Normal View History

2022-09-05 23:57:11 +03:00
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
2022-11-09 10:57:02 +03:00
exports.retryIt = exports.log = exports.loadTests = void 0;
2022-09-05 23:57:11 +03:00
const fs_1 = __importDefault(require("fs"));
const path_1 = __importDefault(require("path"));
const zlib_1 = __importDefault(require("zlib"));
// Find the package root (based on the nyc output/ folder)
const root = (function () {
let root = process.cwd();
while (true) {
if (fs_1.default.existsSync(path_1.default.join(root, "output"))) {
return root;
}
const parent = path_1.default.join(root, "..");
if (parent === root) {
break;
}
root = parent;
}
throw new Error("could not find root");
})();
// Load the tests
function loadTests(tag) {
const filename = path_1.default.resolve(root, "testcases", tag + ".json.gz");
return JSON.parse(zlib_1.default.gunzipSync(fs_1.default.readFileSync(filename)).toString());
}
exports.loadTests = loadTests;
function log(context, text) {
if (context && context.test && typeof (context.test._ethersLog) === "function") {
context.test._ethersLog(text);
}
else {
console.log(text);
}
}
exports.log = log;
2022-09-16 05:58:45 +03:00
async function stall(duration) {
return new Promise((resolve) => { setTimeout(resolve, duration); });
}
const ATTEMPTS = 5;
async function retryIt(name, func) {
2022-11-09 10:57:02 +03:00
//const errors: Array<Error> = [ ];
2022-09-16 05:58:45 +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) {
if (error.message === "sync skip; aborting execution") {
// Skipping a test; let mocha handle it
throw error;
}
else if (error.code === "ERR_ASSERTION") {
// Assertion error; let mocha scold us
throw error;
}
else {
2022-11-09 10:57:02 +03:00
//errors.push(error);
2022-09-16 05:58:45 +03:00
if (i === ATTEMPTS - 1) {
2022-11-09 10:57:02 +03:00
throw error;
//stats.pushRetry(i, name, error);
2022-09-16 05:58:45 +03:00
}
else {
await stall(500 * (1 << i));
2022-11-09 10:57:02 +03:00
//stats.pushRetry(i, name, null);
2022-09-16 05:58:45 +03:00
}
}
}
}
// All hope is lost.
throw new Error(`Failed after ${ATTEMPTS} attempts; ${name}`);
});
}
exports.retryIt = retryIt;
2022-11-09 10:57:02 +03:00
/*
export interface StatSet {
name: string;
retries: Array<{ message: string, error: null | Error }>;
}
const _guard = { };
export class Stats {
// #stats: Array<StatSet>;
constructor(guard: any) {
if (guard !== _guard) { throw new Error("private constructor"); }
// this.#stats = [ ];
2022-09-16 05:58:45 +03:00
}
2022-11-09 10:57:02 +03:00
#currentStats(): StatSet {
if (this.#stats.length === 0) { throw new Error("no active stats"); }
2022-09-16 05:58:45 +03:00
return this.#stats[this.#stats.length - 1];
}
2022-11-09 10:57:02 +03:00
pushRetry(attempt: number, line: string, error: null | Error): void {
2022-09-16 05:58:45 +03:00
const { retries } = this.#currentStats();
2022-11-09 10:57:02 +03:00
if (attempt > 0) { retries.pop(); }
2022-09-16 05:58:45 +03:00
if (retries.length < 100) {
retries.push({
2022-11-09 10:57:02 +03:00
message: `${ attempt + 1 } failures: ${ line }`,
2022-09-16 05:58:45 +03:00
error
});
}
}
2022-11-09 10:57:02 +03:00
start(name: string): void {
this.#stats.push({ name, retries: [ ] });
2022-09-16 05:58:45 +03:00
}
2022-11-09 10:57:02 +03:00
end(context?: any): void {
2022-09-16 05:58:45 +03:00
let log = console.log.bind(console);
2022-11-09 10:57:02 +03:00
if (context && typeof(context._ethersLog) === "function") {
2022-09-16 05:58:45 +03:00
log = context._ethersLog;
}
const { name, retries } = this.#currentStats();
2022-11-09 10:57:02 +03:00
if (retries.length === 0) { return; }
log(`Warning: The following tests required retries (${ name })`);
2022-09-16 05:58:45 +03:00
retries.forEach(({ error, message }) => {
log(" " + message);
2022-11-09 10:57:02 +03:00
if (error) { log(error); }
2022-09-16 05:58:45 +03:00
});
}
}
2022-11-09 10:57:02 +03:00
export const stats = new Stats(_guard);
*/
2022-09-05 23:57:11 +03:00
//# sourceMappingURL=utils.js.map