This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathLDClient-evaluation-all-flags-test.js
226 lines (215 loc) · 6.97 KB
/
LDClient-evaluation-all-flags-test.js
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
const { TestData } = require('../integrations');
const stubs = require('./stubs');
describe('LDClient.allFlagsState', () => {
const defaultUser = { key: 'user' };
it('captures flag state', async () => {
const value1 = 'value1', value2 = 'value2', value3 = 'value3';
const flag1 = {
key: 'key1',
version: 100,
on: false,
offVariation: 0,
variations: [ value1 ]
};
const flag2 = {
key: 'key2',
version: 200,
on: false,
offVariation: 1,
variations: [ 'x', value2 ],
trackEvents: true,
debugEventsUntilDate: 1000
};
// flag3 has an experiment (evaluation is a fallthrough and TrackEventsFallthrough is on)
const flag3 = {
key: 'key3',
version: 300,
on: true,
fallthrough: { variation: 1 },
variations: [ 'x', value3 ],
trackEvents: false,
trackEventsFallthrough: true
};
const td = TestData();
td.usePreconfiguredFlag(flag1);
td.usePreconfiguredFlag(flag2);
td.usePreconfiguredFlag(flag3);
const client = stubs.createClient({ updateProcessor: td });
await client.waitForInitialization();
const state = await client.allFlagsState(defaultUser);
expect(state.valid).toEqual(true);
expect(state.allValues()).toEqual({ [flag1.key]: value1, [flag2.key]: value2, [flag3.key]: value3 });
expect(state.getFlagValue(flag1.key)).toEqual(value1);
expect(state.toJSON()).toEqual({
[flag1.key]: value1,
[flag2.key]: value2,
[flag3.key]: value3,
$flagsState: {
[flag1.key]: {
version: flag1.version,
variation: 0,
},
[flag2.key]: {
version: flag2.version,
variation: 1,
trackEvents: true,
debugEventsUntilDate: 1000
},
[flag3.key]: {
version: flag3.version,
variation: 1,
reason: { kind: 'FALLTHROUGH' },
trackEvents: true,
trackReason: true
}
},
$valid: true
});
});
it('can filter for only client-side flags', async () => {
const td = TestData();
td.usePreconfiguredFlag({ key: 'server-side-1', on: false, offVariation: 0, variations: ['a'], clientSide: false });
td.usePreconfiguredFlag({ key: 'server-side-2', on: false, offVariation: 0, variations: ['b'], clientSide: false });
td.usePreconfiguredFlag({ key: 'client-side-1', on: false, offVariation: 0, variations: ['value1'], clientSide: true });
td.usePreconfiguredFlag({ key: 'client-side-2', on: false, offVariation: 0, variations: ['value2'], clientSide: true });
const client = stubs.createClient({ updateProcessor: td });
await client.waitForInitialization();
const state = await client.allFlagsState(defaultUser, { clientSideOnly: true });
expect(state.valid).toEqual(true);
expect(state.allValues()).toEqual({ 'client-side-1': 'value1', 'client-side-2': 'value2' });
});
it('can include reasons', async () => {
const td = TestData();
td.usePreconfiguredFlag({
key: 'feature',
version: 100,
offVariation: 1,
variations: ['a', 'b'],
trackEvents: true,
debugEventsUntilDate: 1000
});
const client = stubs.createClient({ updateProcessor: td });
await client.waitForInitialization();
const state = await client.allFlagsState(defaultUser, { withReasons: true });
expect(state.valid).toEqual(true);
expect(state.allValues()).toEqual({feature: 'b'});
expect(state.getFlagValue('feature')).toEqual('b');
expect(state.toJSON()).toEqual({
feature: 'b',
$flagsState: {
feature: {
version: 100,
variation: 1,
reason: { kind: 'OFF' },
trackEvents: true,
debugEventsUntilDate: 1000
}
},
$valid: true
});
});
it('can omit details for untracked flags', async () => {
const flag1 = {
key: 'flag1',
version: 100,
offVariation: 0,
variations: ['value1']
};
const flag2 = {
key: 'flag2',
version: 200,
offVariation: 0,
variations: ['value2'],
trackEvents: true
};
const flag3 = {
key: 'flag3',
version: 300,
offVariation: 0,
variations: ['value3'],
debugEventsUntilDate: 1000
};
const td = TestData();
td.usePreconfiguredFlag(flag1);
td.usePreconfiguredFlag(flag2);
td.usePreconfiguredFlag(flag3);
const client = stubs.createClient({ updateProcessor: td });
await client.waitForInitialization();
const state = await client.allFlagsState(defaultUser, { withReasons: true, detailsOnlyForTrackedFlags: true });
expect(state.valid).toEqual(true);
expect(state.allValues()).toEqual({flag1: 'value1', flag2: 'value2', flag3: 'value3'});
expect(state.getFlagValue('flag1')).toEqual('value1');
expect(state.toJSON()).toEqual({
flag1: 'value1',
flag2: 'value2',
flag3: 'value3',
$flagsState: {
flag1: {
variation: 0
},
flag2: {
version: 200,
variation: 0,
reason: { kind: 'OFF' },
trackEvents: true
},
flag3: {
version: 300,
variation: 0,
reason: { kind: 'OFF' },
debugEventsUntilDate: 1000
}
},
$valid: true
});
});
it('returns empty state in offline mode and logs a message', async () => {
const flag = {
key: 'flagkey',
on: false,
offVariation: null
};
const td = TestData();
td.usePreconfiguredFlag(flag);
const logger = stubs.stubLogger();
const client = stubs.createClient({ offline: true, logger: logger, updateProcessor: td });
await client.waitForInitialization();
const state = await client.allFlagsState(defaultUser);
expect(state.valid).toEqual(false);
expect(state.allValues()).toEqual({});
expect(logger.info).toHaveBeenCalledTimes(1);
});
it('does not overflow the call stack when evaluating a huge number of flags', async () => {
const flagCount = 5000;
const td = TestData();
for (let i = 0; i < flagCount; i++) {
td.usePreconfiguredFlag({
key: 'feature' + i,
version: 1,
on: false
});
}
const client = stubs.createClient({ updateProcessor: td });
await client.waitForInitialization();
const state = await client.allFlagsState(defaultUser);
expect(Object.keys(state.allValues()).length).toEqual(flagCount);
});
it('can use a callback instead of a Promise', done => {
const client = stubs.createClient({ offline: true }, { });
client.on('ready', () => {
client.allFlagsState(defaultUser, {}, (err, state) => {
expect(state.valid).toEqual(false);
done();
});
});
});
it('can omit options parameter with callback', done => {
const client = stubs.createClient({ offline: true }, { });
client.on('ready', () => {
client.allFlagsState(defaultUser, (err, state) => {
expect(state.valid).toEqual(false);
done();
});
});
});
});