1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/pages/unlock-page/unlock-page.container.test.js
2021-04-15 11:01:46 -07:00

63 lines
1.6 KiB
JavaScript

import React from 'react';
import sinon from 'sinon';
import { mount } from 'enzyme';
import UnlockPage from './unlock-page.container';
describe('Unlock Page', () => {
let wrapper;
const props = {
history: {
push: sinon.spy(),
},
isUnlocked: false,
onImport: sinon.spy(),
onRestore: sinon.spy(),
onSubmit: sinon.spy(),
forceUpdateMetamaskState: sinon.spy(),
showOptInModal: sinon.spy(),
};
beforeEach(() => {
wrapper = mount(<UnlockPage.WrappedComponent {...props} />, {
context: {
t: (str) => str,
},
});
});
afterAll(() => {
sinon.restore();
});
it('renders', () => {
expect(wrapper).toHaveLength(1);
});
it('changes password and submits', () => {
const passwordField = wrapper.find({ type: 'password', id: 'password' });
const loginButton = wrapper.find({ type: 'submit' }).last();
const event = { target: { value: 'password' } };
expect(wrapper.instance().state.password).toStrictEqual('');
passwordField.last().simulate('change', event);
expect(wrapper.instance().state.password).toStrictEqual('password');
loginButton.simulate('click');
expect(props.onSubmit.calledOnce).toStrictEqual(true);
});
it('clicks imports seed button', () => {
const importSeedButton = wrapper.find('.unlock-page__link--import');
importSeedButton.simulate('click');
expect(props.onImport.calledOnce).toStrictEqual(true);
});
it('clicks restore', () => {
const restoreFromSeedButton = wrapper.find('.unlock-page__link').at(0);
restoreFromSeedButton.simulate('click');
expect(props.onRestore.calledOnce).toStrictEqual(true);
});
});