Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIO-8347: Added ability to skip mask validation #109

Merged
merged 6 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/process/validation/rules/__tests__/validateMask.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,17 @@ it('Validating a mutil-mask component should return null if the value matches th
result = await validateMask(context);
expect(result).to.equal(null);
});

it('Validating a mask component should return null if the instance contains a skipMaskValidation property', async () => {
const component = { ...simpleTextField, inputMask: '999-999-9999' };
const data = {
component: '1234',
};
const context = generateProcessorContext(component, data);
let result = await validateMask(context);
expect(result).to.be.instanceOf(FieldError);
expect(result?.errorKeyOrMessage).to.equal('mask');
(context as any).instance = { skipMaskValidation: true };
result = await validateMask(context);
expect(result).to.equal(null);
});
4 changes: 2 additions & 2 deletions src/process/validation/rules/validateMask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export function matchInputMask(value: any, inputMask: any) {
}

export const shouldValidate = (context: ValidationContext) => {
const { component, value } = context;
if (!isValidatableComponent(component) || !value) {
const { component, value, instance } = context;
if ((instance as any)?.skipMaskValidation || !isValidatableComponent(component) || !value) {
brendanbond marked this conversation as resolved.
Show resolved Hide resolved
return false;
}
if (value == null) {
Expand Down
Loading