-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient_test.go
More file actions
139 lines (115 loc) · 3.08 KB
/
client_test.go
File metadata and controls
139 lines (115 loc) · 3.08 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
package netnod
import (
"context"
"net/http"
"net/http/httptest"
"sync/atomic"
"testing"
"time"
)
func TestDoRequest_RetryOn429(t *testing.T) {
var attempts atomic.Int32
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
n := attempts.Add(1)
if n <= 2 {
w.WriteHeader(http.StatusTooManyRequests)
return
}
w.WriteHeader(http.StatusOK)
w.Write([]byte(`{}`))
}))
defer srv.Close()
p := &Provider{
APIToken: "test-token",
BaseURL: srv.URL,
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
resp, err := p.doRequest(ctx, http.MethodGet, "/test", nil)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
resp.Body.Close()
if got := attempts.Load(); got != 3 {
t.Fatalf("expected 3 attempts, got %d", got)
}
}
func TestDoRequest_RetryAfterHeader(t *testing.T) {
var attempts atomic.Int32
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
n := attempts.Add(1)
if n == 1 {
w.Header().Set("Retry-After", "1")
w.WriteHeader(http.StatusTooManyRequests)
return
}
w.WriteHeader(http.StatusOK)
w.Write([]byte(`{}`))
}))
defer srv.Close()
p := &Provider{
APIToken: "test-token",
BaseURL: srv.URL,
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
start := time.Now()
resp, err := p.doRequest(ctx, http.MethodGet, "/test", nil)
elapsed := time.Since(start)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
resp.Body.Close()
if elapsed < 900*time.Millisecond {
t.Fatalf("expected at least ~1s wait from Retry-After, got %v", elapsed)
}
}
func TestDoRequest_ContextCancelled(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusTooManyRequests)
}))
defer srv.Close()
p := &Provider{
APIToken: "test-token",
BaseURL: srv.URL,
}
ctx, cancel := context.WithTimeout(context.Background(), 500*time.Millisecond)
defer cancel()
_, err := p.doRequest(ctx, http.MethodGet, "/test", nil)
if err == nil {
t.Fatal("expected error due to context cancellation")
}
if ctx.Err() == nil {
t.Fatal("expected context to be done")
}
}
func TestDoRequest_SendsBody(t *testing.T) {
var attempts atomic.Int32
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
n := attempts.Add(1)
if n == 1 {
w.WriteHeader(http.StatusTooManyRequests)
return
}
if r.Header.Get("Content-Type") != "application/json" {
t.Error("expected Content-Type application/json on retry")
}
w.WriteHeader(http.StatusNoContent)
}))
defer srv.Close()
p := &Provider{
APIToken: "test-token",
BaseURL: srv.URL,
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
body := map[string]string{"key": "value"}
resp, err := p.doRequest(ctx, http.MethodPatch, "/test", body)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
resp.Body.Close()
if got := attempts.Load(); got != 2 {
t.Fatalf("expected 2 attempts, got %d", got)
}
}