2021-02-04 19:15:23 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import React from 'react';
|
|
|
|
import { shallow } from 'enzyme';
|
2021-03-16 22:00:08 +01:00
|
|
|
import SendRowWrapper from './send-row-wrapper.component';
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2021-03-16 22:00:08 +01:00
|
|
|
import SendRowErrorMessage from './send-row-error-message/send-row-error-message.container';
|
2018-05-10 18:17:05 +02:00
|
|
|
|
|
|
|
describe('SendContent Component', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
let wrapper;
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('render', function () {
|
|
|
|
beforeEach(function () {
|
2020-11-03 00:41:28 +01:00
|
|
|
wrapper = shallow(
|
|
|
|
<SendRowWrapper
|
|
|
|
errorType="mockErrorType"
|
|
|
|
label="mockLabel"
|
|
|
|
showError={false}
|
|
|
|
>
|
2020-02-11 17:51:13 +01:00
|
|
|
<span>Mock Form Field</span>
|
2020-11-03 00:41:28 +01:00
|
|
|
</SendRowWrapper>,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should render a div with a send-v2__form-row class', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.strictEqual(wrapper.find('div.send-v2__form-row').length, 1);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should render two children of the root div, with send-v2_form label and field classes', function () {
|
2020-12-03 16:46:22 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
wrapper.find('.send-v2__form-row > .send-v2__form-label').length,
|
|
|
|
1,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-12-03 16:46:22 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
wrapper.find('.send-v2__form-row > .send-v2__form-field').length,
|
|
|
|
1,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should render the label as a child of the send-v2__form-label', function () {
|
2020-12-03 16:46:22 +01:00
|
|
|
assert.strictEqual(
|
2020-11-03 00:41:28 +01:00
|
|
|
wrapper
|
|
|
|
.find('.send-v2__form-row > .send-v2__form-label')
|
|
|
|
.childAt(0)
|
|
|
|
.text(),
|
|
|
|
'mockLabel',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should render its first child as a child of the send-v2__form-field', function () {
|
2020-12-03 16:46:22 +01:00
|
|
|
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',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should not render a SendRowErrorMessage if showError is false', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.strictEqual(wrapper.find(SendRowErrorMessage).length, 0);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
it('should render a SendRowErrorMessage with and errorType props if showError is true', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
wrapper.setProps({ showError: true });
|
|
|
|
assert.strictEqual(wrapper.find(SendRowErrorMessage).length, 1);
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const expectedSendRowErrorMessage = wrapper
|
|
|
|
.find('.send-v2__form-row > .send-v2__form-label')
|
2021-02-04 19:15:23 +01:00
|
|
|
.childAt(1);
|
|
|
|
assert(expectedSendRowErrorMessage.is(SendRowErrorMessage));
|
2020-12-03 16:46:22 +01:00
|
|
|
assert.deepStrictEqual(expectedSendRowErrorMessage.props(), {
|
2020-11-03 00:41:28 +01:00
|
|
|
errorType: 'mockErrorType',
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
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(
|
2019-12-03 17:35:44 +01:00
|
|
|
<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>,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-12-03 16:46:22 +01:00
|
|
|
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',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
2018-05-10 18:17:05 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
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(
|
2019-12-03 17:35:44 +01:00
|
|
|
<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>,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-12-03 16:46:22 +01:00
|
|
|
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',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|