summaryrefslogtreecommitdiff
path: root/web-ui/src/account_recovery/forms/new_password_form.spec.js
blob: 5ac96b4028c85bc9e9de099eaa5798c23a183e06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { shallow } from 'enzyme';
import expect from 'expect';
import React from 'react';
import { NewPasswordForm } from 'src/account_recovery/forms/new_password_form';

describe('NewPasswordForm', () => {
  let newPasswordForm;
  let mockPrevious;

  beforeEach(() => {
    const mockTranslations = key => key;
    mockPrevious = expect.createSpy();
    newPasswordForm = shallow(
      <NewPasswordForm t={mockTranslations} previous={mockPrevious} />
    );
  });

  it('renders title for new password form', () => {
    expect(newPasswordForm.find('h1').text()).toEqual('account-recovery.new-password-form.title');
  });

  it('renders input for new password', () => {
    expect(newPasswordForm.find('InputField').at(0).props().type).toEqual('password');
    expect(newPasswordForm.find('InputField').at(0).props().label).toEqual('account-recovery.new-password-form.input-label1');
  });

  it('renders input to confirm new password', () => {
    expect(newPasswordForm.find('InputField').at(1).props().type).toEqual('password');
    expect(newPasswordForm.find('InputField').at(1).props().label).toEqual('account-recovery.new-password-form.input-label2');
  });

  it('renders submit button', () => {
    expect(newPasswordForm.find('SubmitButton').props().buttonText).toEqual('account-recovery.new-password-form.button');
  });

  it('returns to previous step on link click', () => {
    newPasswordForm.find('BackLink').simulate('click');
    expect(mockPrevious).toHaveBeenCalled();
  });

  it('returns to previous step on key down', () => {
    newPasswordForm.find('BackLink').simulate('keyDown');
    expect(mockPrevious).toHaveBeenCalled();
  });
});