-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathtest-app.ts
104 lines (91 loc) · 3.37 KB
/
test-app.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
import { Controller, Get, Injectable, UseInterceptors } from '@nestjs/common';
import type { Observable} from 'rxjs';
import { map } from 'rxjs';
import { BooleanFeatureFlag, ObjectFeatureFlag, NumberFeatureFlag, OpenFeatureClient, StringFeatureFlag } from '../src';
import type { Client, EvaluationDetails, FlagValue } from '@openfeature/server-sdk';
import { EvaluationContextInterceptor } from '../src';
@Injectable()
export class OpenFeatureTestService {
constructor(
@OpenFeatureClient() public defaultClient: Client,
@OpenFeatureClient({ domain: 'domainScopedClient' }) public domainScopedClient: Client,
) {}
public async serviceMethod(flag: EvaluationDetails<FlagValue>) {
return flag.value;
}
public async serviceMethodWithDynamicContext(flagKey: string): Promise<boolean> {
return this.defaultClient.getBooleanValue(flagKey, false);
}
}
@Controller()
export class OpenFeatureController {
constructor(private testService: OpenFeatureTestService) {}
@Get('/welcome')
public async welcome(
@BooleanFeatureFlag({ flagKey: 'testBooleanFlag', defaultValue: false })
feature: Observable<EvaluationDetails<boolean>>,
) {
return feature.pipe(
map((details) =>
details.value ? 'Welcome to this OpenFeature-enabled Nest.js app!' : 'Welcome to this Nest.js app!',
),
);
}
@Get('/boolean')
public async handleBooleanRequest(
@BooleanFeatureFlag({ flagKey: 'testBooleanFlag', defaultValue: false })
feature: Observable<EvaluationDetails<boolean>>,
) {
return feature.pipe(map((details) => this.testService.serviceMethod(details)));
}
@Get('/string')
public async handleStringRequest(
@StringFeatureFlag({ flagKey: 'testStringFlag', defaultValue: 'default-value' })
feature: Observable<EvaluationDetails<string>>,
) {
return feature.pipe(map((details) => this.testService.serviceMethod(details)));
}
@Get('/number')
public async handleNumberRequest(
@NumberFeatureFlag({ flagKey: 'testNumberFlag', defaultValue: 0 })
feature: Observable<EvaluationDetails<number>>,
) {
return feature.pipe(map((details) => this.testService.serviceMethod(details)));
}
@Get('/object')
public async handleObjectRequest(
@ObjectFeatureFlag({ flagKey: 'testObjectFlag', defaultValue: {} })
feature: Observable<EvaluationDetails<number>>,
) {
return feature.pipe(map((details) => this.testService.serviceMethod(details)));
}
@Get('/dynamic-context')
public async handleDynamicContextRequest(
@BooleanFeatureFlag({
flagKey: 'testBooleanFlag',
defaultValue: false,
})
feature: Observable<EvaluationDetails<number>>,
) {
return feature.pipe(map((details) => this.testService.serviceMethod(details)));
}
@Get('/dynamic-context-in-service')
public async handleDynamicContextInServiceRequest() {
return this.testService.serviceMethodWithDynamicContext('testBooleanFlag');
}
}
@Controller()
@UseInterceptors(EvaluationContextInterceptor)
export class OpenFeatureControllerContextScopedController {
constructor(private testService: OpenFeatureTestService) {}
@Get('/controller-context')
public async handleDynamicContextRequest(
@BooleanFeatureFlag({
flagKey: 'testBooleanFlag',
defaultValue: false,
})
feature: Observable<EvaluationDetails<number>>,
) {
return feature.pipe(map((details) => this.testService.serviceMethod(details)));
}
}