Skip to content

Commit 59e9ef5

Browse files
committed
address comments
1 parent eb86284 commit 59e9ef5

File tree

2 files changed

+74
-93
lines changed

2 files changed

+74
-93
lines changed

v-next/core/src/internal/config-validation.ts

+74-23
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@ import type {
55
} from "../types/hooks.js";
66
import type { HardhatPlugin } from "../types/plugins.js";
77

8-
import {
9-
isOptionDefinition,
10-
isPositionalArgumentDefinition,
11-
isTaskDefinition,
12-
} from "../type-guards.js";
8+
import { isObject } from "@ignored/hardhat-vnext-utils/lang";
9+
1310
import {
1411
ArgumentType,
1512
type OptionDefinition,
@@ -23,6 +20,64 @@ import {
2320
type TaskOverrideDefinition,
2421
} from "../types/tasks.js";
2522

23+
function isValidEnumValue(
24+
theEnum: Record<string, string>,
25+
value: string,
26+
): boolean {
27+
// Enums are objects that have entries that map:
28+
// 1) keys to values
29+
// 2) values to keys
30+
const key = theEnum[value];
31+
if (key === undefined) {
32+
return false;
33+
}
34+
35+
return theEnum[key] === value;
36+
}
37+
38+
/**
39+
* Returns true if `potential` is a `TaskDefinition`.
40+
*/
41+
function isTaskDefinition(potential: unknown): potential is TaskDefinition {
42+
return (
43+
typeof potential === "object" &&
44+
potential !== null &&
45+
"type" in potential &&
46+
typeof potential.type === "string" &&
47+
isValidEnumValue(TaskDefinitionType, potential.type)
48+
);
49+
}
50+
51+
/**
52+
* Returns true if `potential` is a `OptionDefinition`.
53+
*/
54+
function isOptionDefinition(potential: unknown): potential is OptionDefinition {
55+
return (
56+
typeof potential === "object" &&
57+
potential !== null &&
58+
"type" in potential &&
59+
typeof potential.type === "string" &&
60+
isValidEnumValue(ArgumentType, potential.type) &&
61+
!("isVariadic" in potential)
62+
);
63+
}
64+
65+
/**
66+
* Returns true if `potential` is a `PositionalArgumentDefinition`.
67+
*/
68+
function isPositionalArgumentDefinition(
69+
potential: unknown,
70+
): potential is PositionalArgumentDefinition {
71+
return (
72+
typeof potential === "object" &&
73+
potential !== null &&
74+
"type" in potential &&
75+
typeof potential.type === "string" &&
76+
isValidEnumValue(ArgumentType, potential.type) &&
77+
"isVariadic" in potential
78+
);
79+
}
80+
2681
export async function validateUserConfig(
2782
hooks: HookManager,
2883
config: HardhatUserConfig,
@@ -166,7 +221,7 @@ export function validateNewTask(
166221
});
167222
}
168223

169-
if (typeof task.options === "object" && task.options !== null) {
224+
if (isObject(task.options)) {
170225
validationErrors.push(
171226
...validateOptions(task.options, [...path, "options"]),
172227
);
@@ -221,7 +276,7 @@ export function validateTaskOverride(
221276
});
222277
}
223278

224-
if (typeof task.options === "object" && task.options !== null) {
279+
if (isObject(task.options)) {
225280
validationErrors.push(
226281
...validateOptions(task.options, [...path, "options"]),
227282
);
@@ -348,10 +403,9 @@ export function validatePositionalArguments(
348403
case ArgumentType.STRING:
349404
case ArgumentType.FILE: {
350405
if (
351-
(typeof arg.defaultValue !== "string" &&
352-
!Array.isArray(arg.defaultValue)) ||
353-
(Array.isArray(arg.defaultValue) &&
354-
!arg.defaultValue.every((v) => typeof v === "string"))
406+
typeof arg.defaultValue !== "string" &&
407+
(!Array.isArray(arg.defaultValue) ||
408+
arg.defaultValue.some((v) => typeof v !== "string"))
355409
) {
356410
validationErrors.push({
357411
path: [...path, "positionalArguments", index, "defaultValue"],
@@ -364,10 +418,9 @@ export function validatePositionalArguments(
364418
}
365419
case ArgumentType.BOOLEAN: {
366420
if (
367-
(typeof arg.defaultValue !== "boolean" &&
368-
!Array.isArray(arg.defaultValue)) ||
369-
(Array.isArray(arg.defaultValue) &&
370-
!arg.defaultValue.every((v) => typeof v === "boolean"))
421+
typeof arg.defaultValue !== "boolean" &&
422+
(!Array.isArray(arg.defaultValue) ||
423+
arg.defaultValue.some((v) => typeof v !== "boolean"))
371424
) {
372425
validationErrors.push({
373426
path: [...path, "positionalArguments", index, "defaultValue"],
@@ -381,10 +434,9 @@ export function validatePositionalArguments(
381434
case ArgumentType.INT:
382435
case ArgumentType.FLOAT: {
383436
if (
384-
(typeof arg.defaultValue !== "number" &&
385-
!Array.isArray(arg.defaultValue)) ||
386-
(Array.isArray(arg.defaultValue) &&
387-
!arg.defaultValue.every((v) => typeof v === "number"))
437+
typeof arg.defaultValue !== "number" &&
438+
(!Array.isArray(arg.defaultValue) ||
439+
arg.defaultValue.some((v) => typeof v !== "number"))
388440
) {
389441
validationErrors.push({
390442
path: [...path, "positionalArguments", index, "defaultValue"],
@@ -397,10 +449,9 @@ export function validatePositionalArguments(
397449
}
398450
case ArgumentType.BIGINT: {
399451
if (
400-
(typeof arg.defaultValue !== "bigint" &&
401-
!Array.isArray(arg.defaultValue)) ||
402-
(Array.isArray(arg.defaultValue) &&
403-
!arg.defaultValue.every((v) => typeof v === "bigint"))
452+
typeof arg.defaultValue !== "bigint" &&
453+
(!Array.isArray(arg.defaultValue) ||
454+
arg.defaultValue.some((v) => typeof v !== "bigint"))
404455
) {
405456
validationErrors.push({
406457
path: [...path, "positionalArguments", index, "defaultValue"],

v-next/core/src/type-guards.ts

-70
This file was deleted.

0 commit comments

Comments
 (0)