Files
homarr/packages/validation/src/form/i18n.spec.ts
Meier Lukas 5c99622fa8 fix(deps): upgrade zod to v4 and fix breaking changes (#3461)
* fix(deps): update dependency drizzle-zod to ^0.8.2

* chore: update zod to v4 import

* fix: path is no longer available in transform context

* fix: AnyZodObject does no longer exist

* fix: auth env.ts using wrong createEnv and remove unused file env-validation.ts

* fix: required_error no longer exists on z.string

* fix: zod error map is deprecated and replaced with config

* fix: default requires callback now

* fix: migrate zod resolver for mantine

* fix: remove unused form translation file

* fix: wrong enum type

* fix: record now requires two arguments

* fix: add-confirm-password-refinement type issues

* fix: add missing first record argument for entityStateSchema

* fix: migrate superrefine to check

* fix(deps): upgrade zod-form-data to v3

* fix: migrate superRefine to check for mediaUploadSchema

* fix: authProvidersSchema default is array

* fix: use stringbool instead of custom implementation

* fix: record requires first argument

* fix: migrate superRefine to check for certificate router

* fix: confirm pasword refinement is overwriting types

* fix: email optional not working

* fix: migrate intersection to object converter

* fix: safe parse return value rename

* fix: easier access for min and max number value

* fix: migrate superRefine to check for oldmarr import file

* fix: inference of enum shape for old-import board-size wrong

* fix: errors renamed to issues

* chore: address pull request feedback

* fix: zod form requires object

* fix: inference for use-zod-form not working

* fix: remove unnecessary convertion

* fix(deps): upgrade trpc-to-openapi to v3

* fix: build error

* fix: migrate missing zod imports to v4

* fix: migrate zod records to v4

* fix: missing core package dependency in api module

* fix: unable to convert custom zod schema to openapi schema

* fix(deps): upgrade zod to v4

* chore(renovate): enable zod dependency updates

* test: add simple unit test for convertIntersectionToZodObject

---------

Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
2025-08-15 18:15:58 +00:00

115 lines
4.4 KiB
TypeScript

import { describe, expect, test } from "vitest";
import { z } from "zod/v4";
import type { TranslationFunction } from "@homarr/translation";
import { createCustomErrorParams, zodErrorMap } from "./i18n";
const expectError = (error: z.core.$ZodIssue, key: string) => {
expect(error.message).toContain(key);
};
describe("i18n", () => {
const t = ((key: string) => {
return `${key}`;
}) as TranslationFunction;
z.config({
customError: zodErrorMap(t),
});
test("should return required error for string when passing null", () => {
const schema = z.string();
const result = schema.safeParse(null);
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "required");
});
test("should return required error for empty string", () => {
const schema = z.string().nonempty();
const result = schema.safeParse("");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "required");
});
test("should return invalid email error", () => {
const schema = z.string().email();
const result = schema.safeParse("invalid-email");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "invalidEmail");
});
test("should return startsWith error", () => {
const schema = z.string().startsWith("test");
const result = schema.safeParse("invalid");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "startsWith");
});
test("should return endsWith error", () => {
const schema = z.string().endsWith("test");
const result = schema.safeParse("invalid");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "endsWith");
});
test("should return includes error", () => {
const schema = z.string().includes("test");
const result = schema.safeParse("invalid");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "includes");
});
test("should return tooSmall error for string", () => {
const schema = z.string().min(5);
const result = schema.safeParse("test");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "tooSmall.string");
});
test("should return tooSmall error for number", () => {
const schema = z.number().min(5);
const result = schema.safeParse(3);
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "tooSmall.number");
});
test("should return tooBig error for string", () => {
const schema = z.string().max(5);
const result = schema.safeParse("too long");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "tooBig.string");
});
test("should return tooBig error for number", () => {
const schema = z.number().max(5);
const result = schema.safeParse(10);
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "tooBig.number");
});
test("should return custom error", () => {
const schema = z.string().refine((val) => val === "valid", {
params: createCustomErrorParams({
key: "boardAlreadyExists",
params: {},
}),
});
const result = schema.safeParse("invalid");
expect(result.success).toBe(false);
if (result.success) return;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
expectError(result.error.issues[0]!, "boardAlreadyExists");
});
});