forked from launchdarkly/react-client-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.test.tsx
398 lines (352 loc) · 14.6 KB
/
provider.test.tsx
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
jest.mock('./initLDClient', () => jest.fn());
jest.mock('./context', () => ({ Provider: 'Provider' }));
import * as React from 'react';
import { create } from 'react-test-renderer';
import { shallow } from 'enzyme';
import type { LDClient } from 'launchdarkly-js-client-sdk';
import { LDFlagChangeset, LDFlagSet, LDOptions, LDUser } from 'launchdarkly-js-client-sdk';
import initLDClient from './initLDClient';
import { LDReactOptions, EnhancedComponent, defaultReactOptions, ProviderConfig } from './types';
import { LDContext as HocState } from './context';
import LDProvider from './provider';
const clientSideID = 'deadbeef';
const App = () => <div>My App</div>;
const mockInitLDClient = initLDClient as jest.Mock;
const mockFlags = { testFlag: true, anotherTestFlag: true };
const mockLDClient = {
on: jest.fn((e: string, cb: () => void) => {
cb();
}),
allFlags: jest.fn().mockReturnValue({}),
};
describe('LDProvider', () => {
beforeEach(() => {
mockInitLDClient.mockImplementation(() => ({
flags: mockFlags,
ldClient: mockLDClient,
}));
});
afterEach(() => {
jest.resetAllMocks();
});
test('render app', () => {
const props: ProviderConfig = { clientSideID };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = create(LaunchDarklyApp);
expect(component).toMatchSnapshot();
});
test('ld client is initialised correctly', async () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = { bootstrap: {} };
const props: ProviderConfig = { clientSideID, user, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
await instance.componentDidMount();
expect(mockInitLDClient).toHaveBeenCalledWith(clientSideID, user, defaultReactOptions, options, undefined);
});
test('ld client is used if passed in', async () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = { bootstrap: {} };
const ldClient = (await initLDClient(clientSideID, user, defaultReactOptions, options, undefined)).ldClient;
mockInitLDClient.mockClear();
const props: ProviderConfig = { clientSideID, ldClient };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
await instance.componentDidMount();
expect(mockInitLDClient).not.toHaveBeenCalled();
});
test('ld client is used if passed in as promise', async () => {
const user1: LDUser = { key: 'yus', name: 'yus ng' };
const user2: LDUser = { key: 'launch', name: 'darkly' };
const options: LDOptions = { bootstrap: {} };
const ldClient: Promise<LDClient> = new Promise(async resolve =>
resolve((await initLDClient(clientSideID, user1, defaultReactOptions, options, undefined)).ldClient),
);
const props: ProviderConfig = { clientSideID, ldClient, user: user2 };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
await instance.componentDidMount();
expect(mockInitLDClient).toBeCalledTimes(1);
expect(mockInitLDClient).toHaveBeenCalledWith(clientSideID, user1, defaultReactOptions, options, undefined);
});
test('ld client is created if passed in promise resolves as undefined', async () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = { bootstrap: {} };
const ldClient: Promise<undefined> = new Promise(async resolve =>
resolve(undefined),
);
const props: ProviderConfig = { clientSideID, ldClient, user, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
await instance.componentDidMount();
expect(mockInitLDClient).toHaveBeenCalledWith(clientSideID, user, defaultReactOptions, options, undefined);
});
test('ldClient bootstraps with empty flags', () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = {
bootstrap: {},
};
const props: ProviderConfig = { clientSideID, user, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = shallow(LaunchDarklyApp, { disableLifecycleMethods: true });
const initialState = component.state() as HocState;
expect(initialState.flags).toEqual({});
});
test('ld client is bootstrapped correctly and transforms keys to camel case', () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = {
bootstrap: {
'test-flag': true,
'another-test-flag': false,
$flagsState: {
'test-flag': { version: 125, variation: 0, trackEvents: true },
'another-test-flag': { version: 18, variation: 1 },
},
$valid: true,
},
};
const props: ProviderConfig = { clientSideID, user, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = shallow(LaunchDarklyApp, { disableLifecycleMethods: true });
const initialState = component.state() as HocState;
expect(mockInitLDClient).not.toHaveBeenCalled();
expect(initialState.flags).toEqual({ testFlag: true, anotherTestFlag: false });
});
test('ld client should not transform keys to camel case if option is disabled', () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = {
bootstrap: {
'test-flag': true,
'another-test-flag': false,
},
};
const reactOptions: LDReactOptions = {
useCamelCaseFlagKeys: false,
};
const props: ProviderConfig = { clientSideID, user, options, reactOptions };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = shallow(LaunchDarklyApp, { disableLifecycleMethods: true });
const initialState = component.state() as HocState;
expect(mockInitLDClient).not.toHaveBeenCalled();
expect(initialState.flags).toEqual({ 'test-flag': true, 'another-test-flag': false });
});
test('ld client should transform keys to camel case if transform option is absent', () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = {
bootstrap: {
'test-flag': true,
'another-test-flag': false,
},
};
const reactOptions: LDReactOptions = {};
const props: ProviderConfig = { clientSideID, user, options, reactOptions };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = shallow(LaunchDarklyApp, { disableLifecycleMethods: true });
const initialState = component.state() as HocState;
expect(mockInitLDClient).not.toHaveBeenCalled();
expect(initialState.flags).toEqual({ testFlag: true, anotherTestFlag: false });
});
test('ld client should transform keys to camel case if react options object is absent', () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = {
bootstrap: {
'test-flag': true,
'another-test-flag': false,
},
};
const props: ProviderConfig = { clientSideID, user, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = shallow(LaunchDarklyApp, { disableLifecycleMethods: true });
const initialState = component.state() as HocState;
expect(mockInitLDClient).not.toHaveBeenCalled();
expect(initialState.flags).toEqual({ testFlag: true, anotherTestFlag: false });
});
test('state.flags should be initialised to empty when bootstrapping from localStorage', () => {
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = {
bootstrap: 'localStorage',
};
const props: ProviderConfig = { clientSideID, user, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const component = shallow(LaunchDarklyApp, { disableLifecycleMethods: true });
const initialState = component.state() as HocState;
expect(mockInitLDClient).not.toHaveBeenCalled();
expect(initialState.flags).toEqual({});
});
test('ld client is initialised correctly with target flags', async () => {
mockInitLDClient.mockImplementation(() => ({
flags: { devTestFlag: true, launchDoggly: true },
ldClient: mockLDClient,
}));
const user: LDUser = { key: 'yus', name: 'yus ng' };
const options: LDOptions = { bootstrap: {} };
const flags = { 'dev-test-flag': false, 'launch-doggly': false };
const props: ProviderConfig = { clientSideID, user, options, flags };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
instance.setState = jest.fn();
await instance.componentDidMount();
expect(mockInitLDClient).toHaveBeenCalledWith(clientSideID, user, defaultReactOptions, options, flags);
expect(instance.setState).toHaveBeenCalledWith({
flags: { devTestFlag: true, launchDoggly: true },
ldClient: mockLDClient,
});
});
test('flags and ldClient are saved in state on mount', async () => {
const props: ProviderConfig = { clientSideID };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
instance.setState = jest.fn();
await instance.componentDidMount();
expect(instance.setState).toHaveBeenCalledWith({ flags: mockFlags, ldClient: mockLDClient });
});
test('subscribeToChanges is called on mount', async () => {
const props: ProviderConfig = { clientSideID };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
instance.subscribeToChanges = jest.fn();
await instance.componentDidMount();
expect(instance.subscribeToChanges).toHaveBeenCalled();
});
test('subscribe to changes with camelCase', async () => {
mockLDClient.on.mockImplementation((e: string, cb: (c: LDFlagChangeset) => void) => {
cb({ 'test-flag': { current: false, previous: true } });
});
const props: ProviderConfig = { clientSideID };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
const mockSetState = jest.spyOn(instance, 'setState');
await instance.componentDidMount();
const callback = mockSetState.mock.calls[1][0] as (flags: LDFlagSet) => LDFlagSet;
const newState = callback({ flags: mockFlags });
expect(mockLDClient.on).toHaveBeenCalledWith('change', expect.any(Function));
expect(newState).toEqual({ flags: { anotherTestFlag: true, testFlag: false } });
});
test('subscribe to changes with kebab-case', async () => {
mockLDClient.on.mockImplementation((e: string, cb: (c: LDFlagChangeset) => void) => {
cb({ 'another-test-flag': { current: false, previous: true }, 'test-flag': { current: false, previous: true } });
});
const props: ProviderConfig = { clientSideID, reactOptions: { useCamelCaseFlagKeys: false } };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
const mockSetState = jest.spyOn(instance, 'setState');
await instance.componentDidMount();
const callback = mockSetState.mock.calls[1][0] as (flags: LDFlagSet) => LDFlagSet;
const newState = callback({});
expect(mockLDClient.on).toHaveBeenCalledWith('change', expect.any(Function));
expect(newState).toEqual({ flags: { 'another-test-flag': false, 'test-flag': false } });
});
test(`if props.deferInitialization is true, ld client will only initialize once props.user is defined`, async () => {
const options: LDOptions = { bootstrap: {} };
const props: ProviderConfig = { clientSideID, deferInitialization: true, options };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const renderer = create(LaunchDarklyApp);
const instance = renderer.root.findByType(LDProvider).instance as EnhancedComponent;
await instance.componentDidMount();
expect(mockInitLDClient).toHaveBeenCalledTimes(0);
const user: LDUser = { key: 'yus', name: 'yus ng' };
const newProps = { ...props, user };
const UpdatedLaunchDarklyApp = (
<LDProvider {...newProps}>
<App />
</LDProvider>
);
renderer.update(UpdatedLaunchDarklyApp);
if (instance.componentDidUpdate) {
await instance.componentDidUpdate(props);
}
expect(mockInitLDClient).toHaveBeenCalledWith(clientSideID, user, defaultReactOptions, options, undefined);
});
test('only updates to subscribed flags are pushed to the Provider', async () => {
mockInitLDClient.mockImplementation(() => ({
flags: { testFlag: 2 },
ldClient: mockLDClient,
}));
mockLDClient.on.mockImplementation((e: string, cb: (c: LDFlagChangeset) => void) => {
cb({ 'test-flag': { current: 3, previous: 2 }, 'another-test-flag': { current: false, previous: true } });
});
const options: LDOptions = {};
const user: LDUser = { key: 'yus', name: 'yus ng' };
const subscribedFlags = { 'test-flag': 1 };
const props: ProviderConfig = { clientSideID, user, options, flags: subscribedFlags };
const LaunchDarklyApp = (
<LDProvider {...props}>
<App />
</LDProvider>
);
const instance = create(LaunchDarklyApp).root.findByType(LDProvider).instance as EnhancedComponent;
const mockSetState = jest.spyOn(instance, 'setState');
await instance.componentDidMount();
const callback = mockSetState.mock.calls[1][0] as (flags: LDFlagSet) => LDFlagSet;
const newState = callback({});
expect(newState).toEqual({ flags: { testFlag: 3 } });
});
});