-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdatasource_poll_test.go
138 lines (128 loc) · 3.64 KB
/
datasource_poll_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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package growthbook
import (
"context"
"fmt"
"log/slog"
"net/http"
"net/http/httptest"
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestPollingDataSource(t *testing.T) {
ctx := context.TODO()
featuresJSON := []byte(`{
"features": {
"foo": {
"defaultValue": "api"
}
},
"experiments": [],
"dateUpdated": "2000-05-01T00:00:12Z"
}`)
features := FeatureMap{"foo": &Feature{DefaultValue: "api"}}
t.Run("Update client data from valid server response", func(t *testing.T) {
ts := startServer(http.StatusOK, featuresJSON)
logger, _ := testLogger(slog.LevelError, t)
defer ts.http.Close()
client, err := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithPollDataSource(100*time.Millisecond),
)
require.Nil(t, err)
err = client.EnsureLoaded(ctx)
require.Nil(t, err)
require.Equal(t, features, client.Features())
err = client.Close()
require.Nil(t, err)
})
t.Run("Closing client stops data loading", func(t *testing.T) {
ts := startServer(http.StatusOK, featuresJSON)
logger, _ := testLogger(slog.LevelInfo, t)
defer ts.http.Close()
client, _ := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithPollDataSource(10*time.Millisecond),
)
client.EnsureLoaded(ctx)
client.Close()
require.True(t, ts.count.Load() > 0)
ts.count.Store(0)
time.Sleep(100 * time.Millisecond)
require.Equal(t, int32(0), ts.count.Load())
})
t.Run("EnsureLoaded returns error on invalid server response", func(t *testing.T) {
ts := startServer(http.StatusNotFound, []byte(""))
logger, _ := testLogger(slog.LevelError, t)
defer ts.http.Close()
client, err := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithPollDataSource(100*time.Millisecond),
)
require.Nil(t, err)
err = client.EnsureLoaded(ctx)
require.Error(t, fmt.Errorf("Error loading from server, code: %d,", http.StatusNotFound), err)
err = client.Close()
require.Nil(t, err)
})
t.Run("Use etags for requests if present", func(t *testing.T) {
ts := startEtagServer(featuresJSON)
logger, _ := testLogger(slog.LevelError, t)
defer ts.http.Close()
client, err := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithPollDataSource(10*time.Millisecond),
)
require.Nil(t, err)
err = client.EnsureLoaded(ctx)
require.Nil(t, err)
require.Equal(t, features, client.Features())
time.Sleep(100 * time.Millisecond)
require.Equal(t, features, client.Features())
require.True(t, ts.count.Load() > 2)
require.Equal(t, ts.count.Load()-1, ts.etagCount.Load())
})
}
type testServer struct {
http *httptest.Server
count atomic.Int32
etagCount atomic.Int32
}
func startServer(code int, response []byte) *testServer {
var ts testServer
ts.http = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ts.count.Add(1)
w.WriteHeader(code)
_, _ = w.Write(response)
}))
return &ts
}
func startEtagServer(response []byte) *testServer {
var ts testServer
etag := `W/"SOME_ETAG_VALUE"`
ts.http = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ts.count.Add(1)
if r.Header.Get("If-None-Match") == etag {
ts.etagCount.Add(1)
w.WriteHeader(http.StatusNotModified)
return
}
w.Header().Set("etag", etag)
w.WriteHeader(http.StatusOK)
_, _ = w.Write(response)
}))
return &ts
}