1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 04:40:18 +02:00
metamask-extension/ui/app/pages/send/send-content/send-row-wrapper/send-row-wrapper.component.test.js

117 lines
3.5 KiB
JavaScript
Raw Normal View History

import assert from 'assert';
import React from 'react';
import { shallow } from 'enzyme';
import SendRowWrapper from './send-row-wrapper.component';
import SendRowErrorMessage from './send-row-error-message/send-row-error-message.container';
describe('SendContent Component', function () {
let wrapper;
describe('render', function () {
beforeEach(function () {
2020-11-03 00:41:28 +01:00
wrapper = shallow(
<SendRowWrapper
errorType="mockErrorType"
label="mockLabel"
showError={false}
>
<span>Mock Form Field</span>
2020-11-03 00:41:28 +01:00
</SendRowWrapper>,
);
});
it('should render a div with a send-v2__form-row class', function () {
assert.strictEqual(wrapper.find('div.send-v2__form-row').length, 1);
});
it('should render two children of the root div, with send-v2_form label and field classes', function () {
assert.strictEqual(
2020-11-03 00:41:28 +01:00
wrapper.find('.send-v2__form-row > .send-v2__form-label').length,
1,
);
assert.strictEqual(
2020-11-03 00:41:28 +01:00
wrapper.find('.send-v2__form-row > .send-v2__form-field').length,
1,
);
});
it('should render the label as a child of the send-v2__form-label', function () {
assert.strictEqual(
2020-11-03 00:41:28 +01:00
wrapper
.find('.send-v2__form-row > .send-v2__form-label')
.childAt(0)
.text(),
'mockLabel',
);
});
it('should render its first child as a child of the send-v2__form-field', function () {
assert.strictEqual(
2020-11-03 00:41:28 +01:00
wrapper
.find('.send-v2__form-row > .send-v2__form-field')
.childAt(0)
.text(),
'Mock Form Field',
);
});
it('should not render a SendRowErrorMessage if showError is false', function () {
assert.strictEqual(wrapper.find(SendRowErrorMessage).length, 0);
});
it('should render a SendRowErrorMessage with and errorType props if showError is true', function () {
wrapper.setProps({ showError: true });
assert.strictEqual(wrapper.find(SendRowErrorMessage).length, 1);
2020-11-03 00:41:28 +01:00
const expectedSendRowErrorMessage = wrapper
.find('.send-v2__form-row > .send-v2__form-label')
.childAt(1);
assert(expectedSendRowErrorMessage.is(SendRowErrorMessage));
assert.deepStrictEqual(expectedSendRowErrorMessage.props(), {
2020-11-03 00:41:28 +01:00
errorType: 'mockErrorType',
});
});
it('should render its second child as a child of the send-v2__form-field, if it has two children', function () {
2020-11-03 00:41:28 +01:00
wrapper = shallow(
<SendRowWrapper
errorType="mockErrorType"
label="mockLabel"
showError={false}
>
<span>Mock Custom Label Content</span>
<span>Mock Form Field</span>
2020-11-03 00:41:28 +01:00
</SendRowWrapper>,
);
assert.strictEqual(
2020-11-03 00:41:28 +01:00
wrapper
.find('.send-v2__form-row > .send-v2__form-field')
.childAt(0)
.text(),
'Mock Form Field',
);
});
it('should render its first child as the last child of the send-v2__form-label, if it has two children', function () {
2020-11-03 00:41:28 +01:00
wrapper = shallow(
<SendRowWrapper
errorType="mockErrorType"
label="mockLabel"
showError={false}
>
<span>Mock Custom Label Content</span>
<span>Mock Form Field</span>
2020-11-03 00:41:28 +01:00
</SendRowWrapper>,
);
assert.strictEqual(
2020-11-03 00:41:28 +01:00
wrapper
.find('.send-v2__form-row > .send-v2__form-label')
.childAt(1)
.text(),
'Mock Custom Label Content',
);
});
});
});