-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathhcaptcha.spec.js
More file actions
324 lines (269 loc) · 11.6 KB
/
hcaptcha.spec.js
File metadata and controls
324 lines (269 loc) · 11.6 KB
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
import React from "react";
import ReactDOM from "react-dom";
import ReactTestUtils, { act } from "react-dom/test-utils";
import {getMockedHcaptcha, MOCK_EKEY, MOCK_TOKEN, MOCK_WIDGET_ID} from "./hcaptcha.mock";
let HCaptcha;
const TEST_PROPS = {
sitekey: "10000000-ffff-ffff-ffff-000000000001",
theme: "light",
size: "invisible",
tabindex: 0,
};
describe("hCaptcha", () => {
let instance;
let mockFns;
beforeEach(() => {
jest.isolateModules(() => {
// Use node's `require` because `jest.isolateModules` cannot be async to use it with `await import()`
HCaptcha = require('../src/index');
});
mockFns = {
onChange: jest.fn(),
onVerify: jest.fn(),
onError: jest.fn(),
onExpire: jest.fn(),
onLoad: jest.fn(),
};
window.hcaptcha = getMockedHcaptcha();
instance = ReactTestUtils.renderIntoDocument(
<HCaptcha
sitekey={TEST_PROPS.sitekey}
theme={TEST_PROPS.theme}
size={TEST_PROPS.size}
tabindex={TEST_PROPS.tabindex}
onChange={mockFns.onChange}
onVerify={mockFns.onVerify}
onError={mockFns.onError}
onExpire={mockFns.onExpire}
onLoad={mockFns.onLoad}
/>,
);
});
it("renders into a div", () => {
expect(ReactDOM.findDOMNode(instance).nodeName).toBe("DIV");
});
it("has functions", () => {
expect(typeof instance.execute).toBe("function");
expect(typeof instance.resetCaptcha).toBe("function");
expect(instance.execute).toBeDefined();
expect(instance.resetCaptcha).toBeDefined();
});
it("can execute", () => {
expect(window.hcaptcha.execute.mock.calls.length).toBe(0);
instance.execute();
expect(window.hcaptcha.execute.mock.calls.length).toBe(1);
expect(window.hcaptcha.execute.mock.calls[0][0]).toBe(MOCK_WIDGET_ID);
});
it("can reset", () => {
expect(window.hcaptcha.reset.mock.calls.length).toBe(0);
instance.resetCaptcha();
expect(window.hcaptcha.reset.mock.calls.length).toBe(1);
expect(window.hcaptcha.reset.mock.calls[0][0]).toBe(MOCK_WIDGET_ID);
});
it("can remove", () => {
expect(window.hcaptcha.remove.mock.calls.length).toBe(0);
instance.removeCaptcha();
expect(window.hcaptcha.remove.mock.calls.length).toBe(1);
expect(window.hcaptcha.remove.mock.calls[0][0]).toBe(MOCK_WIDGET_ID);
});
it("emits onLoad event", () => {
expect(mockFns.onLoad.mock.calls.length).toBe(0);
instance.handleOnLoad();
expect(mockFns.onLoad.mock.calls.length).toBe(1);
});
it("emits verify with token and eKey", () => {
expect(mockFns.onVerify.mock.calls.length).toBe(0);
instance.handleSubmit();
expect(mockFns.onVerify.mock.calls.length).toBe(1);
expect(mockFns.onVerify.mock.calls[0][0]).toBe(MOCK_TOKEN);
expect(mockFns.onVerify.mock.calls[0][1]).toBe(MOCK_EKEY);
});
it("emits error and calls reset", () => {
expect(mockFns.onError.mock.calls.length).toBe(0);
const error = "invalid-input-response";
instance.handleError(error);
expect(mockFns.onError.mock.calls.length).toBe(1);
expect(mockFns.onError.mock.calls[0][0]).toBe(error);
expect(window.hcaptcha.reset.mock.calls.length).toBe(1);
});
it("emits expire and calls reset", () => {
expect(mockFns.onExpire.mock.calls.length).toBe(0);
instance.handleExpire();
expect(mockFns.onExpire.mock.calls.length).toBe(1);
expect(window.hcaptcha.reset.mock.calls.length).toBe(1);
});
it("el renders after api loads and a widget id is set", () => {
expect(instance.state.captchaId).toBe(MOCK_WIDGET_ID);
expect(window.hcaptcha.render.mock.calls.length).toBe(1);
expect(window.hcaptcha.render.mock.calls[0][1]).toMatchObject({
sitekey: TEST_PROPS.sitekey,
theme: TEST_PROPS.theme,
size: TEST_PROPS.size,
tabindex: TEST_PROPS.tabindex
});
});
it("should set id if id prop is passed", () => {
instance = ReactTestUtils.renderIntoDocument(
<HCaptcha
sitekey={TEST_PROPS.sitekey}
id="test-id-1"
/>,
);
const node = ReactDOM.findDOMNode(instance);
expect(node.getAttribute("id")).toBe("test-id-1");
});
it("should not set id if no id prop is passed", () => {
process.env.NODE_ENV = "development";
instance = ReactTestUtils.renderIntoDocument(
<HCaptcha
sitekey={TEST_PROPS.sitekey}
/>,
);
const node = ReactDOM.findDOMNode(instance);
expect(node.getAttribute("id")).toBe(null);
});
it("correctly executes even if execute() was called before load", () => {
const hcaptchaGlobal = window.hcaptcha;
delete window.hcaptcha;
instance = ReactTestUtils.renderIntoDocument(
<HCaptcha
sitekey={TEST_PROPS.sitekey}
theme={TEST_PROPS.theme}
size={TEST_PROPS.size}
tabindex={TEST_PROPS.tabindex}
onChange={mockFns.onChange}
onVerify={mockFns.onVerify}
onError={mockFns.onError}
onExpire={mockFns.onExpire}
onLoad={mockFns.onLoad}
/>,
);
instance.execute();
expect(hcaptchaGlobal.execute.mock.calls.length).toBe(0);
window.hcaptcha = hcaptchaGlobal;
instance.handleOnLoad();
expect(hcaptchaGlobal.execute.mock.calls.length).toBe(1);
})
describe("Query parameter", () => {
beforeEach(() => {
// Setup hCaptcha as undefined to load script
window.hcaptcha = undefined;
});
afterEach(() => {
// Clean up created script tag
document.querySelectorAll("head > script")
.forEach(script => document.head.removeChild(script));
});
it("validate src without", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toEqual("https://hcaptcha.com/1/api.js?render=explicit&onload=hcaptchaOnLoad");
});
it("apihost should change script src, but not be added as query", () => {
const ExpectHost = "https://test.com";
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
apihost={ExpectHost}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain(ExpectHost);
expect(script.src).not.toContain(`apihost=${encodeURIComponent(ExpectHost)}`);
});
it("assethost should be found when prop is set", () => {
const ExpectHost = "https://test.com";
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
assethost={ExpectHost}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain(`assethost=${encodeURIComponent(ExpectHost)}`);
});
it("endpoint should be found when prop is set", () => {
const ExpectHost = "https://test.com";
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
endpoint={ExpectHost}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain(`endpoint=${encodeURIComponent(ExpectHost)}`);
});
it("imghost should be found when prop is set", () => {
const ExpectHost = "https://test.com";
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
imghost={ExpectHost}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain(`imghost=${encodeURIComponent(ExpectHost)}`);
});
it("reportapi should be found when prop is set", () => {
const ExpectHost = "https://test.com";
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
reportapi={ExpectHost}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain(`reportapi=${encodeURIComponent(ExpectHost)}`);
});
it("hl should be found when prop languageOverride is set", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
languageOverride="fr"
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain("hl=fr");
});
it("reCaptchaCompat should be found when prop is set to false", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
reCaptchaCompat={false}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain("recaptchacompat=off");
});
it("reCaptchaCompat should not be found when prop is set to anything except false", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
reCaptchaCompat={true}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).not.toContain("recaptchacompat");
});
it("sentry should be found when prop is set", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
sentry={true}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain("sentry=true");
});
it("host should be found when prop is set", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
host="test.com"
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain("host=test.com");
});
it("shouldn't create multiple scripts for multiple captchas", () => {
ReactTestUtils.renderIntoDocument(<HCaptcha
sitekey={TEST_PROPS.sitekey}
/>);
ReactTestUtils.renderIntoDocument(<HCaptcha
sitekey={TEST_PROPS.sitekey}
/>);
const scripts = document.querySelectorAll("head > script");
expect(scripts.length).toBe(1);
});
it("custom parameter should be in script query", () => {
instance = ReactTestUtils.renderIntoDocument(<HCaptcha
custom={true}
sitekey={TEST_PROPS.sitekey}
/>);
const script = document.querySelector("head > script");
expect(script.src).toContain("custom=true");
});
});
});