-
Notifications
You must be signed in to change notification settings - Fork 43
/
bench_test.go
58 lines (49 loc) · 1.14 KB
/
bench_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
package httpsnoop
import (
"net/http"
"net/http/httptest"
"testing"
)
func BenchmarkBaseline(b *testing.B) {
benchmark(b, 0)
}
func BenchmarkCaptureMetrics(b *testing.B) {
benchmark(b, 1)
}
func BenchmarkCaptureMetricsTwice(b *testing.B) {
benchmark(b, 2)
}
func BenchmarkWrap(b *testing.B) {
b.StopTimer()
doneCh := make(chan struct{}, 1)
h := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
b.StartTimer()
for i := 0; i < b.N; i++ {
Wrap(w, Hooks{})
}
doneCh <- struct{}{}
})
s := httptest.NewServer(h)
defer s.Close()
if _, err := http.Get(s.URL); err != nil {
b.Fatal(err)
}
<-doneCh
}
func benchmark(b *testing.B, wrappings int) {
dummyH := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {})
h := dummyH
for x := 0; x < wrappings; x++ {
hCopy := h
h = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
CaptureMetrics(hCopy, w, r)
})
}
req := httptest.NewRequest(http.MethodGet, "/", http.NoBody)
resp := httptest.NewRecorder() // ok to reuse; we're not writing anything to it
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
h.ServeHTTP(resp, req)
}
}