forked from open-feature/js-sdk-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-feature-flag-provider.spec.ts
941 lines (868 loc) · 34.5 KB
/
go-feature-flag-provider.spec.ts
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
/**
* @jest-environment node
*/
import {
ErrorCode,
FlagNotFoundError,
OpenFeature,
ProviderStatus,
ResolutionDetails,
StandardResolutionReasons,
TypeMismatchError
} from '@openfeature/js-sdk';
import axios from 'axios';
import MockAdapter from 'axios-mock-adapter';
import {ProxyNotReady} from './errors/proxyNotReady';
import {ProxyTimeout} from './errors/proxyTimeout';
import {UnknownError} from './errors/unknownError';
import {Unauthorized} from './errors/unauthorized';
import {GoFeatureFlagProvider} from './go-feature-flag-provider';
import {GoFeatureFlagProxyResponse} from './model';
import TestLogger from './test-logger';
describe('GoFeatureFlagProvider', () => {
const endpoint = 'http://go-feature-flag-relay-proxy.local:1031/';
const dataCollectorEndpoint = `${endpoint}v1/data/collector`;
const axiosMock = new MockAdapter(axios);
const validBoolResponse: GoFeatureFlagProxyResponse<boolean> = {
value: true,
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
metadata: {
description: 'a description of the flag',
issue_number: 1,
},
cacheable: true,
};
let goff: GoFeatureFlagProvider;
const testLogger = new TestLogger();
afterEach(async () => {
await OpenFeature.close();
await axiosMock.reset();
await axiosMock.resetHistory();
testLogger.reset();
});
beforeEach(async () => {
await OpenFeature.close();
await axiosMock.reset();
await axiosMock.resetHistory();
goff = new GoFeatureFlagProvider({endpoint});
});
describe('common usecases and errors', () => {
it('should be an instance of GoFeatureFlagProvider', () => {
const goff = new GoFeatureFlagProvider({endpoint});
expect(goff).toBeInstanceOf(GoFeatureFlagProvider);
});
it('should throw an error if proxy not ready', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(404);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(ProxyNotReady);
expect(err.message).toEqual(
`impossible to call go-feature-flag relay proxy on ${dns}: Error: Request failed with status code 404`
);
});
});
it('should throw an error if the call timeout', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).timeout();
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(ProxyTimeout);
expect(err.message).toEqual(
`impossible to retrieve the ${flagName} on time: Error: timeout of 0ms exceeded`
);
});
});
describe('error codes in HTTP response', () => {
it('SDK error codes should return correct code', async () => {
const flagName = 'random-other-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
errorCode: ErrorCode.PARSE_ERROR,
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((result) => {
expect(result.errorCode).toEqual(ErrorCode.PARSE_ERROR)
})
});
it('unknown error codes should return GENERAL code', async () => {
const flagName = 'random-other-other-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
errorCode: 'NOT-AN-SDK-ERROR',
} as unknown as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((result) => {
expect(result.errorCode).toEqual(ErrorCode.GENERAL)
})
});
});
it('should throw an error if we fail in other network errors case', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).networkError();
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(UnknownError);
expect(err.message).toEqual(
`unknown error while retrieving flag ${flagName} for user ${targetingKey}: Error: Network Error`
);
});
});
it('should throw an error if the flag does not exists', async () => {
const flagName = 'unknown-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 'sdk-default',
variationType: 'trueVariation',
errorCode: ErrorCode.FLAG_NOT_FOUND,
} as GoFeatureFlagProxyResponse<string>);
await goff
.resolveStringEvaluation(flagName, 'sdk-default', {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(FlagNotFoundError);
expect(err.message).toEqual(
`Flag ${flagName} was not found in your configuration`
);
});
});
it('should throw an error if invalid api key is provided', async () => {
const flagName = 'unauthorized';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
const apiKey = 'invalid-api-key';
axiosMock.onPost(dns).reply(401, {} as GoFeatureFlagProxyResponse<string>);
const authenticatedGoff = new GoFeatureFlagProvider({endpoint, apiKey});
await authenticatedGoff
.resolveStringEvaluation(flagName, 'sdk-default', {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(Unauthorized);
expect(err.message).toEqual(
'invalid token used to contact GO Feature Flag relay proxy instance'
);
});
});
it('should be valid with an API key provided', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
const apiKey = 'valid-api-key';
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<boolean>);
const authenticatedGoff = new GoFeatureFlagProvider({endpoint, apiKey});
await authenticatedGoff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: true,
variant: 'trueVariation',
} as ResolutionDetails<boolean>);
});
});
it('provider should start not ready', async () => {
const goff = new GoFeatureFlagProvider({endpoint});
expect(goff.status).toEqual(ProviderStatus.NOT_READY);
});
it('provider should be ready after after setting the provider to Open Feature', async () => {
OpenFeature.setProvider( 'goff', goff);
expect(goff.status).toEqual(ProviderStatus.READY);
});
});
describe('resolveBooleanEvaluation', () => {
it('should throw an error if we expect a boolean and got another type', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 'true',
variationType: 'trueVariation',
} as GoFeatureFlagProxyResponse<string>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(TypeMismatchError);
expect(err.message).toEqual(
`Flag value ${flagName} had unexpected type string, expected boolean.`
);
});
});
it('should resolve a valid boolean flag with TARGETING_MATCH reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: true,
variant: 'trueVariation',
} as ResolutionDetails<boolean>);
});
});
it('should resolve a valid boolean flag with SPLIT reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
reason: StandardResolutionReasons.SPLIT,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.SPLIT,
value: true,
variant: 'trueVariation',
} as ResolutionDetails<boolean>);
});
});
it('should use boolean default value if the flag is disabled', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'defaultSdk',
reason: StandardResolutionReasons.DISABLED,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.DISABLED,
value: false,
} as ResolutionDetails<boolean>);
});
});
});
describe('resolveStringEvaluation', () => {
it('should throw an error if we expect a string and got another type', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveStringEvaluation(flagName, 'false', {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(TypeMismatchError);
expect(err.message).toEqual(
`Flag value ${flagName} had unexpected type boolean, expected string.`
);
});
});
it('should resolve a valid string flag with TARGETING_MATCH reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 'true value',
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<string>);
await goff
.resolveStringEvaluation(flagName, 'default', {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: 'true value',
variant: 'trueVariation',
} as ResolutionDetails<string>);
});
});
it('should resolve a valid string flag with SPLIT reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 'true value',
variationType: 'trueVariation',
reason: StandardResolutionReasons.SPLIT,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<string>);
await goff
.resolveStringEvaluation(flagName, 'default', {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.SPLIT,
value: 'true value',
variant: 'trueVariation',
} as ResolutionDetails<string>);
});
});
it('should use string default value if the flag is disabled', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 'defaultSdk',
variationType: 'defaultSdk',
reason: StandardResolutionReasons.DISABLED,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<string>);
await goff
.resolveStringEvaluation(flagName, 'randomDefaultValue', {
targetingKey,
})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.DISABLED,
value: 'randomDefaultValue',
} as ResolutionDetails<string>);
});
});
});
describe('resolveNumberEvaluation', () => {
it('should throw an error if we expect a number and got another type', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveNumberEvaluation(flagName, 14, {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(TypeMismatchError);
expect(err.message).toEqual(
`Flag value ${flagName} had unexpected type boolean, expected number.`
);
});
});
it('should resolve a valid number flag with TARGETING_MATCH reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 14,
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<number>);
await goff
.resolveNumberEvaluation(flagName, 17, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: 14,
variant: 'trueVariation',
} as ResolutionDetails<number>);
});
});
it('should resolve a valid number flag with SPLIT reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 14,
variationType: 'trueVariation',
reason: StandardResolutionReasons.SPLIT,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<number>);
await goff
.resolveNumberEvaluation(flagName, 17, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.SPLIT,
value: 14,
variant: 'trueVariation',
} as ResolutionDetails<number>);
});
});
it('should use number default value if the flag is disabled', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: 123,
variationType: 'defaultSdk',
reason: StandardResolutionReasons.DISABLED,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<number>);
await goff
.resolveNumberEvaluation(flagName, 124, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.DISABLED,
value: 124,
} as ResolutionDetails<number>);
});
});
});
describe('resolveObjectEvaluation', () => {
it('should throw an error if we expect a json array and got another type', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveObjectEvaluation(flagName, {}, {targetingKey})
.catch((err) => {
expect(err).toBeInstanceOf(TypeMismatchError);
expect(err.message).toEqual(
`Flag value ${flagName} had unexpected type boolean, expected object.`
);
});
});
it('should resolve a valid object flag with TARGETING_MATCH reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: {key: true},
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<object>);
await goff
.resolveObjectEvaluation(flagName, {key: 'default'}, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: {key: true},
variant: 'trueVariation',
} as ResolutionDetails<object>);
});
});
it('should resolve a valid object flag with SPLIT reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: {key: true},
variationType: 'trueVariation',
reason: StandardResolutionReasons.SPLIT,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<object>);
await goff
.resolveObjectEvaluation(flagName, {key: 'default'}, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.SPLIT,
value: {key: true},
variant: 'trueVariation',
} as ResolutionDetails<object>);
});
});
it('should use object default value if the flag is disabled', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: {key: 123},
variationType: 'defaultSdk',
reason: StandardResolutionReasons.DISABLED,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<object>);
await goff
.resolveObjectEvaluation(flagName, {key: 124}, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.DISABLED,
value: {key: 124},
} as ResolutionDetails<object>);
});
});
it('should resolve a valid json array flag with TARGETING_MATCH reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: ['1', '2'],
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<object>);
await goff
.resolveObjectEvaluation(flagName, {key: 'default'}, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: ['1', '2'],
variant: 'trueVariation',
} as ResolutionDetails<object>);
});
});
it('should resolve a valid json array flag with SPLIT reason', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: ['1', '2'],
variationType: 'trueVariation',
reason: StandardResolutionReasons.SPLIT,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<object>);
await goff
.resolveObjectEvaluation(flagName, {key: 'default'}, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.SPLIT,
value: ['1', '2'],
variant: 'trueVariation',
} as ResolutionDetails<object>);
});
});
it('should use json array default value if the flag is disabled', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: ['key', '123'],
variationType: 'defaultSdk',
reason: StandardResolutionReasons.DISABLED,
failed: false,
trackEvents: true,
version: '1.0.0',
} as GoFeatureFlagProxyResponse<object>);
await goff
.resolveObjectEvaluation(flagName, ['key', '124'], {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.DISABLED,
value: ['key', '124'],
} as ResolutionDetails<object>);
});
});
it('should return metadata associated to the flag', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, {
value: true,
variationType: 'trueVariation',
reason: StandardResolutionReasons.TARGETING_MATCH,
failed: false,
trackEvents: true,
version: '1.0.0',
metadata: {
description: 'a description of the flag',
issue_number: 1,
},
cacheable: true,
} as GoFeatureFlagProxyResponse<boolean>);
await goff
.resolveBooleanEvaluation(flagName, false, {targetingKey})
.then((res) => {
expect(res).toEqual({
reason: StandardResolutionReasons.TARGETING_MATCH,
value: true,
variant: 'trueVariation',
flagMetadata: {
description: 'a description of the flag',
issue_number: 1,
}
} as ResolutionDetails<boolean>);
});
});
});
describe('cache testing', () => {
it('should use the cache if we evaluate 2 times the same flag', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheTTL: 3000,
flagCacheSize: 1,
disableDataCollection: true,
})
OpenFeature.setProvider(goff);
const cli = OpenFeature.getClient();
const got1 = await cli.getBooleanDetails(flagName, false, {targetingKey});
const got2 = await cli.getBooleanDetails(flagName, false, {targetingKey});
expect(got1.reason).toEqual(StandardResolutionReasons.TARGETING_MATCH);
expect(got2.reason).toEqual(StandardResolutionReasons.CACHED);
expect(axiosMock.history['post'].length).toBe(1);
});
it('should use not use the cache if we evaluate 2 times the same flag if cache is disabled', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
disableCache: true,
disableDataCollection: true,
})
OpenFeature.setProvider(goff);
const cli = OpenFeature.getClient();
const got1 = await cli.getBooleanDetails(flagName, false, {targetingKey});
const got2 = await cli.getBooleanDetails(flagName, false, {targetingKey});
expect(got1).toEqual(got2);
expect(axiosMock.history['post'].length).toBe(2);
});
it('should not retrieve from the cache if max size cache is reached', async () => {
const flagName1 = 'random-flag';
const flagName2 = 'random-flag-1';
const targetingKey = 'user-key';
const dns1 = `${endpoint}v1/feature/${flagName1}/eval`;
const dns2 = `${endpoint}v1/feature/${flagName2}/eval`;
axiosMock.onPost(dns1).reply(200, validBoolResponse);
axiosMock.onPost(dns2).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheSize: 1,
disableDataCollection: true,
})
OpenFeature.setProvider(goff);
const cli = OpenFeature.getClient();
await cli.getBooleanDetails(flagName1, false, {targetingKey});
await cli.getBooleanDetails(flagName2, false, {targetingKey});
await cli.getBooleanDetails(flagName1, false, {targetingKey});
expect(axiosMock.history['post'].length).toBe(3);
});
it('should not store in the cache if cacheable is false', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns1 = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns1).reply(200, {...validBoolResponse, cacheable: false});
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheSize: 1,
disableDataCollection: true,
})
OpenFeature.setProvider(goff);
const cli = OpenFeature.getClient();
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
expect(axiosMock.history['post'].length).toBe(2);
});
it('should not retrieve from the cache it the TTL is reached', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns1 = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns1).reply(200, {...validBoolResponse});
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheSize: 1,
disableDataCollection: true,
flagCacheTTL: 200,
})
OpenFeature.setProvider(goff);
const cli = OpenFeature.getClient();
await cli.getBooleanDetails(flagName, false, {targetingKey});
await new Promise((r) => setTimeout(r, 300));
await cli.getBooleanDetails(flagName, false, {targetingKey});
expect(axiosMock.history['post'].length).toBe(2);
});
it('should not retrieve from the cache if we have 2 different flag', async () => {
const flagName1 = 'random-flag';
const flagName2 = 'random-flag-1';
const targetingKey = 'user-key';
const dns1 = `${endpoint}v1/feature/${flagName1}/eval`;
const dns2 = `${endpoint}v1/feature/${flagName2}/eval`;
axiosMock.onPost(dns1).reply(200, validBoolResponse);
axiosMock.onPost(dns2).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheSize: 1,
disableDataCollection: true,
})
OpenFeature.setProvider(goff);
const cli = OpenFeature.getClient();
await cli.getBooleanDetails(flagName1, false, {targetingKey});
await cli.getBooleanDetails(flagName2, false, {targetingKey});
expect(axiosMock.history['post'].length).toBe(2);
});
});
describe('data collector testing', () => {
it('should call the data collector when closing Open Feature', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheTTL: 3000,
flagCacheSize: 100,
dataFlushInterval: 1000, // in milliseconds
})
const providerName = expect.getState().currentTestName || 'test';
OpenFeature.setProvider(providerName, goff);
const cli = OpenFeature.getClient(providerName);
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
await OpenFeature.close()
const collectorCalls = axiosMock.history['post'].filter(i => i.url === dataCollectorEndpoint);
expect(collectorCalls.length).toBe(1);
const got = JSON.parse(collectorCalls[0].data);
expect(isNaN(got.events[0].creationDate)).toBe(false);
const want = {
events: [{
contextKind: 'user',
kind: 'feature',
creationDate: got.events[0].creationDate,
default: false,
key: 'random-flag',
value: true,
variation: 'trueVariation',
userKey: 'user-key'
}], meta: {provider: 'open-feature-js-sdk'}
};
expect(want).toEqual(got);
});
it('should call the data collector when waiting more than the dataFlushInterval', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheTTL: 3000,
flagCacheSize: 100,
dataFlushInterval: 100, // in milliseconds
})
const providerName = expect.getState().currentTestName || 'test';
OpenFeature.setProvider(providerName, goff);
const cli = OpenFeature.getClient(providerName);
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
await new Promise((r) => setTimeout(r, 130));
const collectorCalls = axiosMock.history['post'].filter(i => i.url === dataCollectorEndpoint);
expect(collectorCalls.length).toBe(1);
});
it('should call the data collector multiple time while waiting dataFlushInterval time', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheTTL: 3000,
flagCacheSize: 100,
dataFlushInterval: 100, // in milliseconds
})
const providerName = expect.getState().currentTestName || 'test';
OpenFeature.setProvider(providerName, goff);
const cli = OpenFeature.getClient(providerName);
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
await new Promise((r) => setTimeout(r, 130));
const collectorCalls = axiosMock.history['post'].filter(i => i.url === dataCollectorEndpoint);
expect(collectorCalls.length).toBe(1);
axiosMock.resetHistory();
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
await new Promise((r) => setTimeout(r, 130));
const collectorCalls2 = axiosMock.history['post'].filter(i => i.url === dataCollectorEndpoint);
expect(collectorCalls2.length).toBe(1);
});
it('should not call the data collector before the dataFlushInterval', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheTTL: 3000,
flagCacheSize: 100,
dataFlushInterval: 200, // in milliseconds
})
const providerName = expect.getState().currentTestName || 'test';
OpenFeature.setProvider(providerName, goff);
const cli = OpenFeature.getClient(providerName);
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
await new Promise((r) => setTimeout(r, 130));
const collectorCalls = axiosMock.history['post'].filter(i => i.url === dataCollectorEndpoint);
expect(collectorCalls.length).toBe(0);
});
it('should have a log when data collector is not available', async () => {
const flagName = 'random-flag';
const targetingKey = 'user-key';
const dns = `${endpoint}v1/feature/${flagName}/eval`;
axiosMock.onPost(dns).reply(200, validBoolResponse);
axiosMock.onPost(dataCollectorEndpoint).reply(500, {});
const goff = new GoFeatureFlagProvider({
endpoint,
flagCacheTTL: 3000,
flagCacheSize: 100,
dataFlushInterval: 2000, // in milliseconds
}, testLogger)
const providerName = expect.getState().currentTestName || 'test';
OpenFeature.setProvider(providerName, goff);
const cli = OpenFeature.getClient(providerName);
await cli.getBooleanDetails(flagName, false, {targetingKey});
await cli.getBooleanDetails(flagName, false, {targetingKey});
await OpenFeature.close();
expect(testLogger.inMemoryLogger['error'].length).toBe(1);
expect(testLogger.inMemoryLogger['error']).toContain('impossible to send the data to the collector: Error: Request failed with status code 500')
});
});
});