Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c00e865

Browse files
committedSep 22, 2018
fix: 🐛 click handles checkboxes
1 parent d1f6734 commit c00e865

File tree

2 files changed

+192
-134
lines changed

2 files changed

+192
-134
lines changed
 

‎__tests__/events.js

+138-96
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,99 @@
1-
import React from 'react'
2-
import { render, cleanup } from 'react-testing-library'
3-
import 'jest-dom/extend-expect'
4-
import userEvent from '../src'
1+
import React from "react";
2+
import { render, cleanup } from "react-testing-library";
3+
import "jest-dom/extend-expect";
4+
import userEvent from "../src";
55

6-
afterEach(cleanup)
6+
afterEach(cleanup);
77

8-
describe('fireEvent.click', () => {
9-
it.each(['input', 'textarea'])(
10-
'should fire the correct events for <%s>',
8+
describe("fireEvent.click", () => {
9+
it.each(["input", "textarea"])(
10+
"should fire the correct events for <%s>",
1111
type => {
12-
const onMouseOver = jest.fn()
13-
const onMouseMove = jest.fn()
14-
const onMouseDown = jest.fn()
15-
const onFocus = jest.fn()
16-
const onMouseUp = jest.fn()
17-
const onClick = jest.fn()
12+
const onMouseOver = jest.fn();
13+
const onMouseMove = jest.fn();
14+
const onMouseDown = jest.fn();
15+
const onFocus = jest.fn();
16+
const onMouseUp = jest.fn();
17+
const onClick = jest.fn();
1818
const { getByTestId } = render(
1919
React.createElement(type, {
20-
'data-testid': 'element',
20+
"data-testid": "element",
2121
onMouseOver: onMouseOver,
2222
onMouseMove: onMouseMove,
2323
onMouseDown: onMouseDown,
2424
onFocus: onFocus,
2525
onMouseUp: onMouseUp,
26-
onClick: onClick,
26+
onClick: onClick
2727
})
28-
)
29-
30-
expect(onMouseOver).not.toHaveBeenCalled()
31-
expect(onMouseMove).not.toHaveBeenCalled()
32-
expect(onMouseDown).not.toHaveBeenCalled()
33-
expect(onFocus).not.toHaveBeenCalled()
34-
expect(onMouseUp).not.toHaveBeenCalled()
35-
expect(onClick).not.toHaveBeenCalled()
36-
37-
userEvent.click(getByTestId('element'))
38-
39-
expect(onMouseOver).toHaveBeenCalledTimes(1)
40-
expect(onMouseMove).toHaveBeenCalledTimes(1)
41-
expect(onMouseDown).toHaveBeenCalledTimes(1)
42-
expect(onFocus).toHaveBeenCalledTimes(1)
43-
expect(onMouseUp).toHaveBeenCalledTimes(1)
44-
expect(onClick).toHaveBeenCalledTimes(1)
28+
);
29+
30+
expect(onMouseOver).not.toHaveBeenCalled();
31+
expect(onMouseMove).not.toHaveBeenCalled();
32+
expect(onMouseDown).not.toHaveBeenCalled();
33+
expect(onFocus).not.toHaveBeenCalled();
34+
expect(onMouseUp).not.toHaveBeenCalled();
35+
expect(onClick).not.toHaveBeenCalled();
36+
37+
userEvent.click(getByTestId("element"));
38+
39+
expect(onMouseOver).toHaveBeenCalledTimes(1);
40+
expect(onMouseMove).toHaveBeenCalledTimes(1);
41+
expect(onMouseDown).toHaveBeenCalledTimes(1);
42+
expect(onFocus).toHaveBeenCalledTimes(1);
43+
expect(onMouseUp).toHaveBeenCalledTimes(1);
44+
expect(onClick).toHaveBeenCalledTimes(1);
4545
}
46-
)
47-
48-
it('should fire the correct events for <div>', () => {
49-
const onMouseOver = jest.fn()
50-
const onMouseMove = jest.fn()
51-
const onMouseDown = jest.fn()
52-
const onFocus = jest.fn()
53-
const onMouseUp = jest.fn()
54-
const onClick = jest.fn()
46+
);
47+
48+
it('should fire the correct events for <input type="checkbox">', () => {
49+
const onMouseOver = jest.fn();
50+
const onMouseMove = jest.fn();
51+
const onMouseDown = jest.fn();
52+
const onFocus = jest.fn();
53+
const onMouseUp = jest.fn();
54+
const onClick = jest.fn();
55+
const onChange = jest.fn();
56+
const { getByTestId } = render(
57+
<input
58+
data-testid="element"
59+
type="checkbox"
60+
onMouseOver={onMouseOver}
61+
onMouseMove={onMouseMove}
62+
onMouseDown={onMouseDown}
63+
onFocus={onFocus}
64+
onMouseUp={onMouseUp}
65+
onClick={onClick}
66+
onChange={onChange}
67+
/>
68+
);
69+
70+
expect(onMouseOver).not.toHaveBeenCalled();
71+
expect(onMouseMove).not.toHaveBeenCalled();
72+
expect(onMouseDown).not.toHaveBeenCalled();
73+
expect(onFocus).not.toHaveBeenCalled();
74+
expect(onMouseUp).not.toHaveBeenCalled();
75+
expect(onClick).not.toHaveBeenCalled();
76+
expect(onChange).not.toHaveBeenCalled();
77+
78+
userEvent.click(getByTestId("element"));
79+
80+
expect(onMouseOver).toHaveBeenCalledTimes(1);
81+
expect(onMouseMove).toHaveBeenCalledTimes(1);
82+
expect(onMouseDown).toHaveBeenCalledTimes(1);
83+
expect(onFocus).not.toHaveBeenCalledTimes(1);
84+
expect(onMouseUp).toHaveBeenCalledTimes(1);
85+
expect(onClick).toHaveBeenCalledTimes(1);
86+
expect(onChange).toHaveBeenCalledTimes(1);
87+
expect(getByTestId("element")).toHaveProperty("checked", true);
88+
});
89+
90+
it("should fire the correct events for <div>", () => {
91+
const onMouseOver = jest.fn();
92+
const onMouseMove = jest.fn();
93+
const onMouseDown = jest.fn();
94+
const onFocus = jest.fn();
95+
const onMouseUp = jest.fn();
96+
const onClick = jest.fn();
5597
const { getByTestId } = render(
5698
<div
5799
data-testid="div"
@@ -62,93 +104,93 @@ describe('fireEvent.click', () => {
62104
onMouseUp={onMouseUp}
63105
onClick={onClick}
64106
/>
65-
)
66-
67-
expect(onMouseOver).not.toHaveBeenCalled()
68-
expect(onMouseMove).not.toHaveBeenCalled()
69-
expect(onMouseDown).not.toHaveBeenCalled()
70-
expect(onFocus).not.toHaveBeenCalled()
71-
expect(onMouseUp).not.toHaveBeenCalled()
72-
expect(onClick).not.toHaveBeenCalled()
73-
74-
userEvent.click(getByTestId('div'))
75-
76-
expect(onMouseOver).toHaveBeenCalledTimes(1)
77-
expect(onMouseMove).toHaveBeenCalledTimes(1)
78-
expect(onMouseDown).toHaveBeenCalledTimes(1)
79-
expect(onFocus).not.toHaveBeenCalled()
80-
expect(onMouseUp).toHaveBeenCalledTimes(1)
81-
expect(onClick).toHaveBeenCalledTimes(1)
82-
})
83-
84-
it('toggles the focus', () => {
107+
);
108+
109+
expect(onMouseOver).not.toHaveBeenCalled();
110+
expect(onMouseMove).not.toHaveBeenCalled();
111+
expect(onMouseDown).not.toHaveBeenCalled();
112+
expect(onFocus).not.toHaveBeenCalled();
113+
expect(onMouseUp).not.toHaveBeenCalled();
114+
expect(onClick).not.toHaveBeenCalled();
115+
116+
userEvent.click(getByTestId("div"));
117+
118+
expect(onMouseOver).toHaveBeenCalledTimes(1);
119+
expect(onMouseMove).toHaveBeenCalledTimes(1);
120+
expect(onMouseDown).toHaveBeenCalledTimes(1);
121+
expect(onFocus).not.toHaveBeenCalled();
122+
expect(onMouseUp).toHaveBeenCalledTimes(1);
123+
expect(onClick).toHaveBeenCalledTimes(1);
124+
});
125+
126+
it("toggles the focus", () => {
85127
const { getByTestId } = render(
86128
<React.Fragment>
87129
<input data-testid="A" />
88130
<input data-testid="B" />
89131
</React.Fragment>
90-
)
132+
);
91133

92-
const a = getByTestId('A')
93-
const b = getByTestId('B')
134+
const a = getByTestId("A");
135+
const b = getByTestId("B");
94136

95-
expect(a).not.toHaveFocus()
96-
expect(b).not.toHaveFocus()
137+
expect(a).not.toHaveFocus();
138+
expect(b).not.toHaveFocus();
97139

98-
userEvent.click(a)
99-
expect(a).toHaveFocus()
100-
expect(b).not.toHaveFocus()
140+
userEvent.click(a);
141+
expect(a).toHaveFocus();
142+
expect(b).not.toHaveFocus();
101143

102-
userEvent.click(b)
103-
expect(a).not.toHaveFocus()
104-
expect(a).not.toHaveFocus()
105-
})
144+
userEvent.click(b);
145+
expect(a).not.toHaveFocus();
146+
expect(a).not.toHaveFocus();
147+
});
106148

107-
it.each(['input', 'textarea'])(
108-
'gives focus to <%s> when clicking a <label> with htmlFor',
149+
it.each(["input", "textarea"])(
150+
"gives focus to <%s> when clicking a <label> with htmlFor",
109151
type => {
110152
const { getByTestId } = render(
111153
<React.Fragment>
112154
<label htmlFor="input" data-testid="label">
113155
Label
114156
</label>
115-
{React.createElement(type, { id: 'input', 'data-testid': 'input' })}
157+
{React.createElement(type, { id: "input", "data-testid": "input" })}
116158
</React.Fragment>
117-
)
118-
userEvent.click(getByTestId('label'))
119-
expect(getByTestId('input')).toHaveFocus()
159+
);
160+
userEvent.click(getByTestId("label"));
161+
expect(getByTestId("input")).toHaveFocus();
120162
}
121-
)
163+
);
122164

123-
it.each(['input', 'textarea'])(
124-
'gives focus to <%s> when clicking a <label> without htmlFor',
165+
it.each(["input", "textarea"])(
166+
"gives focus to <%s> when clicking a <label> without htmlFor",
125167
type => {
126168
const { getByTestId } = render(
127169
<React.Fragment>
128170
<label data-testid="label">
129171
Label
130-
{React.createElement(type, { 'data-testid': 'input' })}
172+
{React.createElement(type, { "data-testid": "input" })}
131173
</label>
132174
</React.Fragment>
133-
)
134-
userEvent.click(getByTestId('label'))
135-
expect(getByTestId('input')).toHaveFocus()
175+
);
176+
userEvent.click(getByTestId("label"));
177+
expect(getByTestId("input")).toHaveFocus();
136178
}
137-
)
179+
);
138180

139-
it.each(['input', 'textarea'])(
140-
'gives focus to <%s> when clicking on an element contained within a <label>',
181+
it.each(["input", "textarea"])(
182+
"gives focus to <%s> when clicking on an element contained within a <label>",
141183
type => {
142184
const { getByText, getByTestId } = render(
143185
<React.Fragment>
144186
<label htmlFor="input" data-testid="label">
145187
<span>Label</span>
146188
</label>
147-
{React.createElement(type, { id: 'input', 'data-testid': 'input' })}
189+
{React.createElement(type, { id: "input", "data-testid": "input" })}
148190
</React.Fragment>
149-
)
150-
userEvent.click(getByText('Label'))
151-
expect(getByTestId('input')).toHaveFocus()
191+
);
192+
userEvent.click(getByText("Label"));
193+
expect(getByTestId("input")).toHaveFocus();
152194
}
153-
)
154-
})
195+
);
196+
});
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.