-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathloadClerkJsScript.spec.ts
More file actions
472 lines (383 loc) · 16.3 KB
/
loadClerkJsScript.spec.ts
File metadata and controls
472 lines (383 loc) · 16.3 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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
import type { Mock } from 'vitest';
import { afterEach, beforeEach, describe, expect, test, vi } from 'vitest';
import { ClerkRuntimeError } from '../error';
import {
buildClerkJsScriptAttributes,
buildClerkUiScriptAttributes,
buildScriptHost,
clerkJsScriptUrl,
clerkUiScriptUrl,
loadClerkJsScript,
loadClerkUiScript,
setClerkJsLoadingErrorPackageName,
} from '../loadClerkJsScript';
import { loadScript } from '../loadScript';
import { getMajorVersion } from '../versionSelector';
vi.mock('../loadScript');
setClerkJsLoadingErrorPackageName('@clerk/react');
const jsPackageMajorVersion = getMajorVersion(JS_PACKAGE_VERSION);
const uiPackageMajorVersion = getMajorVersion(UI_PACKAGE_VERSION);
const mockClerk = {
status: 'ready',
loaded: true,
load: vi.fn(),
};
describe('loadClerkJsScript(options)', () => {
const mockPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
beforeEach(() => {
vi.clearAllMocks();
(loadScript as Mock).mockResolvedValue(undefined);
document.querySelector = vi.fn().mockReturnValue(null);
(window as any).Clerk = undefined;
vi.useFakeTimers();
});
afterEach(() => {
vi.useRealTimers();
});
test('throws error when publishableKey is missing', async () => {
await expect(loadClerkJsScript({} as any)).rejects.toThrow(
'@clerk/react: Missing publishableKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys.',
);
});
test('returns null immediately when Clerk is already loaded', async () => {
(window as any).Clerk = mockClerk;
const result = await loadClerkJsScript({ publishableKey: mockPublishableKey });
expect(result).toBeNull();
expect(loadScript).not.toHaveBeenCalled();
});
test('loads script and waits for Clerk to be available', async () => {
const loadPromise = loadClerkJsScript({ publishableKey: mockPublishableKey });
// Simulate Clerk becoming available after 250ms
setTimeout(() => {
(window as any).Clerk = mockClerk;
}, 250);
// Advance timers to allow polling to detect Clerk
vi.advanceTimersByTime(300);
const result = await loadPromise;
expect(result).toBeNull();
expect(loadScript).toHaveBeenCalledWith(
expect.stringContaining(
`https://foo-bar-13.clerk.accounts.dev/npm/@clerk/clerk-js@${jsPackageMajorVersion}/dist/clerk.browser.js`,
),
expect.objectContaining({
async: true,
crossOrigin: 'anonymous',
beforeLoad: expect.any(Function),
}),
);
});
test('times out and rejects when Clerk does not load', async () => {
let rejectedWith: any;
const loadPromise = loadClerkJsScript({ publishableKey: mockPublishableKey, scriptLoadTimeout: 1000 });
try {
vi.advanceTimersByTime(1000);
await loadPromise;
} catch (error) {
rejectedWith = error;
}
expect(rejectedWith).toBeInstanceOf(ClerkRuntimeError);
expect(rejectedWith.message).toContain('Clerk: Failed to load Clerk');
expect((window as any).Clerk).toBeUndefined();
});
test('waits for existing script with timeout', async () => {
const mockExistingScript = document.createElement('script');
document.querySelector = vi.fn().mockReturnValue(mockExistingScript);
const loadPromise = loadClerkJsScript({ publishableKey: mockPublishableKey });
// Simulate Clerk becoming available after 250ms
setTimeout(() => {
(window as any).Clerk = mockClerk;
}, 250);
// Advance timers to allow polling to detect Clerk
vi.advanceTimersByTime(300);
const result = await loadPromise;
expect(result).toBeNull();
expect(loadScript).not.toHaveBeenCalled();
});
test('handles race condition when Clerk loads just as timeout fires', async () => {
const loadPromise = loadClerkJsScript({ publishableKey: mockPublishableKey, scriptLoadTimeout: 1000 });
setTimeout(() => {
(window as any).Clerk = mockClerk;
}, 999);
vi.advanceTimersByTime(1000);
const result = await loadPromise;
expect(result).toBeNull();
expect((window as any).Clerk).toBe(mockClerk);
});
test('validates Clerk is properly loaded with required methods', async () => {
(window as any).Clerk = mockClerk;
const result = await loadClerkJsScript({ publishableKey: mockPublishableKey });
expect(result).toBeNull();
expect((window as any).Clerk).toBe(mockClerk);
});
});
describe('clerkJsScriptUrl()', () => {
const mockDevPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
const mockProdPublishableKey = 'pk_live_ZXhhbXBsZS5jbGVyay5jb20k'; // example.clerk.com
test('returns clerkJSUrl when provided', () => {
const customUrl = 'https://custom.clerk.com/clerk.js';
const result = clerkJsScriptUrl({ clerkJSUrl: customUrl, publishableKey: mockDevPublishableKey });
expect(result).toBe(customUrl);
});
test('constructs URL correctly for development key', () => {
const result = clerkJsScriptUrl({ publishableKey: mockDevPublishableKey });
expect(result).toBe(
`https://foo-bar-13.clerk.accounts.dev/npm/@clerk/clerk-js@${jsPackageMajorVersion}/dist/clerk.browser.js`,
);
});
test('constructs URL correctly for production key', () => {
const result = clerkJsScriptUrl({ publishableKey: mockProdPublishableKey });
expect(result).toBe(`https://example.clerk.com/npm/@clerk/clerk-js@${jsPackageMajorVersion}/dist/clerk.browser.js`);
});
test('includes clerkJSVariant in URL when provided', () => {
const result = clerkJsScriptUrl({ publishableKey: mockProdPublishableKey, clerkJSVariant: 'headless' });
expect(result).toBe(
`https://example.clerk.com/npm/@clerk/clerk-js@${jsPackageMajorVersion}/dist/clerk.headless.browser.js`,
);
});
test('uses provided clerkJSVersion', () => {
const result = clerkJsScriptUrl({ publishableKey: mockDevPublishableKey, clerkJSVersion: '6' });
expect(result).toContain('/npm/@clerk/clerk-js@6/');
});
});
describe('buildScriptHost()', () => {
const mockDevPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
const mockProdPublishableKey = 'pk_live_ZXhhbXBsZS5jbGVyay5jb20k'; // example.clerk.com
const mockProxyUrl = 'https://proxy.clerk.com';
const mockDomain = 'custom.com';
test('returns frontendApi from publishableKey when no proxyUrl or domain', () => {
const result = buildScriptHost({ publishableKey: mockDevPublishableKey });
expect(result).toBe('foo-bar-13.clerk.accounts.dev');
});
test('returns proxyUrl host when proxyUrl is provided and valid', () => {
const result = buildScriptHost({ publishableKey: mockDevPublishableKey, proxyUrl: mockProxyUrl });
expect(result).toBe('proxy.clerk.com');
});
test('returns domain with clerk prefix when domain is provided for production key', () => {
const result = buildScriptHost({ publishableKey: mockProdPublishableKey, domain: mockDomain });
expect(result).toBe('clerk.custom.com');
});
test('returns frontendApi when domain is provided for development key', () => {
const result = buildScriptHost({ publishableKey: mockDevPublishableKey, domain: mockDomain });
expect(result).toBe('foo-bar-13.clerk.accounts.dev');
});
test('prioritizes proxyUrl over domain', () => {
const result = buildScriptHost({
publishableKey: mockProdPublishableKey,
proxyUrl: mockProxyUrl,
domain: mockDomain,
});
expect(result).toBe('proxy.clerk.com');
});
test('handles relative proxyUrl', () => {
// Mock window.location for relative URL conversion
const originalLocation = global.window.location;
Object.defineProperty(global.window, 'location', {
get() {
return {
origin: 'https://example.com',
};
},
configurable: true,
});
const result = buildScriptHost({ publishableKey: mockDevPublishableKey, proxyUrl: '/__clerk' });
// Relative URLs are converted to absolute, then protocol is stripped
expect(result).toBe('example.com/__clerk');
// Restore original location
Object.defineProperty(global.window, 'location', {
value: originalLocation,
writable: true,
});
});
});
describe('buildClerkJsScriptAttributes()', () => {
const mockPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
const mockProxyUrl = 'https://proxy.clerk.com';
const mockDomain = 'custom.com';
test.each([
[
'all options',
{ publishableKey: mockPublishableKey, proxyUrl: mockProxyUrl, domain: mockDomain },
{
'data-clerk-publishable-key': mockPublishableKey,
'data-clerk-proxy-url': mockProxyUrl,
'data-clerk-domain': mockDomain,
},
],
[
'only publishableKey',
{ publishableKey: mockPublishableKey },
{ 'data-clerk-publishable-key': mockPublishableKey },
],
[
'publishableKey and proxyUrl',
{ publishableKey: mockPublishableKey, proxyUrl: mockProxyUrl },
{ 'data-clerk-publishable-key': mockPublishableKey, 'data-clerk-proxy-url': mockProxyUrl },
],
['no options', {}, {}],
])('returns correct attributes with %s', (_, input, expected) => {
// @ts-ignore input loses correct type because of empty object
expect(buildClerkJsScriptAttributes(input)).toEqual(expected);
});
});
describe('loadClerkUiScript(options)', () => {
const mockPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
const mockClerkUi = {
render: vi.fn(),
};
beforeEach(() => {
vi.clearAllMocks();
(loadScript as Mock).mockResolvedValue(undefined);
document.querySelector = vi.fn().mockReturnValue(null);
(window as any).__internal_ClerkUiCtor = undefined;
vi.useFakeTimers();
});
afterEach(() => {
vi.useRealTimers();
});
test('throws error when publishableKey is missing', async () => {
await expect(loadClerkUiScript({} as any)).rejects.toThrow(
'@clerk/react: Missing publishableKey. You can get your key at https://dashboard.clerk.com/last-active?path=api-keys.',
);
});
test('returns null immediately when ClerkUI is already loaded', async () => {
(window as any).__internal_ClerkUiCtor = mockClerkUi;
const result = await loadClerkUiScript({ publishableKey: mockPublishableKey });
expect(result).toBeNull();
expect(loadScript).not.toHaveBeenCalled();
});
test('loads script and waits for ClerkUI to be available', async () => {
const loadPromise = loadClerkUiScript({ publishableKey: mockPublishableKey });
// Simulate ClerkUI becoming available after 250ms
setTimeout(() => {
(window as any).__internal_ClerkUiCtor = mockClerkUi;
}, 250);
// Advance timers to allow polling to detect ClerkUI
vi.advanceTimersByTime(300);
const result = await loadPromise;
expect(result).toBeNull();
expect(loadScript).toHaveBeenCalledWith(
expect.stringContaining(
`https://foo-bar-13.clerk.accounts.dev/npm/@clerk/ui@${uiPackageMajorVersion}/dist/ui.browser.js`,
),
expect.objectContaining({
async: true,
crossOrigin: 'anonymous',
beforeLoad: expect.any(Function),
}),
);
});
test('times out and rejects when ClerkUI does not load', async () => {
let rejectedWith: any;
const loadPromise = loadClerkUiScript({ publishableKey: mockPublishableKey, scriptLoadTimeout: 1000 });
try {
vi.advanceTimersByTime(1000);
await loadPromise;
} catch (error) {
rejectedWith = error;
}
expect(rejectedWith).toBeInstanceOf(ClerkRuntimeError);
expect(rejectedWith.message).toContain('Failed to load Clerk UI');
expect((window as any).__internal_ClerkUiCtor).toBeUndefined();
});
test('waits for existing script with timeout', async () => {
const mockExistingScript = document.createElement('script');
document.querySelector = vi.fn().mockReturnValue(mockExistingScript);
const loadPromise = loadClerkUiScript({ publishableKey: mockPublishableKey });
// Simulate ClerkUI becoming available after 250ms
setTimeout(() => {
(window as any).__internal_ClerkUiCtor = mockClerkUi;
}, 250);
// Advance timers to allow polling to detect ClerkUI
vi.advanceTimersByTime(300);
const result = await loadPromise;
expect(result).toBeNull();
expect(loadScript).not.toHaveBeenCalled();
});
test('handles race condition when ClerkUI loads just as timeout fires', async () => {
const loadPromise = loadClerkUiScript({ publishableKey: mockPublishableKey, scriptLoadTimeout: 1000 });
setTimeout(() => {
(window as any).__internal_ClerkUiCtor = mockClerkUi;
}, 999);
vi.advanceTimersByTime(1000);
const result = await loadPromise;
expect(result).toBeNull();
expect((window as any).__internal_ClerkUiCtor).toBe(mockClerkUi);
});
test('validates ClerkUI is properly loaded', async () => {
(window as any).__internal_ClerkUiCtor = mockClerkUi;
const result = await loadClerkUiScript({ publishableKey: mockPublishableKey });
expect(result).toBeNull();
expect((window as any).__internal_ClerkUiCtor).toBe(mockClerkUi);
});
});
describe('clerkUiScriptUrl()', () => {
const mockDevPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
const mockProdPublishableKey = 'pk_live_ZXhhbXBsZS5jbGVyay5jb20k'; // example.clerk.com
test('returns clerkUiUrl when provided', () => {
const customUrl = 'https://custom.clerk.com/ui.js';
const result = clerkUiScriptUrl({ clerkUiUrl: customUrl, publishableKey: mockDevPublishableKey });
expect(result).toBe(customUrl);
});
test('constructs URL correctly for development key', () => {
const result = clerkUiScriptUrl({ publishableKey: mockDevPublishableKey });
expect(result).toBe(
`https://foo-bar-13.clerk.accounts.dev/npm/@clerk/ui@${uiPackageMajorVersion}/dist/ui.browser.js`,
);
});
test('constructs URL correctly for production key', () => {
const result = clerkUiScriptUrl({ publishableKey: mockProdPublishableKey });
expect(result).toBe(`https://example.clerk.com/npm/@clerk/ui@${uiPackageMajorVersion}/dist/ui.browser.js`);
});
test('uses provided clerkUiVersion', () => {
const result = clerkUiScriptUrl({ publishableKey: mockDevPublishableKey, clerkUiVersion: '1' });
expect(result).toContain('/npm/@clerk/ui@1/');
});
test('uses latest as default version when not specified', () => {
const result = clerkUiScriptUrl({ publishableKey: mockDevPublishableKey });
// When no version is specified, versionSelector should return the major version
expect(result).toContain(`/npm/@clerk/ui@${uiPackageMajorVersion}/`);
});
test('uses UI_PACKAGE_VERSION independently from JS_PACKAGE_VERSION', () => {
// Verify that clerkUiScriptUrl uses UI_PACKAGE_VERSION, not JS_PACKAGE_VERSION
const uiResult = clerkUiScriptUrl({ publishableKey: mockDevPublishableKey });
const jsResult = clerkJsScriptUrl({ publishableKey: mockDevPublishableKey });
// UI script should use UI package version
expect(uiResult).toContain(`/npm/@clerk/ui@${uiPackageMajorVersion}/`);
// JS script should use JS package version
expect(jsResult).toContain(`/npm/@clerk/clerk-js@${jsPackageMajorVersion}/`);
// They should be using their respective versions (which may differ)
// This test ensures we don't accidentally use JS version for UI
expect(uiResult).not.toContain('@clerk/clerk-js');
expect(jsResult).not.toContain('@clerk/ui');
});
});
describe('buildClerkUiScriptAttributes()', () => {
const mockPublishableKey = 'pk_test_Zm9vLWJhci0xMy5jbGVyay5hY2NvdW50cy5kZXYk';
const mockProxyUrl = 'https://proxy.clerk.com';
const mockDomain = 'custom.com';
test.each([
[
'all options',
{ publishableKey: mockPublishableKey, proxyUrl: mockProxyUrl, domain: mockDomain },
{
'data-clerk-publishable-key': mockPublishableKey,
'data-clerk-proxy-url': mockProxyUrl,
'data-clerk-domain': mockDomain,
},
],
[
'only publishableKey',
{ publishableKey: mockPublishableKey },
{ 'data-clerk-publishable-key': mockPublishableKey },
],
[
'publishableKey and proxyUrl',
{ publishableKey: mockPublishableKey, proxyUrl: mockProxyUrl },
{ 'data-clerk-publishable-key': mockPublishableKey, 'data-clerk-proxy-url': mockProxyUrl },
],
['no options', {}, {}],
])('returns correct attributes with %s', (_, input, expected) => {
// @ts-ignore input loses correct type because of empty object
expect(buildClerkUiScriptAttributes(input)).toEqual(expected);
});
});