debian-mirror-gitlab/spec/frontend/gl_field_errors_spec.js

123 lines
4 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
import GlFieldErrors from '~/gl_field_errors';
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
describe('GL Style Field Errors', () => {
let testContext;
beforeEach(() => {
testContext = {};
});
beforeEach(() => {
2019-07-07 11:18:12 +05:30
loadFixtures('static/gl_field_errors.html');
2018-11-08 19:23:39 +05:30
const $form = $('form.gl-show-field-errors');
2020-03-13 15:44:24 +05:30
testContext.$form = $form;
testContext.fieldErrors = new GlFieldErrors($form);
2018-03-17 18:26:18 +05:30
});
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
it('should select the correct input elements', () => {
expect(testContext.$form).toBeDefined();
expect(testContext.$form.length).toBe(1);
expect(testContext.fieldErrors).toBeDefined();
const { inputs } = testContext.fieldErrors.state;
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(inputs.length).toBe(4);
});
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
it('should ignore elements with custom error handling', () => {
2018-03-17 18:26:18 +05:30
const customErrorFlag = 'gl-field-error-ignore';
const customErrorElem = $(`.${customErrorFlag}`);
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
expect(customErrorElem.length).toBe(1);
2016-11-03 12:29:30 +05:30
2021-03-08 18:12:59 +05:30
const customErrors = testContext.fieldErrors.state.inputs.filter((input) => {
2018-03-17 18:26:18 +05:30
return input.inputElement.hasClass(customErrorFlag);
2016-11-03 12:29:30 +05:30
});
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(customErrors.length).toBe(0);
});
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
it('should not show any errors before submit attempt', () => {
2021-03-08 18:12:59 +05:30
testContext.$form.find('.email').val('not-a-valid-email').keyup();
testContext.$form.find('.text-required').val('').keyup();
testContext.$form.find('.alphanumberic').val('?---*').keyup();
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
const errorsShown = testContext.$form.find('.gl-field-error-outline');
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(errorsShown.length).toBe(0);
});
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
it('should show errors when input valid is submitted', () => {
2021-03-08 18:12:59 +05:30
testContext.$form.find('.email').val('not-a-valid-email').keyup();
testContext.$form.find('.text-required').val('').keyup();
testContext.$form.find('.alphanumberic').val('?---*').keyup();
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
testContext.$form.submit();
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
const errorsShown = testContext.$form.find('.gl-field-error-outline');
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(errorsShown.length).toBe(4);
});
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
it('should properly track validity state on input after invalid submission attempt', () => {
testContext.$form.submit();
2018-03-17 18:26:18 +05:30
2020-03-13 15:44:24 +05:30
const emailInputModel = testContext.fieldErrors.state.inputs[1];
2018-03-17 18:26:18 +05:30
const fieldState = emailInputModel.state;
const emailInputElement = emailInputModel.inputElement;
// No input
expect(emailInputElement).toHaveClass('gl-field-error-outline');
expect(fieldState.empty).toBe(true);
expect(fieldState.valid).toBe(false);
// Then invalid input
emailInputElement.val('not-a-valid-email').keyup();
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(emailInputElement).toHaveClass('gl-field-error-outline');
expect(fieldState.empty).toBe(false);
expect(fieldState.valid).toBe(false);
// Then valid input
emailInputElement.val('email@gitlab.com').keyup();
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(emailInputElement).not.toHaveClass('gl-field-error-outline');
expect(fieldState.empty).toBe(false);
expect(fieldState.valid).toBe(true);
// Then invalid input
emailInputElement.val('not-a-valid-email').keyup();
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(emailInputElement).toHaveClass('gl-field-error-outline');
expect(fieldState.empty).toBe(false);
expect(fieldState.valid).toBe(false);
// Then empty input
emailInputElement.val('').keyup();
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(emailInputElement).toHaveClass('gl-field-error-outline');
expect(fieldState.empty).toBe(true);
expect(fieldState.valid).toBe(false);
// Then valid input
emailInputElement.val('email@gitlab.com').keyup();
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(emailInputElement).not.toHaveClass('gl-field-error-outline');
expect(fieldState.empty).toBe(false);
expect(fieldState.valid).toBe(true);
});
2016-11-03 12:29:30 +05:30
2020-03-13 15:44:24 +05:30
it('should properly infer error messages', () => {
testContext.$form.submit();
const trackedInputs = testContext.fieldErrors.state.inputs;
2018-03-17 18:26:18 +05:30
const inputHasTitle = trackedInputs[1];
const hasTitleErrorElem = inputHasTitle.inputElement.siblings('.gl-field-error');
const inputNoTitle = trackedInputs[2];
const noTitleErrorElem = inputNoTitle.inputElement.siblings('.gl-field-error');
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
expect(noTitleErrorElem.text()).toBe('This field is required.');
expect(hasTitleErrorElem.text()).toBe('Please provide a valid email address.');
2016-11-03 12:29:30 +05:30
});
2018-03-17 18:26:18 +05:30
});