Update code
This commit is contained in:
106
mcp-server-ssh/node_modules/zod/src/v4/classic/tests/stringbool.test.ts
generated
vendored
Normal file
106
mcp-server-ssh/node_modules/zod/src/v4/classic/tests/stringbool.test.ts
generated
vendored
Normal file
@@ -0,0 +1,106 @@
|
||||
import { expect, expectTypeOf, test } from "vitest";
|
||||
import * as z from "zod/v4";
|
||||
|
||||
test("z.stringbool", () => {
|
||||
const a = z.stringbool();
|
||||
type a = z.infer<typeof a>;
|
||||
expectTypeOf<a>().toEqualTypeOf<boolean>();
|
||||
type a_in = z.input<typeof a>;
|
||||
expectTypeOf<a_in>().toEqualTypeOf<string>();
|
||||
|
||||
expect(z.parse(a, "true")).toEqual(true);
|
||||
expect(z.parse(a, "yes")).toEqual(true);
|
||||
expect(z.parse(a, "1")).toEqual(true);
|
||||
expect(z.parse(a, "on")).toEqual(true);
|
||||
expect(z.parse(a, "y")).toEqual(true);
|
||||
expect(z.parse(a, "enabled")).toEqual(true);
|
||||
expect(z.parse(a, "TRUE")).toEqual(true);
|
||||
|
||||
expect(z.parse(a, "false")).toEqual(false);
|
||||
expect(z.parse(a, "no")).toEqual(false);
|
||||
expect(z.parse(a, "0")).toEqual(false);
|
||||
expect(z.parse(a, "off")).toEqual(false);
|
||||
expect(z.parse(a, "n")).toEqual(false);
|
||||
expect(z.parse(a, "disabled")).toEqual(false);
|
||||
expect(z.parse(a, "FALSE")).toEqual(false);
|
||||
|
||||
expect(z.safeParse(a, "other")).toMatchObject({ success: false });
|
||||
expect(z.safeParse(a, "")).toMatchObject({ success: false });
|
||||
expect(z.safeParse(a, undefined)).toMatchObject({ success: false });
|
||||
expect(z.safeParse(a, {})).toMatchObject({ success: false });
|
||||
expect(z.safeParse(a, true)).toMatchObject({ success: false });
|
||||
expect(z.safeParse(a, false)).toMatchObject({ success: false });
|
||||
});
|
||||
|
||||
test("custom values", () => {
|
||||
const b = z.stringbool({
|
||||
truthy: ["y"],
|
||||
falsy: ["N"],
|
||||
});
|
||||
expect(z.parse(b, "y")).toEqual(true);
|
||||
expect(z.parse(b, "Y")).toEqual(true);
|
||||
expect(z.parse(b, "n")).toEqual(false);
|
||||
expect(z.parse(b, "N")).toEqual(false);
|
||||
expect(z.safeParse(b, "true")).toMatchObject({ success: false });
|
||||
expect(z.safeParse(b, "false")).toMatchObject({ success: false });
|
||||
});
|
||||
|
||||
test("custom values - case sensitive", () => {
|
||||
const c = z.stringbool({
|
||||
truthy: ["y"],
|
||||
falsy: ["N"],
|
||||
case: "sensitive",
|
||||
});
|
||||
expect(z.parse(c, "y")).toEqual(true);
|
||||
expect(z.safeParse(c, "Y")).toMatchObject({ success: false });
|
||||
expect(z.parse(c, "N")).toEqual(false);
|
||||
expect(z.safeParse(c, "n")).toMatchObject({ success: false });
|
||||
expect(z.safeParse(c, "TRUE")).toMatchObject({ success: false });
|
||||
});
|
||||
|
||||
// test custom error messages
|
||||
test("z.stringbool with custom error messages", () => {
|
||||
const a = z.stringbool("wrong!");
|
||||
|
||||
expect(() => a.parse("")).toThrowError("wrong!");
|
||||
});
|
||||
|
||||
test("z.stringbool codec encoding", () => {
|
||||
const schema = z.stringbool();
|
||||
|
||||
// Test encoding with default values
|
||||
expect(z.encode(schema, true)).toEqual("true");
|
||||
expect(z.encode(schema, false)).toEqual("false");
|
||||
});
|
||||
|
||||
test("z.stringbool codec encoding with custom values", () => {
|
||||
const schema = z.stringbool({
|
||||
truthy: ["yes", "on", "1"],
|
||||
falsy: ["no", "off", "0"],
|
||||
});
|
||||
|
||||
// Should return first element of custom arrays
|
||||
expect(z.encode(schema, true)).toEqual("yes");
|
||||
expect(z.encode(schema, false)).toEqual("no");
|
||||
});
|
||||
|
||||
test("z.stringbool codec round trip", () => {
|
||||
const schema = z.stringbool({
|
||||
truthy: ["enabled", "active"],
|
||||
falsy: ["disabled", "inactive"],
|
||||
});
|
||||
|
||||
// Test round trip: string -> boolean -> string
|
||||
const decoded = z.decode(schema, "enabled");
|
||||
expect(decoded).toEqual(true);
|
||||
|
||||
const encoded = z.encode(schema, decoded);
|
||||
expect(encoded).toEqual("enabled"); // First element of truthy array
|
||||
|
||||
// Test with falsy value
|
||||
const decodedFalse = z.decode(schema, "inactive");
|
||||
expect(decodedFalse).toEqual(false);
|
||||
|
||||
const encodedFalse = z.encode(schema, decodedFalse);
|
||||
expect(encodedFalse).toEqual("disabled"); // First element of falsy array
|
||||
});
|
||||
Reference in New Issue
Block a user