5
5
ErrorCode ,
6
6
FlagNotFoundError ,
7
7
OpenFeature ,
8
+ ProviderStatus ,
8
9
ResolutionDetails ,
9
10
StandardResolutionReasons ,
10
11
TypeMismatchError
@@ -59,7 +60,6 @@ describe('GoFeatureFlagProvider', () => {
59
60
const goff = new GoFeatureFlagProvider ( { endpoint} ) ;
60
61
expect ( goff ) . toBeInstanceOf ( GoFeatureFlagProvider ) ;
61
62
} ) ;
62
-
63
63
it ( 'should throw an error if proxy not ready' , async ( ) => {
64
64
const flagName = 'random-flag' ;
65
65
const targetingKey = 'user-key' ;
@@ -74,7 +74,6 @@ describe('GoFeatureFlagProvider', () => {
74
74
) ;
75
75
} ) ;
76
76
} ) ;
77
-
78
77
it ( 'should throw an error if the call timeout' , async ( ) => {
79
78
const flagName = 'random-flag' ;
80
79
const targetingKey = 'user-key' ;
@@ -89,7 +88,6 @@ describe('GoFeatureFlagProvider', () => {
89
88
) ;
90
89
} ) ;
91
90
} ) ;
92
-
93
91
describe ( 'error codes in HTTP response' , ( ) => {
94
92
it ( 'SDK error codes should return correct code' , async ( ) => {
95
93
const flagName = 'random-other-flag' ;
@@ -106,7 +104,6 @@ describe('GoFeatureFlagProvider', () => {
106
104
expect ( result . errorCode ) . toEqual ( ErrorCode . PARSE_ERROR )
107
105
} )
108
106
} ) ;
109
-
110
107
it ( 'unknown error codes should return GENERAL code' , async ( ) => {
111
108
const flagName = 'random-other-other-flag' ;
112
109
const targetingKey = 'user-key' ;
@@ -123,7 +120,6 @@ describe('GoFeatureFlagProvider', () => {
123
120
} )
124
121
} ) ;
125
122
} ) ;
126
-
127
123
it ( 'should throw an error if we fail in other network errors case' , async ( ) => {
128
124
const flagName = 'random-flag' ;
129
125
const targetingKey = 'user-key' ;
@@ -176,7 +172,6 @@ describe('GoFeatureFlagProvider', () => {
176
172
) ;
177
173
} ) ;
178
174
} ) ;
179
-
180
175
it ( 'should be valid with an API key provided' , async ( ) => {
181
176
const flagName = 'random-flag' ;
182
177
const targetingKey = 'user-key' ;
@@ -203,6 +198,14 @@ describe('GoFeatureFlagProvider', () => {
203
198
} as ResolutionDetails < boolean > ) ;
204
199
} ) ;
205
200
} ) ;
201
+ it ( 'provider should start not ready' , async ( ) => {
202
+ const goff = new GoFeatureFlagProvider ( { endpoint} ) ;
203
+ expect ( goff . status ) . toEqual ( ProviderStatus . NOT_READY ) ;
204
+ } ) ;
205
+ it ( 'provider should be ready after after setting the provider to Open Feature' , async ( ) => {
206
+ OpenFeature . setProvider ( 'goff' , goff ) ;
207
+ expect ( goff . status ) . toEqual ( ProviderStatus . READY ) ;
208
+ } ) ;
206
209
} ) ;
207
210
208
211
describe ( 'resolveBooleanEvaluation' , ( ) => {
@@ -298,7 +301,6 @@ describe('GoFeatureFlagProvider', () => {
298
301
} ) ;
299
302
} ) ;
300
303
} ) ;
301
-
302
304
describe ( 'resolveStringEvaluation' , ( ) => {
303
305
it ( 'should throw an error if we expect a string and got another type' , async ( ) => {
304
306
const flagName = 'random-flag' ;
@@ -393,7 +395,6 @@ describe('GoFeatureFlagProvider', () => {
393
395
} ) ;
394
396
} ) ;
395
397
} ) ;
396
-
397
398
describe ( 'resolveNumberEvaluation' , ( ) => {
398
399
it ( 'should throw an error if we expect a number and got another type' , async ( ) => {
399
400
const flagName = 'random-flag' ;
@@ -486,7 +487,6 @@ describe('GoFeatureFlagProvider', () => {
486
487
} ) ;
487
488
} ) ;
488
489
} ) ;
489
-
490
490
describe ( 'resolveObjectEvaluation' , ( ) => {
491
491
it ( 'should throw an error if we expect a json array and got another type' , async ( ) => {
492
492
const flagName = 'random-flag' ;
0 commit comments