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
|
/*
* SonarQube
* Copyright (C) 2009-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { ReactWrapper, ShallowWrapper } from 'enzyme';
export function mockEvent(overrides = {}) {
return {
target: { blur() {} },
currentTarget: { blur() {} },
preventDefault() {},
stopPropagation() {},
...overrides,
} as any;
}
export function click(element: ShallowWrapper | ReactWrapper, event = {}): void {
// `type()` returns a component constructor for a composite element and string for DOM nodes
if (typeof element.type() === 'function') {
element.prop<Function>('onClick')();
// TODO find out if `root` is a public api
// https://github.com/airbnb/enzyme/blob/master/packages/enzyme/src/ReactWrapper.js#L109
(element as any).root().update();
} else {
element.simulate('click', mockEvent(event));
}
}
export function clickOutside(event = {}): void {
const dispatchedEvent = new MouseEvent('click', event);
window.dispatchEvent(dispatchedEvent);
}
export function submit(element: ShallowWrapper | ReactWrapper): void {
element.simulate('submit', {
preventDefault() {},
});
}
export function change(element: ShallowWrapper | ReactWrapper, value: string, event = {}): void {
// `type()` returns a component constructor for a composite element and string for DOM nodes
if (typeof element.type() === 'function') {
element.prop<Function>('onChange')(value);
// TODO find out if `root` is a public api
// https://github.com/airbnb/enzyme/blob/master/packages/enzyme/src/ReactWrapper.js#L109
(element as any).root().update();
} else {
element.simulate('change', {
target: { value },
currentTarget: { value },
...event,
});
}
}
export const KEYCODE_MAP: { [keycode: number]: string } = {
13: 'enter',
37: 'left',
38: 'up',
39: 'right',
40: 'down',
};
export function keydown(key: number | string): void {
let keyCode;
if (typeof key === 'number') {
keyCode = key;
} else {
// eslint-disable-next-line no-console
console.warn('Using strings in keydown() is deprecated. Consider using the KeyCodes enum.');
const mapped = Object.entries(KEYCODE_MAP).find(([_, value]) => value === key);
if (!mapped) {
throw new Error(`Cannot map key "${key}" to a keyCode!`);
}
keyCode = mapped[0];
}
const event = new KeyboardEvent('keydown', { keyCode, which: keyCode } as KeyboardEventInit);
document.dispatchEvent(event);
}
export function elementKeydown(element: ShallowWrapper, keyCode: number): void {
const event = {
currentTarget: { element },
keyCode,
preventDefault() {},
};
if (typeof element.type() === 'string') {
// `type()` is string for native dom elements
element.simulate('keydown', event);
} else {
element.prop<Function>('onKeyDown')(event);
}
}
export function resizeWindowTo(width?: number, height?: number) {
// `document.documentElement.clientHeight/clientWidth` are getters by default,
// so we need to redefine them. Pass `configurable: true` to allow to redefine
// the properties multiple times.
if (width) {
Object.defineProperty(document.documentElement, 'clientWidth', {
configurable: true,
value: width,
});
}
if (height) {
Object.defineProperty(document.documentElement, 'clientHeight', {
configurable: true,
value: height,
});
}
const resizeEvent = new Event('resize');
window.dispatchEvent(resizeEvent);
}
export function scrollTo({ left = 0, top = 0 }) {
Object.defineProperty(window, 'pageYOffset', { value: top });
Object.defineProperty(window, 'pageXOffset', { value: left });
const resizeEvent = new Event('scroll');
window.dispatchEvent(resizeEvent);
}
export function setNodeRect({ width = 50, height = 50, left = 0, top = 0 }) {
const { findDOMNode } = require('react-dom');
const element = document.createElement('div');
Object.defineProperty(element, 'getBoundingClientRect', {
value: () => ({ width, height, left, top }),
});
findDOMNode.mockReturnValue(element);
}
export function doAsync(fn?: Function): Promise<void> {
return new Promise((resolve) => {
setImmediate(() => {
if (fn) {
fn();
}
resolve();
});
});
}
export async function waitAndUpdate(wrapper: ShallowWrapper<any, any> | ReactWrapper<any, any>) {
await new Promise(setImmediate);
wrapper.update();
}
|