UNPKG

@syngrisi/syngrisi

Version:
178 lines (174 loc) 5.3 kB
// src/server/schemas/Test.schema.ts import { z as z3 } from "zod"; // src/server/schemas/utils/commonValidations.ts import { z as z2 } from "zod"; import { extendZodWithOpenApi as extendZodWithOpenApi2 } from "@asteasolutions/zod-to-openapi"; // src/server/schemas/common/Version.schema.ts import { z } from "zod"; import { extendZodWithOpenApi } from "@asteasolutions/zod-to-openapi"; extendZodWithOpenApi(z); var VersionBaseSchema = z.string().regex(/^\d+\.\d+\.\d+$/, 'Version must be in the format "x.y.z"'); var VersionSchema = VersionBaseSchema.transform((value) => { const parts = value.split("."); return { major: parseInt(parts[0]), minor: parseInt(parts[1]), patch: parseInt(parts[2]) }; }); // src/server/schemas/utils/commonValidations.ts extendZodWithOpenApi2(z2); var mongooseIdRegex = /^[0-9a-fA-F]{24}$/; var id = z2.string().regex(mongooseIdRegex, { message: "Invalid Mongoose ObjectId format: /^[0-9a-fA-F]{24}$/" }).openapi({ description: "baseline ID", example: "6bbF35cAB3C59dA969edAe79" }); var commonValidations = { id, version: VersionBaseSchema.openapi({ example: "1.1.2" }), positiveNumberString: z2.string().refine((value) => { const num = Number(value); return Number.isInteger(num) && num >= 0; }, { message: "String must be a positive number or 0" }), password: z2.string().min(6).regex(/(?=.*[0-9])/, "Password must include a number").regex(/(?=.*[a-z])/, "Password must include a lowercase letter").regex(/(?=.*[A-Z])/, "Password must include an uppercase letter").refine((value) => { return /(?=.*[!@#$%^&*(),.?":{}|<>-])/.test(value); }, { message: "Password must include a special symbol" }).openapi({ example: "Aa1!IJASSNOJ" }), username: z2.string().min(1).openapi({ example: "john.doe@example.com" }), // TODO: workaround TBD date: z2.string().refine((val) => { const date = new Date(val); return !isNaN(date.getTime()); }, { message: "Invalid date format" }), paramsId: { params: z2.object({ id }) }, paramsTestId: { params: z2.object({ testid: id }) }, success: z2.object({ message: z2.literal("success") }) }; // src/server/schemas/Test.schema.ts var TestGetSchema = z3.object({ _id: commonValidations.id, name: z3.string().min(1).openapi({ description: "Name of the test", example: "Get IP" }), status: z3.string().openapi({ description: "Status of the test", example: "Failed" }), browserName: z3.string().openapi({ description: "Name of the browser", example: "chrome" }), browserVersion: z3.string().openapi({ description: "Version of the browser", example: "125" }), branch: z3.string().openapi({ description: "Branch name", example: "master" }), tags: z3.array(z3.string()).openapi({ description: "Tags associated with the test", example: ["@smoke", "@regression"] }), viewport: z3.string().openapi({ description: "Viewport size", example: "1366x768" }), os: z3.string().openapi({ description: "Operating system", example: "macOS" }), app: commonValidations.id.openapi({ description: "Application identifier", example: "6651dd45b9c3e1e0b8c1ce26" }), blinking: z3.number().openapi({ description: "Blinking count", example: 0 }), updatedDate: commonValidations.date.openapi({ description: "Last update date of the test", example: "2024-06-13T19:55:40.108Z" }), startDate: commonValidations.date.openapi({ description: "Start date of the test", example: "2024-06-13T19:54:28.409Z" }), checks: z3.array(commonValidations.id).openapi({ description: "List of checks associated with the test", example: ["666b4e7e421977cbf466b458", "666b4ebc421977cbf466b47c"] }), suite: commonValidations.id.openapi({ description: "Suite identifier", example: "666b3b828833d0cf24a670d7" }), run: commonValidations.id.openapi({ description: "Run identifier", example: "666b4e74421977cbf466b443" }), creatorId: commonValidations.id.openapi({ description: "Creator identifier", example: "66519e582c2c701cc438ce59" }), creatorUsername: z3.string().openapi({ description: "Username of the creator", example: "Guest" }), markedAs: z3.string().openapi({ description: "Marked as status", example: "Unaccepted" }), calculatedViewport: z3.string().openapi({ description: "Calculated viewport size", example: "1366x768" }), id: commonValidations.id.openapi({ description: "ID of the test", example: "666b4e74421977cbf466b446" }) }); var UpdateTestSchema = TestGetSchema.omit({ id: true, _id: true }).partial(); var TestAcceptSchema = z3.object({ id: commonValidations.id }); var validIds = [ "suite", "run", "markedAs", "creatorId", "creatorUsername", "name", "status", "browserName", "browserVersion", "branch", "tags", "viewport", "os", "app", "startDate" ]; var TestDistinctRequestFieldParamsSchema = z3.object({ field: z3.enum(validIds).openapi({ description: "Parameter identifier", example: "suite" }) }); var TestDistinctSchema = TestGetSchema; export { TestAcceptSchema, TestDistinctRequestFieldParamsSchema, TestDistinctSchema, TestGetSchema }; //# sourceMappingURL=Test.schema.js.map