2019-09-03 17:32:31 -04:00
|
|
|
const React = require('react');
|
|
|
|
const {shallowWithIntl} = require('../../helpers/intl-helpers.jsx');
|
|
|
|
const EmailStep = require('../../../src/components/join-flow/email-step.jsx');
|
|
|
|
const JoinFlowStep = require('../../../src/components/join-flow/join-flow-step.jsx');
|
2019-08-29 18:34:07 -04:00
|
|
|
const FormikInput = require('../../../src/components/formik-forms/formik-input.jsx');
|
|
|
|
const FormikCheckbox = require('../../../src/components/formik-forms/formik-checkbox.jsx');
|
|
|
|
|
|
|
|
describe('EmailStep test', () => {
|
|
|
|
test('send correct props to formik', () => {
|
|
|
|
const wrapper = shallowWithIntl(<EmailStep />);
|
|
|
|
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
expect(formikWrapper.props().initialValues.subscribe).toBe(false);
|
|
|
|
expect(formikWrapper.props().initialValues.email).toBe('');
|
|
|
|
expect(formikWrapper.props().validateOnBlur).toBe(false);
|
|
|
|
expect(formikWrapper.props().validateOnChange).toBe(false);
|
|
|
|
expect(formikWrapper.props().validate).toBe(formikWrapper.instance().validateForm);
|
|
|
|
expect(formikWrapper.props().onSubmit).toBe(formikWrapper.instance().handleValidSubmit);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('props sent to JoinFlowStep', () => {
|
|
|
|
const wrapper = shallowWithIntl(<EmailStep />);
|
|
|
|
// Dive to get past the intl wrapper
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
// Dive to get past the anonymous component.
|
|
|
|
const joinFlowWrapper = formikWrapper.dive().find(JoinFlowStep);
|
|
|
|
expect(joinFlowWrapper).toHaveLength(1);
|
|
|
|
expect(joinFlowWrapper.props().footerContent.props.id).toBe('registration.acceptTermsOfUse');
|
|
|
|
expect(joinFlowWrapper.props().headerImgSrc).toBe('/images/join-flow/email-header.png');
|
|
|
|
expect(joinFlowWrapper.props().innerClassName).toBe('join-flow-inner-email-step');
|
|
|
|
expect(joinFlowWrapper.props().nextButton).toBe('registration.createAccount');
|
|
|
|
expect(joinFlowWrapper.props().title).toBe('registration.emailStepTitle');
|
2019-09-16 20:12:42 -04:00
|
|
|
expect(joinFlowWrapper.props().titleClassName).toBe('join-flow-email-title');
|
2019-08-29 18:34:07 -04:00
|
|
|
expect(joinFlowWrapper.props().waiting).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('props sent to FormikInput for email', () => {
|
|
|
|
const wrapper = shallowWithIntl(<EmailStep />);
|
|
|
|
// Dive to get past the intl wrapper
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
// Dive to get past the anonymous component.
|
|
|
|
const joinFlowWrapper = formikWrapper.dive().find(JoinFlowStep);
|
|
|
|
expect(joinFlowWrapper).toHaveLength(1);
|
|
|
|
const emailInputWrapper = joinFlowWrapper.find(FormikInput).first();
|
|
|
|
expect(emailInputWrapper.props().id).toEqual('email');
|
|
|
|
expect(emailInputWrapper.props().error).toBeUndefined();
|
|
|
|
expect(emailInputWrapper.props().name).toEqual('email');
|
|
|
|
expect(emailInputWrapper.props().placeholder).toEqual('general.emailAddress');
|
|
|
|
expect(emailInputWrapper.props().validationClassName).toEqual('validation-full-width-input');
|
|
|
|
expect(emailInputWrapper.props().onSetRef).toEqual(formikWrapper.instance().handleSetEmailRef);
|
|
|
|
expect(emailInputWrapper.props().validate).toEqual(formikWrapper.instance().validateEmail);
|
|
|
|
});
|
2019-09-18 10:26:37 -04:00
|
|
|
|
2019-08-29 18:34:07 -04:00
|
|
|
test('props sent to FormikCheckbox for subscribe', () => {
|
|
|
|
const wrapper = shallowWithIntl(<EmailStep />);
|
|
|
|
// Dive to get past the intl wrapper
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
// Dive to get past the anonymous component.
|
|
|
|
const joinFlowWrapper = formikWrapper.dive().find(JoinFlowStep);
|
|
|
|
expect(joinFlowWrapper).toHaveLength(1);
|
|
|
|
const checkboxWrapper = joinFlowWrapper.find(FormikCheckbox).first();
|
|
|
|
expect(checkboxWrapper).toHaveLength(1);
|
|
|
|
expect(checkboxWrapper.first().props().id).toEqual('subscribeCheckbox');
|
|
|
|
expect(checkboxWrapper.first().props().label).toEqual('registration.receiveEmails');
|
|
|
|
expect(checkboxWrapper.first().props().name).toEqual('subscribe');
|
|
|
|
});
|
2019-09-18 10:26:37 -04:00
|
|
|
|
2019-08-29 18:34:07 -04:00
|
|
|
test('handleValidSubmit passes formData to next step', () => {
|
|
|
|
const formikBag = {
|
|
|
|
setSubmitting: jest.fn()
|
|
|
|
};
|
2019-08-30 13:42:49 -04:00
|
|
|
global.grecaptcha = {
|
2019-08-29 18:34:07 -04:00
|
|
|
execute: jest.fn(),
|
|
|
|
render: jest.fn()
|
|
|
|
};
|
2019-09-03 17:32:31 -04:00
|
|
|
const formData = {item1: 'thing', item2: 'otherthing'};
|
2019-08-29 18:34:07 -04:00
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep />);
|
|
|
|
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
formikWrapper.instance().onCaptchaLoad(); // to setup catpcha state
|
|
|
|
formikWrapper.instance().handleValidSubmit(formData, formikBag);
|
|
|
|
|
|
|
|
expect(formikBag.setSubmitting).toHaveBeenCalledWith(false);
|
2019-08-30 13:42:49 -04:00
|
|
|
expect(global.grecaptcha.execute).toHaveBeenCalled();
|
2019-08-29 18:34:07 -04:00
|
|
|
});
|
2019-09-18 10:26:37 -04:00
|
|
|
|
2019-08-29 18:34:07 -04:00
|
|
|
test('captchaSolved sets token and goes to next step', () => {
|
|
|
|
const props = {
|
|
|
|
onNextStep: jest.fn()
|
|
|
|
};
|
|
|
|
const formikBag = {
|
|
|
|
setSubmitting: jest.fn()
|
|
|
|
};
|
2019-08-30 13:42:49 -04:00
|
|
|
global.grecaptcha = {
|
2019-08-29 18:34:07 -04:00
|
|
|
execute: jest.fn(),
|
|
|
|
render: jest.fn()
|
|
|
|
};
|
2019-09-03 17:32:31 -04:00
|
|
|
const formData = {item1: 'thing', item2: 'otherthing'};
|
2019-08-29 18:34:07 -04:00
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep
|
|
|
|
{...props}
|
|
|
|
/>);
|
|
|
|
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
// Call these to setup captcha.
|
|
|
|
formikWrapper.instance().onCaptchaLoad(); // to setup catpcha state
|
|
|
|
formikWrapper.instance().handleValidSubmit(formData, formikBag);
|
|
|
|
|
|
|
|
const captchaToken = 'abcd';
|
|
|
|
formikWrapper.instance().captchaSolved(captchaToken);
|
2019-09-03 17:32:31 -04:00
|
|
|
// Make sure captchaSolved calls onNextStep with formData that has
|
|
|
|
// a captcha token and left everything else in the object in place.
|
|
|
|
expect(props.onNextStep).toHaveBeenCalledWith(
|
|
|
|
expect.objectContaining({
|
|
|
|
'item1': formData.item1,
|
|
|
|
'item2': formData.item2,
|
|
|
|
'g-recaptcha-response': captchaToken
|
|
|
|
}));
|
2019-08-29 18:34:07 -04:00
|
|
|
expect(formikBag.setSubmitting).toHaveBeenCalledWith(true);
|
|
|
|
});
|
2019-09-18 10:26:37 -04:00
|
|
|
|
|
|
|
test('onCaptchaError calls error function with correct message', () => {
|
|
|
|
const props = {
|
2019-09-19 13:40:09 -04:00
|
|
|
onRegistrationError: jest.fn()
|
2019-09-18 10:26:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep
|
|
|
|
{...props}
|
|
|
|
/>);
|
|
|
|
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
formikWrapper.instance().onCaptchaError();
|
2019-09-19 13:40:09 -04:00
|
|
|
expect(props.onRegistrationError).toHaveBeenCalledWith('registation.troubleReload');
|
2019-09-18 10:26:37 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('Captcha load error calls error function', () => {
|
|
|
|
const props = {
|
2019-09-19 13:40:09 -04:00
|
|
|
onRegistrationError: jest.fn()
|
2019-09-18 10:26:37 -04:00
|
|
|
};
|
|
|
|
// Set this to null to force an error.
|
|
|
|
global.grecaptcha = null;
|
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep
|
|
|
|
{...props}
|
|
|
|
/>);
|
|
|
|
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
formikWrapper.instance().onCaptchaLoad();
|
2019-09-19 13:40:09 -04:00
|
|
|
expect(props.onRegistrationError).toHaveBeenCalledWith('registation.troubleReload');
|
2019-09-18 10:26:37 -04:00
|
|
|
});
|
|
|
|
|
2019-08-29 18:34:07 -04:00
|
|
|
test('validateEmail test email empty', () => {
|
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep />);
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
const val = formikWrapper.instance().validateEmail('');
|
|
|
|
expect(val).toBe('general.required');
|
|
|
|
});
|
2019-09-18 10:26:37 -04:00
|
|
|
|
2019-08-29 18:34:07 -04:00
|
|
|
test('validateEmail test email null', () => {
|
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep />);
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
const val = formikWrapper.instance().validateEmail(null);
|
|
|
|
expect(val).toBe('general.required');
|
|
|
|
});
|
2019-09-18 10:26:37 -04:00
|
|
|
|
2019-08-29 18:34:07 -04:00
|
|
|
test('validateEmail test email undefined', () => {
|
|
|
|
const wrapper = shallowWithIntl(
|
|
|
|
<EmailStep />);
|
|
|
|
const formikWrapper = wrapper.dive();
|
|
|
|
const val = formikWrapper.instance().validateEmail();
|
|
|
|
expect(val).toBe('general.required');
|
|
|
|
});
|
|
|
|
});
|