Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
86 lines
2.6 KiB
Text
86 lines
2.6 KiB
Text
import { render, screen } from '@testing-library/react';
|
|
import user from '@testing-library/user-event';
|
|
import React from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { typeboxResolver } from '..';
|
|
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
import { TypeCompiler } from '@sinclair/typebox/compiler';
|
|
|
|
const schema = Type.Object({
|
|
username: Type.String({ minLength: 1 }),
|
|
password: Type.String({ minLength: 1 }),
|
|
});
|
|
|
|
const typecheck = TypeCompiler.Compile(schema);
|
|
|
|
type FormData = Static<typeof schema>;
|
|
|
|
interface Props {
|
|
onSubmit: (data: FormData) => void;
|
|
}
|
|
|
|
function TestComponent({ onSubmit }: Props) {
|
|
const { register, handleSubmit } = useForm<FormData>({
|
|
resolver: typeboxResolver(typecheck),
|
|
shouldUseNativeValidation: true,
|
|
});
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<input {...register('username')} placeholder="username" />
|
|
|
|
<input {...register('password')} placeholder="password" />
|
|
|
|
<button type="submit">submit</button>
|
|
</form>
|
|
);
|
|
}
|
|
|
|
test("form's native validation with Typebox (with compiler)", async () => {
|
|
const handleSubmit = vi.fn();
|
|
render(<TestComponent onSubmit={handleSubmit} />);
|
|
|
|
// username
|
|
let usernameField = screen.getByPlaceholderText(
|
|
/username/i,
|
|
) as HTMLInputElement;
|
|
expect(usernameField.validity.valid).toBe(true);
|
|
expect(usernameField.validationMessage).toBe('');
|
|
|
|
// password
|
|
let passwordField = screen.getByPlaceholderText(
|
|
/password/i,
|
|
) as HTMLInputElement;
|
|
expect(passwordField.validity.valid).toBe(true);
|
|
expect(passwordField.validationMessage).toBe('');
|
|
|
|
await user.click(screen.getByText(/submit/i));
|
|
|
|
// username
|
|
usernameField = screen.getByPlaceholderText(/username/i) as HTMLInputElement;
|
|
expect(usernameField.validity.valid).toBe(false);
|
|
expect(usernameField.validationMessage).toBe(
|
|
'Expected string length greater or equal to 1',
|
|
);
|
|
|
|
// password
|
|
passwordField = screen.getByPlaceholderText(/password/i) as HTMLInputElement;
|
|
expect(passwordField.validity.valid).toBe(false);
|
|
expect(passwordField.validationMessage).toBe(
|
|
'Expected string length greater or equal to 1',
|
|
);
|
|
|
|
await user.type(screen.getByPlaceholderText(/username/i), 'joe');
|
|
await user.type(screen.getByPlaceholderText(/password/i), 'password');
|
|
|
|
// username
|
|
usernameField = screen.getByPlaceholderText(/username/i) as HTMLInputElement;
|
|
expect(usernameField.validity.valid).toBe(true);
|
|
expect(usernameField.validationMessage).toBe('');
|
|
|
|
// password
|
|
passwordField = screen.getByPlaceholderText(/password/i) as HTMLInputElement;
|
|
expect(passwordField.validity.valid).toBe(true);
|
|
expect(passwordField.validationMessage).toBe('');
|
|
});
|