-
Notifications
You must be signed in to change notification settings - Fork 452
Expand file tree
/
Copy pathClerkProvider.test.tsx
More file actions
235 lines (195 loc) · 6.4 KB
/
ClerkProvider.test.tsx
File metadata and controls
235 lines (195 loc) · 6.4 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
import {
beBY,
csCZ,
deDE,
enUS,
esES,
frFR,
itIT,
jaJP,
koKR,
ptBR,
ruRU,
skSK,
svSE,
trTR,
ukUA,
} from '@clerk/localizations';
import { dark } from '@clerk/ui/themes';
import { describe, expectTypeOf, it } from 'vitest';
import type { ClerkProvider } from '../ClerkProvider';
import type { ClerkProviderProps as GenericClerkProviderProps, Ui } from '../../types';
type ClerkProviderProps = Parameters<typeof ClerkProvider>[0];
type CustomAppearance = {
options?: {
customFlag?: boolean;
};
};
const customUi = {} as Ui<CustomAppearance>;
describe('ClerkProvider', () => {
describe('Type tests', () => {
describe('publishableKey', () => {
it('expects a publishableKey and children as the minimum accepted case', () => {
expectTypeOf({ publishableKey: 'test', children: '' }).toMatchTypeOf<ClerkProviderProps>();
});
it('errors if no publishableKey', () => {
expectTypeOf({ children: '' }).not.toMatchTypeOf<ClerkProviderProps>();
});
});
});
describe('prefetchUI', () => {
const defaultProps = { publishableKey: 'test', children: '' };
it('accepts false to disable UI prefetching', () => {
expectTypeOf({ ...defaultProps, prefetchUI: false as const }).toMatchTypeOf<ClerkProviderProps>();
});
it('accepts undefined for default behavior', () => {
expectTypeOf({ ...defaultProps, prefetchUI: undefined }).toMatchTypeOf<ClerkProviderProps>();
});
it('accepts true to explicitly enable UI prefetching', () => {
expectTypeOf({ ...defaultProps, prefetchUI: true as const }).toMatchTypeOf<ClerkProviderProps>();
});
it('rejects non-boolean values', () => {
expectTypeOf({ ...defaultProps, prefetchUI: 'test' }).not.toMatchTypeOf<ClerkProviderProps>();
});
});
describe('appearance', () => {
const defaultProps = { publishableKey: 'test', children: '' };
it('exists as a prop', () => {
expectTypeOf({ ...defaultProps, appearance: {} }).toMatchTypeOf<ClerkProviderProps>();
});
it('includes variables, elements, options baseTheme', () => {
expectTypeOf({
...defaultProps,
appearance: { elements: {}, variables: {}, options: {}, thene: dark },
}).toMatchTypeOf<ClerkProviderProps>();
});
it('errors if a non existent key is provided', () => {
expectTypeOf({
...defaultProps,
appearance: { variables: { nonExistentKey: '' } },
}).not.toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
appearance: { options: { nonExistentKey: '' } },
}).not.toMatchTypeOf<ClerkProviderProps>();
// expectTypeOf({
// ...defaultProps,
// appearance: { elements: { nonExistentKey: '' } },
// }).not.toMatchTypeOf<ClerkProviderProps>();
});
it('is driven by the passed ui object type', () => {
expectTypeOf({
...defaultProps,
ui: customUi,
appearance: { options: { customFlag: true } },
}).toMatchTypeOf<GenericClerkProviderProps<typeof customUi>>();
expectTypeOf({
...defaultProps,
appearance: { options: { customFlag: true } },
}).not.toMatchTypeOf<ClerkProviderProps>();
});
});
describe('localization', () => {
const defaultProps = { publishableKey: 'test', children: '' };
it('exists as a prop', () => {
expectTypeOf({ ...defaultProps, localization: {} }).toMatchTypeOf<ClerkProviderProps>();
});
it('errors if a non existent key is provided', () => {
expectTypeOf({
...defaultProps,
localization: { a: 'test' },
}).not.toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: { signUp: { start: 'test' } },
}).not.toMatchTypeOf<ClerkProviderProps>();
});
it('works with all our prebuilt localizations', () => {
expectTypeOf({
...defaultProps,
localization: beBY,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: deDE,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: frFR,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: enUS,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: esES,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: itIT,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: ptBR,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: ruRU,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: svSE,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: trTR,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: jaJP,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: jaJP,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: csCZ,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: koKR,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: skSK,
}).toMatchTypeOf<ClerkProviderProps>();
expectTypeOf({
...defaultProps,
localization: ukUA,
}).toMatchTypeOf<ClerkProviderProps>();
});
it('is able to receive multiple localizations', () => {
expectTypeOf({
...defaultProps,
localization: { ...frFR, ...deDE },
}).toMatchTypeOf<ClerkProviderProps>();
});
});
describe('children', () => {
it('errors if no children', () => {
expectTypeOf({ publishableKey: 'test' }).not.toMatchTypeOf<ClerkProviderProps>();
});
});
describe('navigation options', () => {
it('expects both routerPush & routerReplace to pass', () => {
expectTypeOf({
publishableKey: 'test',
children: '',
routerPush: () => {},
routerReplace: () => {},
}).toMatchTypeOf<ClerkProviderProps>();
});
});
});