forked from tcnksm/go-httpstat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpstat_test.go
316 lines (267 loc) · 7.32 KB
/
httpstat_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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
package httpstat
import (
"bytes"
"fmt"
"io"
"net"
"net/http"
"testing"
"time"
)
const (
TestDomainHTTP = "http://example.com"
TestDomainHTTPS = "https://example.com"
)
func DefaultTransport() *http.Transport {
// It comes from std transport.go
return &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).DialContext,
MaxIdleConns: 100,
IdleConnTimeout: 90 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
}
}
// To avoid shared transport
func DefaultClient() *http.Client {
return &http.Client{
Transport: DefaultTransport(),
}
}
func NewRequest(t *testing.T, urlStr string, result *Result) *http.Request {
req, err := http.NewRequest("GET", urlStr, nil)
if err != nil {
t.Fatal("NewRequest failed:", err)
}
ctx := WithHTTPStat(req.Context(), result)
return req.WithContext(ctx)
}
func TestHTTPStat_HTTPS(t *testing.T) {
var result Result
req := NewRequest(t, TestDomainHTTPS, &result)
client := DefaultClient()
res, err := client.Do(req)
if err != nil {
t.Fatal("client.Do failed:", err)
}
if _, err := io.Copy(io.Discard, res.Body); err != nil {
t.Fatal("io.Copy failed:", err)
}
res.Body.Close()
result.End()
if !result.isTLS {
t.Fatal("isTLS should be true")
}
for k, d := range result.durations() {
if d <= 0*time.Millisecond {
t.Fatalf("expect %s to be non-zero", k)
}
}
}
func TestHTTPStat_HTTP(t *testing.T) {
var result Result
req := NewRequest(t, TestDomainHTTP, &result)
client := DefaultClient()
res, err := client.Do(req)
if err != nil {
t.Fatal("client.Do failed:", err)
}
if _, err := io.Copy(io.Discard, res.Body); err != nil {
t.Fatal("io.Copy failed:", err)
}
res.Body.Close()
result.End()
if result.isTLS {
t.Fatal("isTLS should be false")
}
if got, want := result.TLSHandshake, 0*time.Millisecond; got != want {
t.Fatalf("TLSHandshake time of HTTP = %d, want %d", got, want)
}
// Except TLS should be non zero
durations := result.durations()
delete(durations, "TLSHandshake")
for k, d := range durations {
if d <= 0*time.Millisecond {
t.Fatalf("expect %s to be non-zero", k)
}
}
}
func TestHTTPStat_KeepAlive(t *testing.T) {
req1, err := http.NewRequest("GET", TestDomainHTTPS, nil)
if err != nil {
t.Fatal("NewRequest failed:", err)
}
client := DefaultClient()
res1, err := client.Do(req1)
if err != nil {
t.Fatal("Request failed:", err)
}
if _, err := io.Copy(io.Discard, res1.Body); err != nil {
t.Fatal("Copy body failed:", err)
}
res1.Body.Close()
var result Result
req2 := NewRequest(t, TestDomainHTTPS, &result)
// When second request, connection should be re-used.
res2, err := client.Do(req2)
if err != nil {
t.Fatal("Request failed:", err)
}
if _, err := io.Copy(io.Discard, res2.Body); err != nil {
t.Fatal("Copy body failed:", err)
}
res2.Body.Close()
result.End()
// The following values should be zero.
// Because connection is reused.
durations := []time.Duration{
result.DNSLookup,
result.TCPConnection,
result.TLSHandshake,
}
for i, d := range durations {
if got, want := d, 0*time.Millisecond; got != want {
t.Fatalf("#%d expect %d to be eq %d", i, got, want)
}
}
}
func TestHTTPStat_beforeGO17(t *testing.T) {
var result Result
req := NewRequest(t, TestDomainHTTPS, &result)
// Before go1.7, it uses non context based Dial function.
// It doesn't support httptrace.
oldTransport := &http.Transport{
Dial: (&net.Dialer{
Timeout: 5 * time.Second,
}).Dial,
TLSHandshakeTimeout: 5 * time.Second,
}
client := &http.Client{
Timeout: time.Second * 10,
Transport: oldTransport,
}
res, err := client.Do(req)
if err != nil {
t.Fatal("client.Do failed:", err)
}
if _, err := io.Copy(io.Discard, res.Body); err != nil {
t.Fatal("io.Copy failed:", err)
}
res.Body.Close()
result.End()
// The following values are not mesured.
durations := []time.Duration{
result.DNSLookup,
result.TCPConnection,
// result.TLSHandshake,
}
for i, d := range durations {
if got, want := d, 0*time.Millisecond; got != want {
t.Fatalf("#%d expect %d to be eq %d", i, got, want)
}
}
}
func TestTotal_Zero(t *testing.T) {
result := &Result{}
result.End()
zero := 0 * time.Millisecond
if result.total != zero {
t.Fatalf("Total time is %d, want %d", result.total, zero)
}
if result.contentTransfer != zero {
t.Fatalf("Total time is %d, want %d", result.contentTransfer, zero)
}
}
func TestContentTransfer(t *testing.T) {
var result Result
req := NewRequest(t, TestDomainHTTPS, &result)
client := DefaultClient()
res, err := client.Do(req)
if err != nil {
t.Fatal("client.Do failed:", err)
}
if _, err := io.Copy(io.Discard, res.Body); err != nil {
t.Fatal("io.Copy failed:", err)
}
res.Body.Close()
// Expect content transfer times to be inequal when called before End().
ct1 := result.ContentTransfer()
time.Sleep(10 * time.Millisecond)
ct2 := result.ContentTransfer()
if ct1 == ct2 {
t.Fatalf("ContentTransfer times are %d and %d, but they should not be equal.", ct1, ct2)
}
// Call End() to mark end of HTTP request (usually done right after reading response body).
result.End()
// Expect content transfer times to be equal when called after End().
ct1 = result.ContentTransfer()
time.Sleep(10 * time.Millisecond)
ct2 = result.ContentTransfer()
if ct1 != ct2 {
t.Fatalf("ContentTransfer times are %d and %d, but they should be equal.", ct1, ct2)
}
}
func TestTotal(t *testing.T) {
var result Result
req := NewRequest(t, TestDomainHTTPS, &result)
client := DefaultClient()
res, err := client.Do(req)
if err != nil {
t.Fatal("client.Do failed:", err)
}
if _, err := io.Copy(io.Discard, res.Body); err != nil {
t.Fatal("io.Copy failed:", err)
}
res.Body.Close()
// Expect total times to be inequal when called before End().
total1 := result.Total()
time.Sleep(10 * time.Millisecond)
total2 := result.Total()
if total1 == total2 {
t.Fatalf("Total times are %d and %d, but they should not be equal.", total1, total2)
}
// Call End() to mark end of HTTP request (usually done right after reading response body).
result.End()
// Expect total times to be equal when called after End().
total1 = result.Total()
time.Sleep(10 * time.Millisecond)
total2 = result.Total()
if total1 != total2 {
t.Fatalf("Total times are %d and %d, but they should be equal.", total1, total2)
}
}
func TestHTTPStat_Formatter(t *testing.T) {
result := Result{
DNSLookup: 100 * time.Millisecond,
TCPConnection: 100 * time.Millisecond,
TLSHandshake: 100 * time.Millisecond,
ServerProcessing: 100 * time.Millisecond,
contentTransfer: 100 * time.Millisecond,
NameLookup: 100 * time.Millisecond,
Connect: 100 * time.Millisecond,
Pretransfer: 100 * time.Millisecond,
StartTransfer: 100 * time.Millisecond,
total: 100 * time.Millisecond,
t5: time.Now(),
}
want := `DNS lookup: 100 ms
TCP connection: 100 ms
TLS handshake: 100 ms
Server processing: 100 ms
Content transfer: 100 ms
Name Lookup: 100 ms
Connect: 100 ms
Pre Transfer: 100 ms
Start Transfer: 100 ms
Total: 100 ms
`
var buf bytes.Buffer
fmt.Fprintf(&buf, "%+v", result)
if got := buf.String(); want != got {
t.Fatalf("expect to be eq:\n\nwant:\n\n%s\ngot:\n\n%s\n", want, got)
}
}