-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebhooks_api_test.go
More file actions
511 lines (462 loc) · 18.2 KB
/
Copy pathwebhooks_api_test.go
File metadata and controls
511 lines (462 loc) · 18.2 KB
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package tango
import (
"context"
"encoding/json"
"errors"
"io"
"net/http"
"strings"
"testing"
)
// ---------------------------------------------------------------------------
// ListWebhookEventTypes
// ---------------------------------------------------------------------------
func TestListWebhookEventTypesBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"event_types":[]}`))
})
_, _ = c.ListWebhookEventTypes(context.Background())
assertPathContains(t, capturedURL, "/api/webhooks/event-types/")
}
func TestListWebhookEventTypesDecodesResponse(t *testing.T) {
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"event_types":[{"event_type":"contract.awarded","schema_version":1}]}`))
})
resp, err := c.ListWebhookEventTypes(context.Background())
if err != nil {
t.Fatalf("unexpected: %v", err)
}
if len(resp.EventTypes) != 1 {
t.Fatalf("expected 1 event type, got %d", len(resp.EventTypes))
}
if resp.EventTypes[0].EventType == nil || *resp.EventTypes[0].EventType != "contract.awarded" {
t.Errorf("unexpected event type: %v", resp.EventTypes[0].EventType)
}
}
// ---------------------------------------------------------------------------
// ListWebhookEndpoints
// ---------------------------------------------------------------------------
func TestListWebhookEndpointsBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, captureURLHandler(&capturedURL))
_, _ = c.ListWebhookEndpoints(context.Background(), nil)
assertPathContains(t, capturedURL, "/api/webhooks/endpoints/")
}
func TestListWebhookEndpointsWithPagination(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, captureURLHandler(&capturedURL))
_, _ = c.ListWebhookEndpoints(context.Background(), &ListOptions{Limit: 10})
assertQueryContains(t, capturedURL, map[string]string{"limit": "10"}, nil)
}
// ---------------------------------------------------------------------------
// GetWebhookEndpoint
// ---------------------------------------------------------------------------
func TestGetWebhookEndpointRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.GetWebhookEndpoint(context.Background(), "")
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError, got %T: %v", err, err)
}
}
func TestGetWebhookEndpointBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"id":"ep1","name":"Test"}`))
})
_, _ = c.GetWebhookEndpoint(context.Background(), "ep-uuid-1234")
assertPathContains(t, capturedURL, "/api/webhooks/endpoints/ep-uuid-1234/")
}
func TestGetWebhookEndpointPathEscape(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"id":"ep/1"}`))
})
_, _ = c.GetWebhookEndpoint(context.Background(), "ep/special")
assertPathContains(t, capturedURL, "ep%2Fspecial")
}
// ---------------------------------------------------------------------------
// CreateWebhookEndpoint
// ---------------------------------------------------------------------------
func TestCreateWebhookEndpointRequiresName(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.CreateWebhookEndpoint(context.Background(), WebhookEndpointCreateInput{
CallbackURL: "https://example.com/wh",
})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty Name, got %T: %v", err, err)
}
}
func TestCreateWebhookEndpointRequiresCallbackURL(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.CreateWebhookEndpoint(context.Background(), WebhookEndpointCreateInput{
Name: "My Hook",
})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty CallbackURL, got %T: %v", err, err)
}
}
func TestCreateWebhookEndpointSendsCorrectBody(t *testing.T) {
var capturedBody []byte
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
t.Errorf("expected POST, got %s", r.Method)
}
capturedBody, _ = io.ReadAll(r.Body)
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"id":"ep1","name":"Prod Hook"}`))
})
active := true
_, err := c.CreateWebhookEndpoint(context.Background(), WebhookEndpointCreateInput{
Name: "Prod Hook",
CallbackURL: "https://prod.example.com/webhook",
IsActive: &active,
EventTypes: []string{"contract.awarded"},
})
if err != nil {
t.Fatalf("unexpected: %v", err)
}
var body map[string]any
if err := json.Unmarshal(capturedBody, &body); err != nil {
t.Fatalf("failed to decode captured body: %v", err)
}
if body["name"] != "Prod Hook" {
t.Errorf("body.name: want %q, got %v", "Prod Hook", body["name"])
}
if body["callback_url"] != "https://prod.example.com/webhook" {
t.Errorf("body.callback_url mismatch: %v", body["callback_url"])
}
if body["is_active"] != true {
t.Errorf("body.is_active: want true, got %v", body["is_active"])
}
}
func TestCreateWebhookEndpointBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"id":"ep1"}`))
})
_, _ = c.CreateWebhookEndpoint(context.Background(), WebhookEndpointCreateInput{
Name: "Hook",
CallbackURL: "https://example.com",
})
assertPathContains(t, capturedURL, "/api/webhooks/endpoints/")
}
// ---------------------------------------------------------------------------
// UpdateWebhookEndpoint
// ---------------------------------------------------------------------------
func TestUpdateWebhookEndpointRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.UpdateWebhookEndpoint(context.Background(), "", WebhookEndpointUpdateInput{})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty id, got %T: %v", err, err)
}
}
func TestUpdateWebhookEndpointSendsPatch(t *testing.T) {
var method string
var capturedBody []byte
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
method = r.Method
capturedBody, _ = io.ReadAll(r.Body)
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"id":"ep1","name":"Updated"}`))
})
newName := "Updated Hook"
active := false
_, err := c.UpdateWebhookEndpoint(context.Background(), "ep-uuid", WebhookEndpointUpdateInput{
Name: &newName,
IsActive: &active,
})
if err != nil {
t.Fatalf("unexpected: %v", err)
}
if method != "PATCH" {
t.Errorf("expected PATCH, got %s", method)
}
var body map[string]any
if err := json.Unmarshal(capturedBody, &body); err != nil {
t.Fatalf("failed to decode body: %v", err)
}
if body["name"] != "Updated Hook" {
t.Errorf("body.name: want %q, got %v", "Updated Hook", body["name"])
}
}
func TestUpdateWebhookEndpointBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"id":"ep1"}`))
})
_, _ = c.UpdateWebhookEndpoint(context.Background(), "ep-uuid-99", WebhookEndpointUpdateInput{})
assertPathContains(t, capturedURL, "/api/webhooks/endpoints/ep-uuid-99/")
}
// ---------------------------------------------------------------------------
// DeleteWebhookEndpoint
// ---------------------------------------------------------------------------
func TestDeleteWebhookEndpointRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
err := c.DeleteWebhookEndpoint(context.Background(), "")
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty id, got %T: %v", err, err)
}
}
func TestDeleteWebhookEndpointSendsDelete(t *testing.T) {
var method string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
method = r.Method
w.WriteHeader(204)
})
err := c.DeleteWebhookEndpoint(context.Background(), "ep-uuid")
if err != nil {
t.Fatalf("unexpected: %v", err)
}
if method != "DELETE" {
t.Errorf("expected DELETE, got %s", method)
}
}
func TestDeleteWebhookEndpointBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.WriteHeader(204)
})
_ = c.DeleteWebhookEndpoint(context.Background(), "ep-to-delete")
assertPathContains(t, capturedURL, "/api/webhooks/endpoints/ep-to-delete/")
}
// ---------------------------------------------------------------------------
// TestWebhookEndpoint
// ---------------------------------------------------------------------------
func TestTestWebhookEndpointRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.TestWebhookEndpoint(context.Background(), "")
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty endpointID, got %T: %v", err, err)
}
}
func TestTestWebhookEndpointSendsCorrectBody(t *testing.T) {
var capturedBody []byte
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedBody, _ = io.ReadAll(r.Body)
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"success":true,"status_code":200}`))
})
_, err := c.TestWebhookEndpoint(context.Background(), "endpoint-id-abc")
if err != nil {
t.Fatalf("unexpected: %v", err)
}
var body map[string]any
if err := json.Unmarshal(capturedBody, &body); err != nil {
t.Fatalf("failed to decode body: %v", err)
}
if body["endpoint"] != "endpoint-id-abc" {
t.Errorf("body.endpoint: want %q, got %v", "endpoint-id-abc", body["endpoint"])
}
}
// ---------------------------------------------------------------------------
// GetWebhookSamplePayload
// ---------------------------------------------------------------------------
func TestGetWebhookSamplePayloadBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{}`))
})
_, _ = c.GetWebhookSamplePayload(context.Background(), "")
assertPathContains(t, capturedURL, "/api/webhooks/endpoints/sample-payload/")
}
func TestGetWebhookSamplePayloadWithEventType(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"event_type":"contract.awarded"}`))
})
_, _ = c.GetWebhookSamplePayload(context.Background(), "contract.awarded")
assertQueryContains(t, capturedURL, map[string]string{"event_type": "contract.awarded"}, nil)
}
func TestGetWebhookSamplePayloadNoEventTypeNoQParam(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{}`))
})
_, _ = c.GetWebhookSamplePayload(context.Background(), "")
assertQueryContains(t, capturedURL, nil, []string{"event_type"})
}
// ---------------------------------------------------------------------------
// ListWebhookAlerts
// ---------------------------------------------------------------------------
func TestListWebhookAlertsBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, captureURLHandler(&capturedURL))
_, _ = c.ListWebhookAlerts(context.Background(), nil)
assertPathContains(t, capturedURL, "/api/webhooks/alerts/")
}
// ---------------------------------------------------------------------------
// GetWebhookAlert
// ---------------------------------------------------------------------------
func TestGetWebhookAlertRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.GetWebhookAlert(context.Background(), "")
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError, got %T: %v", err, err)
}
}
func TestGetWebhookAlertBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"alert_id":"al1"}`))
})
_, _ = c.GetWebhookAlert(context.Background(), "alert-uuid-99")
assertPathContains(t, capturedURL, "/api/webhooks/alerts/alert-uuid-99/")
}
// ---------------------------------------------------------------------------
// CreateWebhookAlert
// ---------------------------------------------------------------------------
func TestCreateWebhookAlertRequiresName(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.CreateWebhookAlert(context.Background(), WebhookAlertCreateInput{
QueryType: "contract",
Filters: map[string]any{"awarding_agency": "9700"},
})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty Name, got %T: %v", err, err)
}
}
func TestCreateWebhookAlertRequiresQueryType(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.CreateWebhookAlert(context.Background(), WebhookAlertCreateInput{
Name: "My Alert",
Filters: map[string]any{"awarding_agency": "9700"},
})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty QueryType, got %T: %v", err, err)
}
}
func TestCreateWebhookAlertRequiresFilters(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.CreateWebhookAlert(context.Background(), WebhookAlertCreateInput{
Name: "My Alert",
QueryType: "contract",
})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty Filters, got %T: %v", err, err)
}
}
func TestCreateWebhookAlertSendsCorrectBody(t *testing.T) {
var capturedBody []byte
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedBody, _ = io.ReadAll(r.Body)
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"alert_id":"al1","name":"DoD Contracts"}`))
})
_, err := c.CreateWebhookAlert(context.Background(), WebhookAlertCreateInput{
Name: "DoD Contracts",
QueryType: "contract",
Filters: map[string]any{"awarding_agency": "9700"},
})
if err != nil {
t.Fatalf("unexpected: %v", err)
}
var body map[string]any
if err := json.Unmarshal(capturedBody, &body); err != nil {
t.Fatalf("failed to decode body: %v", err)
}
if body["name"] != "DoD Contracts" {
t.Errorf("body.name: want %q, got %v", "DoD Contracts", body["name"])
}
if body["query_type"] != "contract" {
t.Errorf("body.query_type: want %q, got %v", "contract", body["query_type"])
}
filters, ok := body["filters"].(map[string]any)
if !ok || filters["awarding_agency"] != "9700" {
t.Errorf("body.filters mismatch: %v", body["filters"])
}
}
// ---------------------------------------------------------------------------
// UpdateWebhookAlert
// ---------------------------------------------------------------------------
func TestUpdateWebhookAlertRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
_, err := c.UpdateWebhookAlert(context.Background(), "", WebhookAlertUpdateInput{})
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty id, got %T: %v", err, err)
}
}
func TestUpdateWebhookAlertBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"alert_id":"al1"}`))
})
_, _ = c.UpdateWebhookAlert(context.Background(), "alert-to-update", WebhookAlertUpdateInput{})
assertPathContains(t, capturedURL, "/api/webhooks/alerts/alert-to-update/")
}
// ---------------------------------------------------------------------------
// DeleteWebhookAlert
// ---------------------------------------------------------------------------
func TestDeleteWebhookAlertRequiresID(t *testing.T) {
c := NewClient(WithAPIKey("k"), WithBaseURL("http://localhost:0"), WithRetries(0))
err := c.DeleteWebhookAlert(context.Background(), "")
var ve *ValidationError
if !errors.As(err, &ve) {
t.Fatalf("expected *ValidationError for empty id, got %T: %v", err, err)
}
}
func TestDeleteWebhookAlertBuildsPath(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.WriteHeader(204)
})
_ = c.DeleteWebhookAlert(context.Background(), "alert-to-kill")
assertPathContains(t, capturedURL, "/api/webhooks/alerts/alert-to-kill/")
}
func TestDeleteWebhookAlertSendsDelete(t *testing.T) {
var method string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
method = r.Method
w.WriteHeader(204)
})
_ = c.DeleteWebhookAlert(context.Background(), "al-uuid")
if method != "DELETE" {
t.Errorf("expected DELETE, got %s", method)
}
}
func TestWebhookAlertPathEscape(t *testing.T) {
var capturedURL string
c, _ := newTestClient(t, func(w http.ResponseWriter, r *http.Request) {
capturedURL = r.URL.RequestURI()
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"alert_id":"al/1"}`))
})
_, _ = c.GetWebhookAlert(context.Background(), "al/special")
if !strings.Contains(capturedURL, "al%2Fspecial") {
t.Errorf("expected path to contain al%%2Fspecial, got %q", capturedURL)
}
}