-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdatasource_sse_test.go
150 lines (138 loc) · 3.96 KB
/
datasource_sse_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
139
140
141
142
143
144
145
146
147
148
149
150
package growthbook
import (
"context"
"fmt"
"log/slog"
"net/http"
"net/http/httptest"
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestSseDataSource(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"}}
features2JSON := `{"features": { "foo": { "defaultValue": "SSE" } }, "experiments": [], "dateUpdated": "2000-05-02T00:00:12Z" }`
features2 := FeatureMap{"foo": &Feature{DefaultValue: "SSE"}}
t.Run("Update client data from sse data", func(t *testing.T) {
ts := startSseServer(featuresJSON, sseResponse(features2JSON, 10*time.Millisecond, 0))
defer ts.http.Close()
logger, _ := testLogger(slog.LevelWarn, t)
client, err := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithSseDataSource(),
)
require.Nil(t, err)
err = client.EnsureLoaded(ctx)
require.Equal(t, features, client.Features())
require.Nil(t, err)
time.Sleep(100 * time.Millisecond)
require.Equal(t, features2, client.Features())
err = client.Close()
require.Nil(t, err)
})
t.Run("Reconnect to server on connection break", func(t *testing.T) {
ts := startSseServer(featuresJSON, sseResponse(features2JSON, 10*time.Millisecond, 3))
defer ts.http.Close()
logger, _ := testLogger(slog.LevelWarn, t)
client, err := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithSseDataSource(),
)
require.Nil(t, err)
err = client.EnsureLoaded(ctx)
time.Sleep(100 * time.Millisecond)
require.Greater(t, ts.ssecount.Load(), int32(1))
require.Equal(t, features2, client.Features())
err = client.Close()
require.Nil(t, err)
})
t.Run("Don't reconnect after closing client", func(t *testing.T) {
ts := startSseServer(featuresJSON, sseResponse(features2JSON, 10*time.Millisecond, 3))
defer ts.http.Close()
logger, _ := testLogger(slog.LevelWarn, t)
client, err := NewClient(ctx,
WithLogger(logger),
WithHttpClient(ts.http.Client()),
WithApiHost(ts.http.URL),
WithClientKey("somekey"),
WithSseDataSource(),
)
require.Nil(t, err)
err = client.EnsureLoaded(ctx)
client.Close()
old := ts.ssecount.Load()
time.Sleep(100 * time.Millisecond)
require.Equal(t, old, ts.ssecount.Load())
})
}
type sseTestServer struct {
http *httptest.Server
ssecount atomic.Int32
apicount atomic.Int32
}
type sseResponseGen func(context.Context, http.ResponseWriter)
func startSseServer(apiResponse []byte, sseResponseGen sseResponseGen) *sseTestServer {
var ts sseTestServer
ts.http = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/features/somekey":
w.Header().Add("x-sse-support", "enabled")
w.WriteHeader(http.StatusOK)
w.Write(apiResponse)
ts.apicount.Add(1)
return
case "/sub/somekey":
ts.ssecount.Add(1)
sseResponseGen(r.Context(), w)
}
}))
return &ts
}
func sseResponse(response string, delay time.Duration, lim int) sseResponseGen {
stream := []string{
"retry: 10\n\n",
"data:\n\n",
fmt.Sprintf("id: 1\nevent: features\ndata: %s\n\n", response),
"data:\n\n",
}
return func(ctx context.Context, w http.ResponseWriter) {
w.Header().Set("Content-Type", "text/event-stream")
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("Connection", "keep-alive")
ticker := time.NewTicker(delay)
defer ticker.Stop()
flusher := w.(http.Flusher)
flusher.Flush()
for count := 0; lim == 0 || count < lim; count++ {
select {
case <-ticker.C:
if len(stream) > count {
w.Write([]byte(stream[count]))
} else {
w.Write([]byte("data:\n\n"))
}
flusher.Flush()
count++
case <-ctx.Done():
return
}
}
}
}