
This loose pre-check checks the config schema by treating every object as partial. This means that if a property exists, it's guaranteed to be the correct type (e.g. object). However, there's no guarantee that all or any properties exist. This allows preprocessStaticConfig implementations to be much less defensive and thus reduce boilerplate.
41 lines
884 B
TypeScript
41 lines
884 B
TypeScript
import { tDeepPartial } from "./utils";
|
|
import * as t from "io-ts";
|
|
import * as validatorUtils from "./validatorUtils";
|
|
import test from "ava";
|
|
import util from "util";
|
|
|
|
test("tDeepPartial works", ava => {
|
|
const originalSchema = t.type({
|
|
listOfThings: t.record(
|
|
t.string,
|
|
t.type({
|
|
enabled: t.boolean,
|
|
someValue: t.number,
|
|
}),
|
|
),
|
|
});
|
|
|
|
const deepPartialSchema = tDeepPartial(originalSchema);
|
|
|
|
const partialValidValue = {
|
|
listOfThings: {
|
|
myThing: {
|
|
someValue: 5,
|
|
},
|
|
},
|
|
};
|
|
|
|
const partialErrorValue = {
|
|
listOfThings: {
|
|
myThing: {
|
|
someValue: "test",
|
|
},
|
|
},
|
|
};
|
|
|
|
const result1 = validatorUtils.validate(deepPartialSchema, partialValidValue);
|
|
ava.is(result1, null);
|
|
|
|
const result2 = validatorUtils.validate(deepPartialSchema, partialErrorValue);
|
|
ava.not(result2, null);
|
|
});
|