json-schema-library
Version:
Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation
59 lines (44 loc) • 2.44 kB
text/typescript
import { strict as assert } from "assert";
import { compileSchema } from "../compileSchema";
describe("keyword : if-then-else : get", () => {
describe("object", () => {
it("should step into if-then-property", () => {
const node = compileSchema({
type: "object",
if: { required: ["withHeader"], properties: { withHeader: { const: true } } },
then: { required: ["header"], properties: { header: { type: "string", minLength: 1 } } }
});
const schema = node.getNodeChild("header", { withHeader: true, header: "huhu" })?.node?.schema;
assert.deepEqual(schema, { type: "string", minLength: 1 });
});
it("should NOT step into if-then-property", () => {
const node = compileSchema({
type: "object",
if: { required: ["withHeader"], properties: { withHeader: { const: true } } },
then: { required: ["header"], properties: { header: { type: "string", minLength: 1 } } },
additionalProperties: false
});
const schema = node.getNodeChild("header", { withHeader: false, header: "huhu" })?.node?.schema;
assert.deepEqual(schema, undefined);
});
it("should step into if-else-property", () => {
const node = compileSchema({
type: "object",
if: { required: ["withHeader"], properties: { withHeader: { const: true } } },
else: { required: ["header"], properties: { header: { type: "string", minLength: 1 } } }
});
const schema = node.getNodeChild("header", { withHeader: false, header: "huhu" })?.node?.schema;
assert.deepEqual(schema, { type: "string", minLength: 1 });
});
it("should recursively resolve if-then-else schema", () => {
const node = compileSchema({
type: "object",
if: { required: ["withHeader"], properties: { withHeader: { const: true } } },
then: { allOf: [{ required: ["header"], properties: { header: { type: "string", minLength: 1 } } }] }
});
const schema = node.getNodeChild("header", { withHeader: true, header: "huhu" })?.node?.schema;
assert.deepEqual(schema, { type: "string", minLength: 1 });
});
});
// describe("array", () => {});
});