forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstored_requests_test.go
292 lines (276 loc) · 8.68 KB
/
stored_requests_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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package config
import (
"errors"
"testing"
"github.com/stretchr/testify/assert"
)
func TestInMemoryCacheValidationStoredRequests(t *testing.T) {
assertNoErrs(t, (&InMemoryCache{
Type: "unbounded",
}).validate(RequestDataType, nil))
assertNoErrs(t, (&InMemoryCache{
Type: "none",
}).validate(RequestDataType, nil))
assertNoErrs(t, (&InMemoryCache{
Type: "lru",
RequestCacheSize: 1000,
ImpCacheSize: 1000,
RespCacheSize: 1000,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unrecognized",
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unbounded",
ImpCacheSize: 1000,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unbounded",
RequestCacheSize: 1000,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unbounded",
RespCacheSize: 1000,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unbounded",
TTL: 500,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
RequestCacheSize: 0,
ImpCacheSize: 1000,
RespCacheSize: 1000,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
RequestCacheSize: 1000,
ImpCacheSize: 0,
RespCacheSize: 1000,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
RequestCacheSize: 1000,
ImpCacheSize: 1000,
RespCacheSize: 0,
}).validate(RequestDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
Size: 1000,
}).validate(RequestDataType, nil))
}
func TestInMemoryCacheValidationSingleCache(t *testing.T) {
assertNoErrs(t, (&InMemoryCache{
Type: "unbounded",
}).validate(AccountDataType, nil))
assertNoErrs(t, (&InMemoryCache{
Type: "none",
}).validate(AccountDataType, nil))
assertNoErrs(t, (&InMemoryCache{
Type: "lru",
Size: 1000,
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unrecognized",
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unbounded",
Size: 1000,
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "unbounded",
TTL: 500,
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
Size: 0,
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
RequestCacheSize: 1000,
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
ImpCacheSize: 1000,
}).validate(AccountDataType, nil))
assertErrsExist(t, (&InMemoryCache{
Type: "lru",
RespCacheSize: 1000,
}).validate(AccountDataType, nil))
}
func TestDatabaseConfigValidation(t *testing.T) {
tests := []struct {
description string
connectionStr string
cacheInitQuery string
cacheInitTimeout int
cacheUpdateQuery string
cacheUpdateRefreshRate int
cacheUpdateTimeout int
existingErrors []error
wantErrorCount int
}{
{
description: "No connection string",
connectionStr: "",
},
{
description: "Connection string but no queries",
connectionStr: "some-connection-string",
},
{
description: "Valid cache init query with non-zero timeout",
connectionStr: "some-connection-string",
cacheInitQuery: "SELECT * FROM table;",
cacheInitTimeout: 1,
},
{
description: "Valid cache init query with zero timeout",
connectionStr: "some-connection-string",
cacheInitQuery: "SELECT * FROM table;",
cacheInitTimeout: 0,
wantErrorCount: 1,
},
{
description: "Invalid cache init query contains wildcard",
connectionStr: "some-connection-string",
cacheInitQuery: "SELECT * FROM table WHERE $LAST_UPDATED",
cacheInitTimeout: 1,
wantErrorCount: 1,
},
{
description: "Valid cache update query with non-zero timeout and refresh rate",
connectionStr: "some-connection-string",
cacheUpdateQuery: "SELECT * FROM table WHERE $LAST_UPDATED",
cacheUpdateRefreshRate: 1,
cacheUpdateTimeout: 1,
},
{
description: "Valid cache update query with zero timeout and non-zero refresh rate",
connectionStr: "some-connection-string",
cacheUpdateQuery: "SELECT * FROM table WHERE $LAST_UPDATED",
cacheUpdateRefreshRate: 1,
cacheUpdateTimeout: 0,
wantErrorCount: 1,
},
{
description: "Valid cache update query with non-zero timeout and zero refresh rate",
connectionStr: "some-connection-string",
cacheUpdateQuery: "SELECT * FROM table WHERE $LAST_UPDATED",
cacheUpdateRefreshRate: 0,
cacheUpdateTimeout: 1,
wantErrorCount: 1,
},
{
description: "Invalid cache update query missing wildcard",
connectionStr: "some-connection-string",
cacheUpdateQuery: "SELECT * FROM table",
cacheUpdateRefreshRate: 1,
cacheUpdateTimeout: 1,
wantErrorCount: 1,
},
{
description: "Multiple errors: valid queries missing timeouts and refresh rates plus existing error",
connectionStr: "some-connection-string",
cacheInitQuery: "SELECT * FROM table;",
cacheUpdateQuery: "SELECT * FROM table WHERE $LAST_UPDATED",
existingErrors: []error{errors.New("existing error before calling validate")},
wantErrorCount: 4,
},
}
for _, tt := range tests {
dbConfig := &DatabaseConfig{
ConnectionInfo: DatabaseConnection{
Database: tt.connectionStr,
},
CacheInitialization: DatabaseCacheInitializer{
Query: tt.cacheInitQuery,
Timeout: tt.cacheInitTimeout,
},
PollUpdates: DatabaseUpdatePolling{
Query: tt.cacheUpdateQuery,
RefreshRate: tt.cacheUpdateRefreshRate,
Timeout: tt.cacheUpdateTimeout,
},
}
errs := dbConfig.validate(RequestDataType, tt.existingErrors)
assert.Equal(t, tt.wantErrorCount, len(errs), tt.description)
}
}
func assertErrsExist(t *testing.T, err []error) {
t.Helper()
if len(err) == 0 {
t.Error("Expected error was not not found.")
}
}
func assertNoErrs(t *testing.T, err []error) {
t.Helper()
if len(err) > 0 {
t.Errorf("Got unexpected error(s): %v", err)
}
}
func assertStringsEqual(t *testing.T, actual string, expected string) {
if actual != expected {
t.Errorf("Queries did not match.\n\"%s\" -- expected\n\"%s\" -- actual", expected, actual)
}
}
func TestResolveConfig(t *testing.T) {
cfg := &Configuration{
StoredRequests: StoredRequests{
Files: FileFetcherConfig{
Enabled: true,
Path: "/test-path"},
Database: DatabaseConfig{
ConnectionInfo: DatabaseConnection{
Driver: "postgres",
Database: "db",
Host: "pghost",
Port: 5,
Username: "user",
Password: "pass",
},
FetcherQueries: DatabaseFetcherQueries{
AmpQueryTemplate: "amp-fetcher-query",
},
CacheInitialization: DatabaseCacheInitializer{
AmpQuery: "amp-cache-init-query",
},
PollUpdates: DatabaseUpdatePolling{
AmpQuery: "amp-poll-query",
},
},
HTTP: HTTPFetcherConfig{
AmpEndpoint: "amp-http-fetcher-endpoint",
},
InMemoryCache: InMemoryCache{
Type: "none",
TTL: 50,
RequestCacheSize: 1,
ImpCacheSize: 2,
},
CacheEvents: CacheEventsConfig{
Enabled: true,
},
HTTPEvents: HTTPEventsConfig{
AmpEndpoint: "amp-http-events-endpoint",
},
},
}
cfg.StoredRequests.Database.FetcherQueries.QueryTemplate = "auc-fetcher-query"
cfg.StoredRequests.Database.CacheInitialization.Query = "auc-cache-init-query"
cfg.StoredRequests.Database.PollUpdates.Query = "auc-poll-query"
cfg.StoredRequests.HTTP.Endpoint = "auc-http-fetcher-endpoint"
cfg.StoredRequests.HTTPEvents.Endpoint = "auc-http-events-endpoint"
resolvedStoredRequestsConfig(cfg)
auc := &cfg.StoredRequests
amp := &cfg.StoredRequestsAMP
// Auction should have the non-amp values in it
assertStringsEqual(t, auc.CacheEvents.Endpoint, "/storedrequests/openrtb2")
// Amp should have the amp values in it
assertStringsEqual(t, amp.Database.FetcherQueries.QueryTemplate, cfg.StoredRequests.Database.FetcherQueries.AmpQueryTemplate)
assertStringsEqual(t, amp.Database.CacheInitialization.Query, cfg.StoredRequests.Database.CacheInitialization.AmpQuery)
assertStringsEqual(t, amp.Database.PollUpdates.Query, cfg.StoredRequests.Database.PollUpdates.AmpQuery)
assertStringsEqual(t, amp.HTTP.Endpoint, cfg.StoredRequests.HTTP.AmpEndpoint)
assertStringsEqual(t, amp.HTTPEvents.Endpoint, cfg.StoredRequests.HTTPEvents.AmpEndpoint)
assertStringsEqual(t, amp.CacheEvents.Endpoint, "/storedrequests/amp")
}