Skip to content

Commit e11269d

Browse files
fix: [GO Feature Flag server] Implement ProviderStatus (#493)
Signed-off-by: Thomas Poignant <[email protected]> Signed-off-by: Thomas Poignant <[email protected]> Co-authored-by: Michael Beemer <[email protected]>
1 parent 6f0fafe commit e11269d

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.spec.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
ErrorCode,
66
FlagNotFoundError,
77
OpenFeature,
8+
ProviderStatus,
89
ResolutionDetails,
910
StandardResolutionReasons,
1011
TypeMismatchError
@@ -59,7 +60,6 @@ describe('GoFeatureFlagProvider', () => {
5960
const goff = new GoFeatureFlagProvider({endpoint});
6061
expect(goff).toBeInstanceOf(GoFeatureFlagProvider);
6162
});
62-
6363
it('should throw an error if proxy not ready', async () => {
6464
const flagName = 'random-flag';
6565
const targetingKey = 'user-key';
@@ -74,7 +74,6 @@ describe('GoFeatureFlagProvider', () => {
7474
);
7575
});
7676
});
77-
7877
it('should throw an error if the call timeout', async () => {
7978
const flagName = 'random-flag';
8079
const targetingKey = 'user-key';
@@ -89,7 +88,6 @@ describe('GoFeatureFlagProvider', () => {
8988
);
9089
});
9190
});
92-
9391
describe('error codes in HTTP response', () => {
9492
it('SDK error codes should return correct code', async () => {
9593
const flagName = 'random-other-flag';
@@ -106,7 +104,6 @@ describe('GoFeatureFlagProvider', () => {
106104
expect(result.errorCode).toEqual(ErrorCode.PARSE_ERROR)
107105
})
108106
});
109-
110107
it('unknown error codes should return GENERAL code', async () => {
111108
const flagName = 'random-other-other-flag';
112109
const targetingKey = 'user-key';
@@ -123,7 +120,6 @@ describe('GoFeatureFlagProvider', () => {
123120
})
124121
});
125122
});
126-
127123
it('should throw an error if we fail in other network errors case', async () => {
128124
const flagName = 'random-flag';
129125
const targetingKey = 'user-key';
@@ -176,7 +172,6 @@ describe('GoFeatureFlagProvider', () => {
176172
);
177173
});
178174
});
179-
180175
it('should be valid with an API key provided', async () => {
181176
const flagName = 'random-flag';
182177
const targetingKey = 'user-key';
@@ -203,6 +198,14 @@ describe('GoFeatureFlagProvider', () => {
203198
} as ResolutionDetails<boolean>);
204199
});
205200
});
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+
});
206209
});
207210

208211
describe('resolveBooleanEvaluation', () => {
@@ -298,7 +301,6 @@ describe('GoFeatureFlagProvider', () => {
298301
});
299302
});
300303
});
301-
302304
describe('resolveStringEvaluation', () => {
303305
it('should throw an error if we expect a string and got another type', async () => {
304306
const flagName = 'random-flag';
@@ -393,7 +395,6 @@ describe('GoFeatureFlagProvider', () => {
393395
});
394396
});
395397
});
396-
397398
describe('resolveNumberEvaluation', () => {
398399
it('should throw an error if we expect a number and got another type', async () => {
399400
const flagName = 'random-flag';
@@ -486,7 +487,6 @@ describe('GoFeatureFlagProvider', () => {
486487
});
487488
});
488489
});
489-
490490
describe('resolveObjectEvaluation', () => {
491491
it('should throw an error if we expect a json array and got another type', async () => {
492492
const flagName = 'random-flag';

libs/providers/go-feature-flag/src/lib/go-feature-flag-provider.ts

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
JsonValue,
66
Logger,
77
Provider,
8+
ProviderStatus,
89
ResolutionDetails,
910
StandardResolutionReasons,
1011
TypeMismatchError,
@@ -68,6 +69,8 @@ export class GoFeatureFlagProvider implements Provider {
6869
// logger is the Open Feature logger to use
6970
private logger?: Logger;
7071

72+
private _status: ProviderStatus = ProviderStatus.NOT_READY;
73+
7174
constructor(options: GoFeatureFlagProviderOptions, logger?: Logger) {
7275
this.timeout = options.timeout || 0; // default is 0 = no timeout
7376
this.endpoint = options.endpoint;
@@ -96,6 +99,11 @@ export class GoFeatureFlagProvider implements Provider {
9699
this.bgScheduler = setInterval(async () => await this.callGoffDataCollection(), this.dataFlushInterval)
97100
this.dataCollectorBuffer = []
98101
}
102+
this._status = ProviderStatus.READY;
103+
}
104+
105+
get status(){
106+
return this._status;
99107
}
100108

101109
/**

0 commit comments

Comments
 (0)