forked from open-feature/go-sdk-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
71 lines (58 loc) · 1.89 KB
/
example_test.go
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
package launchdarkly_test
import (
"context"
"fmt"
"time"
"github.com/launchdarkly/go-sdk-common/v3/ldlog"
"github.com/launchdarkly/go-server-sdk/v7/ldcomponents"
"github.com/open-feature/go-sdk/openfeature"
ld "github.com/launchdarkly/go-server-sdk/v7"
ofld "github.com/open-feature/go-sdk-contrib/providers/launchdarkly/pkg"
)
var emptyEvalCtx = openfeature.EvaluationContext{}
func Example() {
var config ld.Config
config.Logging = ldcomponents.Logging().MinLevel(ldlog.Debug)
ldClient, err := ld.MakeCustomClient("my api key", config, 5*time.Second)
if err != nil {
panic(err)
}
// Flushes all pending analytics events.
defer ldClient.Close()
// Set Launchdarkly as OpenFeature provider
err = openfeature.SetProvider(ofld.NewProvider(ldClient))
if err != nil {
// handle error for provider initialization
}
// Set a multi-context evaluation context as example
evalCtx := openfeature.NewEvaluationContext("redpanda-12342", map[string]any{
"kind": "multi",
"organization": map[string]any{
"key": "blah1234",
"name": "Redpanda",
"customer_tier": "GOLD",
},
"redpanda-id": map[string]any{
"key": "redpanda-12342",
"cloud-provider": "aws",
},
})
// Get an openfeature client and set the evaluation context to it as example.
// For more information about OpenFeature evaluation contexts please refer to
// https://openfeature.dev/docs/reference/concepts/evaluation-context/
client := openfeature.NewClient("hello-world")
client.SetEvaluationContext(evalCtx)
if err := doSomething(context.Background(), client); err != nil {
panic(err)
}
}
func doSomething(ctx context.Context, ofclient *openfeature.Client) error {
mtlsEnabled, err := ofclient.BooleanValue(ctx, "mtls_enabled", false, emptyEvalCtx)
if err != nil {
return fmt.Errorf("doing something: %w", err)
}
if mtlsEnabled {
println("configuring mTLS...")
}
return nil
}