/opt/canhelp/node_modules/better-auth/node_modules/zod/src/v4/classic/tests
NameSizeModeActions
anyunknown.test.ts6390644editdlrm
apply.test.ts15090644editdlrm
array.test.ts72480644editdlrm
assignability.test.ts67900644editdlrm
async-parsing.test.ts123110644editdlrm
async-refinements.test.ts18670644editdlrm
base.test.ts1790644editdlrm
bigint.test.ts19560644editdlrm
brand.test.ts35740644editdlrm
catch.test.ts78310644editdlrm
coalesce.test.ts7430644editdlrm
codec-examples.test.ts190300644editdlrm
codec.test.ts188530644editdlrm
coerce.test.ts77360644editdlrm
continuability.test.ts80200644editdlrm
custom.test.ts12150644editdlrm
date.test.ts16710644editdlrm
datetime.test.ts119320644editdlrm
default.test.ts92260644editdlrm
describe-meta-checks.test.ts9650644editdlrm
description.test.ts12940644editdlrm
discriminated-unions.test.ts176650644editdlrm
enum.test.ts84880644editdlrm
error-utils.test.ts137440644editdlrm
error.test.ts195020644editdlrm
file.test.ts26410644editdlrm
firstparty.test.ts30450644editdlrm
fix-json-issue.test.ts7710644editdlrm
from-json-schema.test.ts214980644editdlrm
function.test.ts83440644editdlrm
generics.test.ts21620644editdlrm
hash.test.ts32040644editdlrm
index.test.ts311910644editdlrm
instanceof.test.ts16580644editdlrm
intersection.test.ts55550644editdlrm
json.test.ts33270644editdlrm
lazy.test.ts47560644editdlrm
literal.test.ts30950644editdlrm
map.test.ts76220644editdlrm
nan.test.ts6450644editdlrm
nested-refine.test.ts36230644editdlrm
nonoptional.test.ts28410644editdlrm
nullable.test.ts5910644editdlrm
number.test.ts86440644editdlrm
object.test.ts184810644editdlrm
optional.test.ts73320644editdlrm
partial.test.ts129730644editdlrm
pickomit.test.ts68850644editdlrm
pipe.test.ts23380644editdlrm
prefault.test.ts20630644editdlrm
preprocess.test.ts65220644editdlrm
primitive.test.ts76490644editdlrm
promise.test.ts23240644editdlrm
prototypes.test.ts4980644editdlrm
readonly.test.ts117860644editdlrm
record.test.ts172260644editdlrm
recursive-types.test.ts126930644editdlrm
refine.test.ts156490644editdlrm
registries.test.ts73910644editdlrm
set.test.ts56220644editdlrm
standard-schema.test.ts37700644editdlrm
string-formats.test.ts37000644editdlrm
string.test.ts780690644editdlrm
stringbool.test.ts35360644editdlrm
template-literal.test.ts358940644editdlrm
to-json-schema-methods.test.ts101000644editdlrm
to-json-schema.test.ts786390644editdlrm
transform.test.ts82980644editdlrm
tuple.test.ts55320644editdlrm
union.test.ts59360644editdlrm
url.test.ts4020644editdlrm
validations.test.ts67360644editdlrm
void.test.ts3060644editdlrm
Edit: /opt/canhelp/node_modules/better-auth/node_modules/zod/src/v4/classic/tests/transform.test.ts (8298B)
import { expect, expectTypeOf, test } from "vitest"; import * as z from "zod/v4"; test("transform ctx.addIssue with parse", () => { const strs = ["foo", "bar"]; const schema = z.string().transform((data, ctx) => { const i = strs.indexOf(data); if (i === -1) { ctx.addIssue({ input: data, code: "custom", message: `${data} is not one of our allowed strings`, }); } return data.length; }); const result = schema.safeParse("asdf"); expect(result.success).toEqual(false); expect(result.error!).toMatchInlineSnapshot(` [ZodError: [ { "code": "custom", "message": "asdf is not one of our allowed strings", "path": [] } ]] `); }); test("transform ctx.addIssue with parseAsync", async () => { const strs = ["foo", "bar"]; const result = await z .string() .transform(async (data, ctx) => { const i = strs.indexOf(data); if (i === -1) { ctx.addIssue({ input: data, code: "custom", message: `${data} is not one of our allowed strings`, }); } return data.length; }) .safeParseAsync("asdf"); expect(result).toMatchInlineSnapshot(` { "error": [ZodError: [ { "code": "custom", "message": "asdf is not one of our allowed strings", "path": [] } ]], "success": false, } `); }); test("z.NEVER in transform", () => { const foo = z .number() .optional() .transform((val, ctx) => { if (!val) { ctx.addIssue({ input: val, code: z.ZodIssueCode.custom, message: "bad", }); return z.NEVER; } return val; }); type foo = z.infer; expectTypeOf().toEqualTypeOf(); const arg = foo.safeParse(undefined); if (!arg.success) { expect(arg.error.issues[0].message).toEqual("bad"); } }); test("basic transformations", () => { const r1 = z .string() .transform((data) => data.length) .parse("asdf"); expect(r1).toEqual(4); }); test("coercion", () => { const numToString = z.number().transform((n) => String(n)); const data = z .object({ id: numToString, }) .parse({ id: 5 }); expect(data).toEqual({ id: "5" }); }); test("async coercion", async () => { const numToString = z.number().transform(async (n) => String(n)); const data = await z .object({ id: numToString, }) .parseAsync({ id: 5 }); expect(data).toEqual({ id: "5" }); }); test("sync coercion async error", async () => { const asyncNumberToString = z.number().transform(async (n) => String(n)); expect(() => z .object({ id: asyncNumberToString, }) .parse({ id: 5 }) ).toThrow(); // expect(data).toEqual({ id: '5' }); }); test("default", () => { const data = z.string().default("asdf").parse(undefined); // => "asdf" expect(data).toEqual("asdf"); }); test("dynamic default", () => { const data = z .string() .default(() => "string") .parse(undefined); // => "asdf" expect(data).toEqual("string"); }); test("default when property is null or undefined", () => { const data = z .object({ foo: z.boolean().nullable().default(true), bar: z.boolean().default(true), }) .parse({ foo: null }); expect(data).toEqual({ foo: null, bar: true }); }); test("default with falsy values", () => { const schema = z.object({ emptyStr: z.string().default("def"), zero: z.number().default(5), falseBoolean: z.boolean().default(true), }); const input = { emptyStr: "", zero: 0, falseBoolean: true }; const output = schema.parse(input); // defaults are not supposed to be used expect(output).toEqual(input); }); test("object typing", () => { const stringToNumber = z.string().transform((arg) => Number.parseFloat(arg)); const t1 = z.object({ stringToNumber, }); type t1 = z.input; type t2 = z.output; expectTypeOf().toEqualTypeOf<{ stringToNumber: string }>(); expectTypeOf().toEqualTypeOf<{ stringToNumber: number }>(); }); test("transform method overloads", () => { const t1 = z.string().transform((val) => val.toUpperCase()); expect(t1.parse("asdf")).toEqual("ASDF"); const t2 = z.string().transform((val) => val.length); expect(t2.parse("asdf")).toEqual(4); }); test("multiple transformers", () => { const stringToNumber = z.string().transform((arg) => Number.parseFloat(arg)); const doubler = stringToNumber.transform((val) => { return val * 2; }); expect(doubler.parse("5")).toEqual(10); }); test("short circuit on dirty", () => { const schema = z .string() .refine(() => false) .transform((val) => val.toUpperCase()); const result = schema.safeParse("asdf"); expect(result.success).toEqual(false); expect(result.error).toMatchInlineSnapshot(` [ZodError: [ { "code": "custom", "path": [], "message": "Invalid input" } ]] `); const result2 = schema.safeParse(1234); expect(result2.success).toEqual(false); if (!result2.success) { expect(result2.error.issues[0].code).toEqual(z.ZodIssueCode.invalid_type); } }); test("async short circuit on dirty", async () => { const schema = z .string() .refine(() => false) .transform((val) => val.toUpperCase()); const result = await schema.spa("asdf"); expect(result.success).toEqual(false); expect(result.error).toMatchInlineSnapshot(` [ZodError: [ { "code": "custom", "path": [], "message": "Invalid input" } ]] `); const result2 = await schema.spa(1234); expect(result2.success).toEqual(false); expect(result2.error).toMatchInlineSnapshot(` [ZodError: [ { "expected": "string", "code": "invalid_type", "path": [], "message": "Invalid input: expected string, received number" } ]] `); }); test("do not continue by default", () => { const A = z .string() .transform((val, ctx) => { ctx.addIssue({ code: "custom", message: `custom error`, }); ctx.addIssue({ code: "custom", message: `custom error`, }); return val; }) .pipe(z.number() as any); expect(A.safeParse("asdf")).toMatchInlineSnapshot(` { "error": [ZodError: [ { "code": "custom", "message": "custom error", "path": [] }, { "code": "custom", "message": "custom error", "path": [] } ]], "success": false, } `); const B = z .string() .transform((val, ctx) => { ctx.issues.push({ code: "custom", message: `custom error`, input: val, }); ctx.issues.push({ code: "custom", message: `custom error`, input: val, }); return val; }) .pipe(z.number() as any); expect(B.safeParse("asdf")).toMatchInlineSnapshot(` { "error": [ZodError: [ { "code": "custom", "message": "custom error", "path": [] }, { "code": "custom", "message": "custom error", "path": [] } ]], "success": false, } `); const C = z .string() .transform((val, ctx) => { ctx.issues.push({ code: "custom", message: `custom error`, input: val, continue: true, }); ctx.issues.push({ code: "custom", message: `custom error`, input: val, continue: true, }); return val; }) .pipe(z.number() as any); expect(C.safeParse("asdf")).toMatchInlineSnapshot(` { "error": [ZodError: [ { "code": "custom", "message": "custom error", "path": [] }, { "code": "custom", "message": "custom error", "path": [] } ]], "success": false, } `); }); test("encode error", () => { const schema = z.string().transform((val) => val.length); expect(() => z.encode(schema, 1234)).toThrowErrorMatchingInlineSnapshot( `[ZodEncodeError: Encountered unidirectional transform during encode: ZodTransform]` ); });