2021-02-04 19:15:23 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import configureMockStore from 'redux-mock-store';
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
import React from 'react';
|
|
|
|
import withModalProps from '../with-modal-props';
|
2018-09-19 23:30:52 +02:00
|
|
|
|
|
|
|
const mockState = {
|
|
|
|
appState: {
|
|
|
|
modal: {
|
|
|
|
modalState: {
|
|
|
|
props: {
|
|
|
|
prop1: 'prop1',
|
|
|
|
prop2: 2,
|
|
|
|
prop3: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-09-19 23:30:52 +02:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('withModalProps', function () {
|
|
|
|
it('should return a component wrapped with modal state props', function () {
|
2021-02-04 19:15:23 +01:00
|
|
|
const TestComponent = () => <div className="test">Testing</div>;
|
|
|
|
const WrappedComponent = withModalProps(TestComponent);
|
|
|
|
const store = configureMockStore()(mockState);
|
|
|
|
const wrapper = mount(<WrappedComponent store={store} />);
|
2018-09-19 23:30:52 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.ok(wrapper);
|
|
|
|
const testComponent = wrapper.find(TestComponent).at(0);
|
|
|
|
assert.strictEqual(testComponent.length, 1);
|
|
|
|
assert.strictEqual(testComponent.find('.test').text(), 'Testing');
|
|
|
|
const testComponentProps = testComponent.props();
|
|
|
|
assert.strictEqual(testComponentProps.prop1, 'prop1');
|
|
|
|
assert.strictEqual(testComponentProps.prop2, 2);
|
|
|
|
assert.strictEqual(testComponentProps.prop3, true);
|
|
|
|
assert.strictEqual(typeof testComponentProps.hideModal, 'function');
|
|
|
|
});
|
|
|
|
});
|