forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModalSpec.js
217 lines (169 loc) · 5.41 KB
/
ModalSpec.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import events from 'dom-helpers/events';
import React from 'react';
import ReactTestUtils from 'react/lib/ReactTestUtils';
import ReactDOM from 'react-dom';
import Modal from '../src/Modal';
import { render } from './helpers';
describe('Modal', () => {
let mountPoint;
beforeEach(() => {
mountPoint = document.createElement('div');
document.body.appendChild(mountPoint);
});
afterEach(() => {
ReactDOM.unmountComponentAtNode(mountPoint);
document.body.removeChild(mountPoint);
});
it('Should render the modal content', () => {
let noOp = () => {};
let instance = render(
<Modal show onHide={noOp} animation={false}>
<strong>Message</strong>
</Modal>
, mountPoint);
assert.ok(
ReactTestUtils.findRenderedDOMComponentWithTag(instance._modal, 'strong'));
});
it('Should close the modal when the modal dialog is clicked', (done) => {
let doneOp = () => { done(); };
let instance = render(
<Modal show onHide={doneOp}>
<strong>Message</strong>
</Modal>
, mountPoint);
let dialog = ReactDOM.findDOMNode(instance._modal);
ReactTestUtils.Simulate.click(dialog);
});
it('Should not close the modal when the "static" dialog is clicked', () => {
let onHideSpy = sinon.spy();
let instance = render(
<Modal show onHide={onHideSpy} backdrop="static">
<strong>Message</strong>
</Modal>
, mountPoint);
let dialog = ReactDOM.findDOMNode(instance._modal);
ReactTestUtils.Simulate.click(dialog);
expect(onHideSpy).to.not.have.been.called;
});
it('Should close the modal when the modal close button is clicked', (done) => {
let doneOp = () => { done(); };
let instance = render(
<Modal show onHide={doneOp}>
<Modal.Header closeButton />
<strong>Message</strong>
</Modal>
, mountPoint);
let button = ReactDOM.findDOMNode(instance._modal)
.getElementsByClassName('close')[0];
ReactTestUtils.Simulate.click(button);
});
it('Should pass className to the dialog', () => {
let noOp = () => {};
let instance = render(
<Modal show className="mymodal" onHide={noOp}>
<strong>Message</strong>
</Modal>
, mountPoint);
let dialog = ReactDOM.findDOMNode(instance._modal);
assert.ok(dialog.className.match(/\bmymodal\b/));
});
it('Should use bsClass on the dialog', () => {
let noOp = () => {};
let instance = render(
<Modal show bsClass="mymodal" onHide={noOp}>
<strong>Message</strong>
</Modal>
, mountPoint);
let modal = ReactDOM.findDOMNode(instance._modal);
assert.ok(modal.className.match(/\bmymodal\b/));
assert.ok(modal.children[0].className.match(/\bmymodal-dialog\b/));
assert.ok(modal.children[0].children[0].className.match(/\bmymodal-content\b/));
assert.ok(instance._backdrop.className.match(/\bmymodal-backdrop\b/));
});
it('Should pass bsSize to the dialog', () => {
let noOp = () => {};
let instance = render(
<Modal show bsSize="small" onHide={noOp}>
<strong>Message</strong>
</Modal>
, mountPoint);
let dialog = ReactDOM.findDOMNode(instance._modal).getElementsByClassName('modal-dialog')[0];
assert.ok(dialog.className.match(/\bmodal-sm\b/));
});
it('Should pass dialogClassName to the dialog', () => {
let noOp = () => {};
let instance = render(
<Modal show dialogClassName="testCss" onHide={noOp}>
<strong>Message</strong>
</Modal>
, mountPoint);
let dialog = ReactTestUtils.findRenderedDOMComponentWithClass(instance._modal, 'modal-dialog');
assert.ok(dialog.className.match(/\btestCss\b/));
});
it('Should use dialogComponent', () => {
let noOp = () => {};
class CustomDialog extends React.Component {
render() { return <div {...this.props}/>; }
}
let instance = render(
<Modal show dialogComponent={CustomDialog} onHide={noOp}>
<strong>Message</strong>
</Modal>
, mountPoint);
assert.ok(instance._modal instanceof CustomDialog);
});
it('Should pass transition callbacks to Transition', (done) => {
let count = 0;
let increment = ()=> count++;
let instance = render(
<Modal show
onHide={() => {}}
onExit={increment}
onExiting={increment}
onExited={()=> {
increment();
expect(count).to.equal(6);
done();
}}
onEnter={increment}
onEntering={increment}
onEntered={()=> {
increment();
instance.renderWithProps({ show: false });
}}
>
<strong>Message</strong>
</Modal>
, mountPoint);
});
describe('cleanup', () => {
let offSpy;
beforeEach(() => {
offSpy = sinon.spy(events, 'off');
});
afterEach(() => {
events.off.restore();
});
it('should remove resize listener when unmounted', () => {
class Component extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
show: true,
};
}
render() {
if (!this.state.show) {
return null;
}
return (
<Modal show>Foo</Modal>
);
}
}
const instance = render(<Component />, mountPoint);
instance.setState({ show: false });
expect(offSpy).to.have.been.calledWith(window, 'resize');
});
});
});