Skip to content

Commit e17b99e

Browse files
fix(gofeatureflag): Error when receiving an empty string errorCode (#973)
Signed-off-by: Thomas Poignant <[email protected]>
1 parent 6dcbdf7 commit e17b99e

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

libs/providers/go-feature-flag/src/lib/controller/goff-api.ts

+3
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,9 @@ export class GoffApiController {
207207
}
208208

209209
private convertErrorCode(errorCode: ErrorCode | undefined): ErrorCode | undefined {
210+
if ((errorCode as string) === '') {
211+
return undefined;
212+
}
210213
if (errorCode === undefined) {
211214
return undefined;
212215
}

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

+35
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,41 @@ describe('GoFeatureFlagProvider', () => {
259259
};
260260
expect(res).toEqual(want);
261261
});
262+
263+
it('fix version 0.7.2', async () => {
264+
const flagName = 'random-flag';
265+
const targetingKey = 'user-key';
266+
const dns = `${endpoint}v1/feature/${flagName}/eval`;
267+
268+
axiosMock.onPost(dns).reply(200, {
269+
trackEvents: true,
270+
variationType: 'True',
271+
failed: false,
272+
version: '',
273+
reason: 'TARGETING_MATCH',
274+
errorCode: '',
275+
value: true,
276+
cacheable: true,
277+
metadata: {
278+
description: 'this is a test',
279+
pr_link: 'https://github.com/thomaspoignant/go-feature-flag/pull/916',
280+
},
281+
});
282+
283+
const res = await cli.getBooleanDetails(flagName, false, { targetingKey });
284+
const want = {
285+
flagKey: flagName,
286+
reason: StandardResolutionReasons.TARGETING_MATCH,
287+
value: true,
288+
flagMetadata: {
289+
description: 'this is a test',
290+
pr_link: 'https://github.com/thomaspoignant/go-feature-flag/pull/916',
291+
},
292+
variant: 'True',
293+
};
294+
expect(res).toEqual(want);
295+
});
296+
262297
it('should resolve a valid boolean flag with SPLIT reason', async () => {
263298
const flagName = 'random-flag';
264299
const targetingKey = 'user-key';

0 commit comments

Comments
 (0)