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>
103 lines
3.1 KiB
Text
103 lines
3.1 KiB
Text
import { ajvResolver } from '..';
|
|
import {
|
|
fields,
|
|
invalidData,
|
|
invalidDataWithUndefined,
|
|
schema,
|
|
validData,
|
|
} from './__fixtures__/data';
|
|
|
|
const shouldUseNativeValidation = false;
|
|
|
|
describe('ajvResolver', () => {
|
|
it('should return values from ajvResolver when validation pass', async () => {
|
|
expect(
|
|
await ajvResolver(schema)(validData, undefined, {
|
|
fields,
|
|
shouldUseNativeValidation,
|
|
}),
|
|
).toEqual({
|
|
values: validData,
|
|
errors: {},
|
|
});
|
|
});
|
|
|
|
it('should return values from ajvResolver with `mode: sync` when validation pass', async () => {
|
|
expect(
|
|
await ajvResolver(schema, undefined, {
|
|
mode: 'sync',
|
|
})(validData, undefined, { fields, shouldUseNativeValidation }),
|
|
).toEqual({
|
|
values: validData,
|
|
errors: {},
|
|
});
|
|
});
|
|
|
|
it('should return single error message from ajvResolver when validation fails and validateAllFieldCriteria set to false', async () => {
|
|
expect(
|
|
await ajvResolver(schema)(invalidData, undefined, {
|
|
fields,
|
|
shouldUseNativeValidation,
|
|
}),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should return single error message from ajvResolver when validation fails and validateAllFieldCriteria set to false and `mode: sync`', async () => {
|
|
expect(
|
|
await ajvResolver(schema, undefined, {
|
|
mode: 'sync',
|
|
})(invalidData, undefined, { fields, shouldUseNativeValidation }),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should return all the error messages from ajvResolver when validation fails and validateAllFieldCriteria set to true', async () => {
|
|
expect(
|
|
await ajvResolver(schema)(
|
|
invalidData,
|
|
{},
|
|
{ fields, criteriaMode: 'all', shouldUseNativeValidation },
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should return all the error messages from ajvResolver when validation fails and validateAllFieldCriteria set to true and `mode: sync`', async () => {
|
|
expect(
|
|
await ajvResolver(schema, undefined, { mode: 'sync' })(
|
|
invalidData,
|
|
{},
|
|
{ fields, criteriaMode: 'all', shouldUseNativeValidation },
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should return all the error messages from ajvResolver when requirement fails and validateAllFieldCriteria set to true', async () => {
|
|
expect(
|
|
await ajvResolver(schema)({}, undefined, {
|
|
fields,
|
|
shouldUseNativeValidation,
|
|
}),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should return all the error messages from ajvResolver when requirement fails and validateAllFieldCriteria set to true and `mode: sync`', async () => {
|
|
expect(
|
|
await ajvResolver(schema, undefined, { mode: 'sync' })({}, undefined, {
|
|
fields,
|
|
shouldUseNativeValidation,
|
|
}),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should return all the error messages from ajvResolver when some property is undefined and result will keep the input data structure', async () => {
|
|
expect(
|
|
await ajvResolver(schema, undefined, { mode: 'sync' })(
|
|
invalidDataWithUndefined,
|
|
undefined,
|
|
{
|
|
fields,
|
|
shouldUseNativeValidation,
|
|
},
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
});
|