forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics_test.go
128 lines (109 loc) · 2.82 KB
/
metrics_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
package metrics
import (
"context"
"fmt"
"io/ioutil"
"net"
"net/http"
"net/http/httptest"
"net/url"
"os"
"sort"
"strings"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/testutil"
)
func testingHTTPClient(handler http.Handler) (*http.Client, func()) {
s := httptest.NewServer(handler)
cli := &http.Client{
Transport: &http.Transport{
DialContext: func(_ context.Context, network, _ string) (net.Conn, error) {
return net.Dial(network, s.Listener.Addr().String())
},
},
}
return cli, s.Close
}
func doRequest(hc *http.Client, u string) error {
req, err := http.NewRequest("GET", u, nil)
if err != nil {
return err
}
_, err = hc.Do(req)
return err
}
func TestRequestMeterTransport(t *testing.T) {
rm := NewRequestMeter("foosystem", "Total number of requests sent to foosystem.")
h := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
time.Sleep(time.Millisecond * 10)
_, err := w.Write([]byte("the quick brown fox jumps over the lazy dog"))
if err != nil {
t.Error(err)
}
})
hc, teardown := testingHTTPClient(h)
defer teardown()
hc.Transport = rm.Transport(hc.Transport, func(u *url.URL) string {
return u.Path
})
err := doRequest(hc, "http://foosystem.com/apiCallA")
if err != nil {
t.Error(err)
}
err = doRequest(hc, "http://foosystem.com/apiCallB")
if err != nil {
t.Error(err)
}
c, err := rm.counter.GetMetricWith(map[string]string{"category": "/apiCallA", "code": "200", "host": "foosystem.com"})
if err != nil {
t.Error(err)
}
val := testutil.ToFloat64(c)
if val != 1.0 {
t.Errorf("expected counter == 1, got %f", val)
}
}
func TestMustRegisterDiskMonitor(t *testing.T) {
registry := prometheus.NewPedanticRegistry()
registerer = registry
defer func() { registerer = prometheus.DefaultRegisterer }()
want := []string{}
for i := 0; i <= 2; i++ {
path, err := ioutil.TempDir("", "")
if err != nil {
t.Fatal(err)
}
t.Cleanup(func() {
path := path
_ = os.RemoveAll(path)
})
// Register twice to ensure we don't panic and we don't collect twice.
MustRegisterDiskMonitor(path)
MustRegisterDiskMonitor(path)
want = append(want,
fmt.Sprintf("src_disk_space_available_bytes{path=%s}", path),
fmt.Sprintf("src_disk_space_total_bytes{path=%s}", path))
}
mfs, err := registry.Gather()
if err != nil {
t.Fatal(err)
}
var got []string
for _, mf := range mfs {
for _, m := range mf.Metric {
var labels []string
for _, l := range m.Label {
labels = append(labels, fmt.Sprintf("%s=%s", *l.Name, *l.Value))
}
got = append(got, fmt.Sprintf("%s{%s}", *mf.Name, strings.Join(labels, " ")))
}
}
sort.Strings(want)
sort.Strings(got)
if !cmp.Equal(want, got) {
t.Errorf("mismatch (-want +got):\n%s", cmp.Diff(want, got))
}
}