-
-
Notifications
You must be signed in to change notification settings - Fork 318
/
Copy pathensure-config-is-synced.test.ts
59 lines (48 loc) · 2.17 KB
/
ensure-config-is-synced.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {describe, it, expect, vi} from "vitest";
import axios from "axios";
import {mainnetPreset} from "../../src/presets/mainnet.js";
import {minimalPreset} from "../../src/presets/minimal.js";
import {ForkName, BeaconPreset} from "../../src/index.js";
import {loadConfigYaml} from "../yaml.js";
// Not e2e, but slow. Run with e2e tests
/** https://github.com/ethereum/consensus-specs/releases */
const specConfigCommit = "v1.4.0-beta.5";
describe("Ensure config is synced", function () {
vi.setConfig({testTimeout: 60 * 1000});
it("mainnet", async function () {
const remotePreset = await downloadRemoteConfig("mainnet", specConfigCommit);
assertCorrectPreset({...mainnetPreset}, remotePreset);
});
it("minimal", async function () {
const remotePreset = await downloadRemoteConfig("minimal", specConfigCommit);
assertCorrectPreset({...minimalPreset}, remotePreset);
});
});
function assertCorrectPreset(localPreset: BeaconPreset, remotePreset: BeaconPreset): void {
// Check each key for better debuggability
for (const key of Object.keys(remotePreset) as (keyof BeaconPreset)[]) {
expect(localPreset[key]).toBe(remotePreset[key]);
}
expect(localPreset).toEqual(remotePreset);
}
async function downloadRemoteConfig(preset: "mainnet" | "minimal", commit: string): Promise<BeaconPreset> {
const downloadedParams = await Promise.all(
Object.values(ForkName).map((forkName) =>
axios({
url: `https://raw.githubusercontent.com/ethereum/consensus-specs/${commit}/presets/${preset}/${forkName}.yaml`,
timeout: 30 * 1000,
}).then((response) => loadConfigYaml(response.data))
)
);
// Merge all the fetched yamls for the different forks
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const beaconPresetRaw: Record<string, unknown> = Object.assign(
...(downloadedParams as unknown as [input: Record<string, unknown>])
);
// As of December 2021 the presets don't include any hex strings
const beaconPreset = {} as BeaconPreset;
for (const key of Object.keys(beaconPresetRaw)) {
beaconPreset[key as keyof BeaconPreset] = parseInt(beaconPresetRaw[key] as string, 10);
}
return beaconPreset;
}