-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhooks_test.go
More file actions
478 lines (407 loc) · 14.7 KB
/
hooks_test.go
File metadata and controls
478 lines (407 loc) · 14.7 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
package posthook
import (
"context"
"encoding/json"
"errors"
"io"
"net/http"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestHooks_Schedule_PostIn(t *testing.T) {
var capturedBody map[string]any
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodPost, r.Method)
assert.Equal(t, "/v1/hooks", r.URL.Path)
body, _ := io.ReadAll(r.Body)
json.Unmarshal(body, &capturedBody)
jsonResponse(w, http.StatusCreated, map[string]any{
"id": "hook-123",
"path": "/webhooks/test",
"status": "pending",
"postAt": "2026-02-22T15:05:00Z",
})
})
hook, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/test",
PostIn: "5m",
Data: map[string]any{"userId": "123"},
})
require.NoError(t, err)
assert.Equal(t, "hook-123", hook.ID)
assert.Equal(t, "pending", hook.Status)
assert.Equal(t, "/webhooks/test", capturedBody["path"])
assert.Equal(t, "5m", capturedBody["postIn"])
}
func TestHooks_Schedule_PostAt(t *testing.T) {
var capturedBody map[string]any
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
json.Unmarshal(body, &capturedBody)
jsonResponse(w, http.StatusCreated, map[string]any{
"id": "hook-456",
"status": "pending",
})
})
hook, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/reminder",
PostAt: time.Date(2026, 3, 1, 12, 0, 0, 0, time.UTC),
Data: map[string]any{"userId": "123"},
})
require.NoError(t, err)
assert.Equal(t, "hook-456", hook.ID)
// PostAt should be serialized to RFC3339.
assert.Equal(t, "2026-03-01T12:00:00Z", capturedBody["postAt"])
}
func TestHooks_Schedule_PostAt_OmittedWhenZero(t *testing.T) {
var capturedBody map[string]any
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
json.Unmarshal(body, &capturedBody)
jsonResponse(w, http.StatusCreated, map[string]any{"id": "hook-z"})
})
_, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/test",
PostIn: "5m",
Data: map[string]any{},
})
require.NoError(t, err)
_, hasPostAt := capturedBody["postAt"]
assert.False(t, hasPostAt, "zero PostAt should be omitted from JSON")
}
func TestHooks_Schedule_PostAtLocal(t *testing.T) {
var capturedBody map[string]any
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
json.Unmarshal(body, &capturedBody)
jsonResponse(w, http.StatusCreated, map[string]any{
"id": "hook-789",
"status": "pending",
})
})
_, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/local",
PostAtLocal: "2026-03-01T09:00:00",
Timezone: "America/New_York",
Data: map[string]any{},
})
require.NoError(t, err)
assert.Equal(t, "2026-03-01T09:00:00", capturedBody["postAtLocal"])
assert.Equal(t, "America/New_York", capturedBody["timezone"])
}
func TestHooks_Schedule_RetryOverride(t *testing.T) {
var capturedBody map[string]any
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
body, _ := io.ReadAll(r.Body)
json.Unmarshal(body, &capturedBody)
jsonResponse(w, http.StatusCreated, map[string]any{"id": "hook-retry"})
})
_, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/retry",
PostIn: "1m",
Data: map[string]any{},
RetryOverride: &HookRetryOverride{
MinRetries: 5,
DelaySecs: 10,
Strategy: "exponential",
BackoffFactor: 2.0,
MaxDelaySecs: 3600,
Jitter: Bool(true),
},
})
require.NoError(t, err)
override, ok := capturedBody["retryOverride"].(map[string]any)
require.True(t, ok)
assert.Equal(t, float64(5), override["minRetries"])
assert.Equal(t, "exponential", override["strategy"])
assert.Equal(t, float64(2.0), override["backoffFactor"])
assert.Equal(t, true, override["jitter"])
}
func TestHooks_Schedule_QuotaHeaders(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Posthook-HookQuota-Limit", "10000")
w.Header().Set("Posthook-HookQuota-Usage", "1234")
w.Header().Set("Posthook-HookQuota-Remaining", "8766")
w.Header().Set("Posthook-HookQuota-Resets-At", "2026-03-01T00:00:00Z")
jsonResponse(w, http.StatusCreated, map[string]any{"id": "hook-q"})
})
_, resp, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/test",
PostIn: "1m",
Data: map[string]any{},
})
require.NoError(t, err)
require.NotNil(t, resp.Quota)
assert.Equal(t, 10000, resp.Quota.Limit)
assert.Equal(t, 1234, resp.Quota.Usage)
assert.Equal(t, 8766, resp.Quota.Remaining)
assert.Equal(t, time.Date(2026, 3, 1, 0, 0, 0, 0, time.UTC), resp.Quota.ResetsAt)
}
func TestHooks_Get(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
assert.Equal(t, "/v1/hooks/hook-abc", r.URL.Path)
jsonResponse(w, http.StatusOK, map[string]any{
"id": "hook-abc",
"path": "/webhooks/test",
"status": "completed",
"postDurationSeconds": 0.45,
"attempts": 1,
})
})
hook, _, err := client.Hooks.Get(context.Background(), "hook-abc")
require.NoError(t, err)
assert.Equal(t, "hook-abc", hook.ID)
assert.Equal(t, "completed", hook.Status)
assert.Equal(t, 0.45, hook.PostDurationSeconds)
assert.Equal(t, 1, hook.Attempts)
}
func TestHooks_List(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
assert.Equal(t, "/v1/hooks", r.URL.Path)
assert.Equal(t, "failed", r.URL.Query().Get("status"))
assert.Equal(t, "50", r.URL.Query().Get("limit"))
jsonResponse(w, http.StatusOK, []map[string]any{
{"id": "h1", "status": "failed"},
{"id": "h2", "status": "failed"},
})
})
hooks, _, err := client.Hooks.List(context.Background(), &HookListParams{
Status: StatusFailed,
Limit: 50,
})
require.NoError(t, err)
assert.Len(t, hooks, 2)
assert.Equal(t, "h1", hooks[0].ID)
}
func TestHooks_List_NilParams(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Empty(t, r.URL.RawQuery)
jsonResponse(w, http.StatusOK, []map[string]any{})
})
hooks, _, err := client.Hooks.List(context.Background(), nil)
require.NoError(t, err)
assert.Len(t, hooks, 0)
}
func TestHooks_Delete_200(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodDelete, r.Method)
assert.Equal(t, "/v1/hooks/hook-del", r.URL.Path)
jsonResponse(w, http.StatusOK, nil)
})
resp, err := client.Hooks.Delete(context.Background(), "hook-del")
require.NoError(t, err)
assert.Equal(t, http.StatusOK, resp.StatusCode)
}
func TestHooks_Delete_404_ReturnsNilError(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
jsonErrorResponse(w, http.StatusNotFound, "hook not found")
})
_, err := client.Hooks.Delete(context.Background(), "hook-gone")
assert.NoError(t, err)
}
func TestHooks_Delete_OtherErrorsPropagated(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
jsonErrorResponse(w, http.StatusForbidden, "forbidden")
})
_, err := client.Hooks.Delete(context.Background(), "hook-id")
require.Error(t, err)
var forbidden *ForbiddenError
assert.True(t, errors.As(err, &forbidden))
}
func TestBulk_Retry(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodPost, r.Method)
assert.Equal(t, "/v1/hooks/bulk/retry", r.URL.Path)
var body map[string]any
json.NewDecoder(r.Body).Decode(&body)
assert.Nil(t, body["projectID"])
jsonResponse(w, http.StatusOK, map[string]any{"affected": 5})
})
result, _, err := client.Hooks.Bulk().Retry(context.Background(), &BulkActionByIDs{
HookIDs: []string{"h1", "h2", "h3"},
})
require.NoError(t, err)
assert.Equal(t, 5, result.Affected)
}
func TestBulk_RetryByFilter(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, "/v1/hooks/bulk/retry", r.URL.Path)
var body map[string]any
json.NewDecoder(r.Body).Decode(&body)
assert.Nil(t, body["projectID"])
assert.NotEmpty(t, body["startTime"])
jsonResponse(w, http.StatusOK, map[string]any{"affected": 10})
})
result, _, err := client.Hooks.Bulk().RetryByFilter(context.Background(), &BulkActionByFilter{
StartTime: time.Date(2026, 2, 1, 0, 0, 0, 0, time.UTC),
EndTime: time.Date(2026, 2, 22, 0, 0, 0, 0, time.UTC),
Limit: 100,
})
require.NoError(t, err)
assert.Equal(t, 10, result.Affected)
}
func TestBulk_Replay(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, "/v1/hooks/bulk/replay", r.URL.Path)
jsonResponse(w, http.StatusOK, map[string]any{"affected": 3})
})
result, _, err := client.Hooks.Bulk().Replay(context.Background(), &BulkActionByIDs{
HookIDs: []string{"h1"},
})
require.NoError(t, err)
assert.Equal(t, 3, result.Affected)
}
func TestBulk_ReplayByFilter(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, "/v1/hooks/bulk/replay", r.URL.Path)
jsonResponse(w, http.StatusOK, map[string]any{"affected": 7})
})
result, _, err := client.Hooks.Bulk().ReplayByFilter(context.Background(), &BulkActionByFilter{
StartTime: time.Date(2026, 2, 1, 0, 0, 0, 0, time.UTC),
EndTime: time.Date(2026, 2, 22, 0, 0, 0, 0, time.UTC),
EndpointKey: "/webhooks/test",
})
require.NoError(t, err)
assert.Equal(t, 7, result.Affected)
}
func TestBulk_Cancel(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, "/v1/hooks/bulk/cancel", r.URL.Path)
jsonResponse(w, http.StatusOK, map[string]any{"affected": 2})
})
result, _, err := client.Hooks.Bulk().Cancel(context.Background(), &BulkActionByIDs{
HookIDs: []string{"h1", "h2"},
})
require.NoError(t, err)
assert.Equal(t, 2, result.Affected)
}
func TestBulk_CancelByFilter(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, "/v1/hooks/bulk/cancel", r.URL.Path)
jsonResponse(w, http.StatusOK, map[string]any{"affected": 15})
})
result, _, err := client.Hooks.Bulk().CancelByFilter(context.Background(), &BulkActionByFilter{
StartTime: time.Date(2026, 2, 1, 0, 0, 0, 0, time.UTC),
EndTime: time.Date(2026, 2, 22, 0, 0, 0, 0, time.UTC),
SequenceID: "seq-1",
Limit: 50,
})
require.NoError(t, err)
assert.Equal(t, 15, result.Affected)
}
func TestHooks_ListAll(t *testing.T) {
callCount := 0
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, http.MethodGet, r.Method)
assert.Equal(t, "/v1/hooks", r.URL.Path)
assert.Equal(t, "postAt", r.URL.Query().Get("sortBy"))
assert.Equal(t, "ASC", r.URL.Query().Get("sortOrder"))
callCount++
if callCount == 1 {
assert.Empty(t, r.URL.Query().Get("postAtAfter"))
jsonResponse(w, http.StatusOK, []map[string]any{
{"id": "h1", "status": "failed", "postAt": "2026-02-01T10:00:00Z"},
{"id": "h2", "status": "failed", "postAt": "2026-02-02T10:00:00Z"},
})
} else {
assert.Equal(t, "2026-02-02T10:00:00Z", r.URL.Query().Get("postAtAfter"))
jsonResponse(w, http.StatusOK, []map[string]any{
{"id": "h3", "status": "failed", "postAt": "2026-02-03T10:00:00Z"},
})
}
})
var hooks []*Hook
for hook, err := range client.Hooks.ListAll(context.Background(), &HookListAllParams{
Status: StatusFailed,
PageSize: 2,
}) {
require.NoError(t, err)
hooks = append(hooks, hook)
}
assert.Len(t, hooks, 3)
assert.Equal(t, "h1", hooks[0].ID)
assert.Equal(t, "h3", hooks[2].ID)
assert.Equal(t, 2, callCount)
}
func TestHooks_ListAll_Empty(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
jsonResponse(w, http.StatusOK, []map[string]any{})
})
var hooks []*Hook
for hook, err := range client.Hooks.ListAll(context.Background(), nil) {
require.NoError(t, err)
hooks = append(hooks, hook)
}
assert.Len(t, hooks, 0)
}
func TestHooks_ListAll_Error(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
jsonErrorResponse(w, http.StatusForbidden, "forbidden")
})
for _, err := range client.Hooks.ListAll(context.Background(), &HookListAllParams{
Status: StatusFailed,
}) {
require.Error(t, err)
var forbidden *ForbiddenError
assert.True(t, errors.As(err, &forbidden))
break
}
}
func TestHooks_Get_EmptyID(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
t.Fatal("server should not be called")
})
_, _, err := client.Hooks.Get(context.Background(), "")
require.Error(t, err)
assert.Contains(t, err.Error(), "hook id is required")
}
func TestHooks_Delete_EmptyID(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
t.Fatal("server should not be called")
})
_, err := client.Hooks.Delete(context.Background(), "")
require.Error(t, err)
assert.Contains(t, err.Error(), "hook id is required")
}
func TestHooks_Schedule_NoSchedulingMode(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
t.Fatal("server should not be called")
})
_, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/test",
Data: map[string]any{"key": "value"},
})
require.Error(t, err)
assert.Contains(t, err.Error(), "exactly one of PostAt, PostAtLocal, or PostIn must be set")
}
func TestHooks_Schedule_MultipleSchedulingModes(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
t.Fatal("server should not be called")
})
_, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/test",
PostIn: "5m",
PostAt: time.Date(2026, 3, 1, 12, 0, 0, 0, time.UTC),
Data: map[string]any{"key": "value"},
})
require.Error(t, err)
assert.Contains(t, err.Error(), "only one of PostAt, PostAtLocal, or PostIn may be set (got 2)")
}
func TestHooks_Schedule_AllThreeSchedulingModes(t *testing.T) {
client := testClient(t, func(w http.ResponseWriter, r *http.Request) {
t.Fatal("server should not be called")
})
_, _, err := client.Hooks.Schedule(context.Background(), &HookScheduleParams{
Path: "/webhooks/test",
PostIn: "5m",
PostAt: time.Date(2026, 3, 1, 12, 0, 0, 0, time.UTC),
PostAtLocal: "2026-03-01T09:00:00",
Data: map[string]any{"key": "value"},
})
require.Error(t, err)
assert.Contains(t, err.Error(), "only one of PostAt, PostAtLocal, or PostIn may be set (got 3)")
}