-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathDialog.test.jsx
226 lines (201 loc) · 6.48 KB
/
Dialog.test.jsx
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
218
219
220
221
222
223
224
225
226
import React from 'react';
import { render, screen, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import '@testing-library/jest-dom';
import Dialog from './Dialog';
describe('Dialog Component', () => {
const mockPrimaryHandler = jest.fn();
const mockSecondaryHandler = jest.fn();
const mockCloseHandler = jest.fn();
beforeEach(() => {
jest.clearAllMocks();
jest.restoreAllMocks();
});
afterEach(() => {
jest.restoreAllMocks();
});
it('renders nothing by default', () => {
const { container } = render(<Dialog primaryHandler={mockPrimaryHandler} />);
expect(container).toBeEmptyDOMElement();
});
it('renders nothing when open is explicitly false', () => {
const { container } = render(
<Dialog open={false} primaryHandler={mockPrimaryHandler} />,
);
expect(container).toBeEmptyDOMElement();
});
it('renders correctly when open is true', () => {
render(<Dialog open={true} primaryHandler={mockPrimaryHandler} />);
expect(screen.getByRole('dialog')).toBeInTheDocument();
expect(screen.getByText('Are you sure you want to continue?')).toBeInTheDocument();
expect(
screen.getByText('You have unsaved changes that will be lost.'),
).toBeInTheDocument();
});
it('renders custom header and message', () => {
render(
<Dialog
open={true}
header="Delete File?"
message="Are you sure you want to delete this file?"
primaryHandler={mockPrimaryHandler}
/>,
);
expect(screen.getByText('Delete File?')).toBeInTheDocument();
expect(
screen.getByText('Are you sure you want to delete this file?'),
).toBeInTheDocument();
});
it('renders primary and secondary buttons', () => {
render(
<Dialog
primaryHandler={mockPrimaryHandler}
open={true}
primaryButton="Confirm"
secondaryButton="Cancel"
/>,
);
expect(screen.getByRole('button', { name: 'Confirm' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: 'Cancel' })).toBeInTheDocument();
});
it('calls primaryHandler when primary button is clicked', async () => {
render(
<Dialog open={true} primaryButton="Confirm" primaryHandler={mockPrimaryHandler} />,
);
await userEvent.click(screen.getByRole('button', { name: 'Confirm' }));
expect(mockPrimaryHandler).toHaveBeenCalledTimes(1);
});
it('calls secondaryHandler when secondary button is clicked', async () => {
render(
<Dialog
open={true}
secondaryButton="Cancel"
secondaryHandler={mockSecondaryHandler}
primaryHandler={mockPrimaryHandler}
/>,
);
await userEvent.click(screen.getByRole('button', { name: 'Cancel' }));
expect(mockSecondaryHandler).toHaveBeenCalledTimes(1);
});
it('calls closeHandler when clicking the close button', async () => {
render(
<Dialog
open={true}
primaryHandler={mockPrimaryHandler}
closeHandler={mockCloseHandler}
/>,
);
await userEvent.click(screen.getByLabelText('Close this window'));
expect(mockCloseHandler).toHaveBeenCalledTimes(1);
});
it('calls closeHandler when clicking the overlay if dismissable', async () => {
render(
<Dialog
open={true}
dismissable={true}
primaryHandler={mockPrimaryHandler}
closeHandler={mockCloseHandler}
/>,
);
await userEvent.click(screen.getByTestId('modal-overlay'));
expect(mockCloseHandler).toHaveBeenCalledTimes(1);
});
it('does not call closeHandler when clicking overlay if not dismissable', async () => {
render(
<Dialog
open={true}
dismissable={false}
primaryHandler={mockPrimaryHandler}
closeHandler={mockCloseHandler}
/>,
);
// eslint-disable-next-line testing-library/no-node-access
await userEvent.click(screen.getByRole('dialog').parentElement);
expect(mockCloseHandler).not.toHaveBeenCalled();
});
it('closes when Escape key is pressed if dismissable', async () => {
render(
<Dialog
primaryHandler={mockPrimaryHandler}
open={true}
dismissable={true}
closeHandler={mockCloseHandler}
/>,
);
await userEvent.keyboard('{Escape}');
expect(mockCloseHandler).toHaveBeenCalledTimes(1);
});
it('does not close when Escape key is pressed if not dismissable', async () => {
render(
<Dialog
open={true}
dismissable={false}
primaryHandler={mockPrimaryHandler}
closeHandler={mockCloseHandler}
/>,
);
await userEvent.keyboard('{Escape}');
expect(mockCloseHandler).not.toHaveBeenCalled();
});
it('traps focus inside the modal', async () => {
render(
<Dialog
open={true}
primaryHandler={mockPrimaryHandler}
primaryButton="Confirm"
secondaryButton="Cancel"
/>,
);
// this is the order they show up in the DOM
const confirmButton = screen.getByRole('button', { name: 'Confirm' });
const cancelButton = screen.getByRole('button', { name: 'Cancel' });
const closeButton = screen.getByLabelText('Close this window');
confirmButton.focus();
expect(confirmButton).toHaveFocus();
await userEvent.tab();
expect(cancelButton).toHaveFocus();
await userEvent.tab();
expect(closeButton).toHaveFocus();
await userEvent.tab();
expect(confirmButton).toHaveFocus();
});
it('restores focus to the previously focused element when closed', async () => {
const { rerender } = render(
<>
<button data-testid="outside-button">Outside</button>
<Dialog
open={false}
primaryHandler={mockPrimaryHandler}
closeHandler={jest.fn()}
/>
</>,
);
const outsideButton = screen.getByTestId('outside-button');
outsideButton.focus();
expect(outsideButton).toHaveFocus();
rerender(
<>
<button data-testid="outside-button">Outside</button>
<Dialog
open={true}
primaryHandler={mockPrimaryHandler}
closeHandler={jest.fn()}
/>
</>,
);
expect(screen.getByRole('button', { name: 'Continue without saving' })).toHaveFocus();
rerender(
<>
<button data-testid="outside-button">Outside</button>
<Dialog
open={false}
primaryHandler={mockPrimaryHandler}
closeHandler={jest.fn()}
/>
</>,
);
await waitFor(() => {
expect(outsideButton).toHaveFocus();
});
});
});