-
Notifications
You must be signed in to change notification settings - Fork 449
/
metrics_test.go
110 lines (89 loc) · 2.66 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
package toxiproxy
import (
"bufio"
"bytes"
"net/http"
"net/http/httptest"
"reflect"
"regexp"
"strings"
"testing"
"github.com/prometheus/client_golang/prometheus"
"github.com/rs/zerolog"
"github.com/Shopify/toxiproxy/v2/collectors"
"github.com/Shopify/toxiproxy/v2/stream"
)
func TestProxyMetricsReceivedSentBytes(t *testing.T) {
srv := NewServer(NewMetricsContainer(prometheus.NewRegistry()), zerolog.Nop())
srv.Metrics.ProxyMetrics = collectors.NewProxyMetricCollectors()
proxy := NewProxy(srv, "test_proxy_metrics_received_sent_bytes", "localhost:0", "upstream")
r := bufio.NewReader(bytes.NewBufferString("hello"))
w := &testWriteCloser{
bufio.NewWriter(bytes.NewBuffer([]byte{})),
}
linkName := "testupstream"
proxy.Toxics.StartLink(srv, linkName, r, w, stream.Upstream)
proxy.Toxics.RemoveLink(linkName)
actual := prometheusOutput(t, srv, "toxiproxy_proxy")
expected := []string{
`toxiproxy_proxy_received_bytes_total{` +
`direction="upstream",listener="localhost:0",` +
`proxy="test_proxy_metrics_received_sent_bytes",upstream="upstream"` +
`} 5`,
`toxiproxy_proxy_sent_bytes_total{` +
`direction="upstream",listener="localhost:0",` +
`proxy="test_proxy_metrics_received_sent_bytes",upstream="upstream"` +
`} 5`,
}
if !reflect.DeepEqual(actual, expected) {
t.Fatalf(
"\nexpected:\n [%v]\ngot:\n [%v]",
strings.Join(expected, "\n "),
strings.Join(actual, "\n "),
)
}
}
func TestRuntimeMetricsBuildInfo(t *testing.T) {
srv := NewServer(NewMetricsContainer(prometheus.NewRegistry()), zerolog.Nop())
srv.Metrics.RuntimeMetrics = collectors.NewRuntimeMetricCollectors()
expected := `go_build_info{checksum="[^"]*",path="[^"]*",version="[^"]*"} 1`
actual := prometheusOutput(t, srv, "go_build_info")
if len(actual) != 1 {
t.Fatalf(
"\nexpected: 1 item\ngot: %d item(s)\nmetrics:\n %+v",
len(actual),
strings.Join(actual, "\n "),
)
}
matched, err := regexp.MatchString(expected, actual[0])
if err != nil {
t.Fatalf("Unexpected error: %s", err)
}
if !matched {
t.Fatalf("\nexpected:\n %v\nto match:\n %v", actual[0], expected)
}
}
type testWriteCloser struct {
*bufio.Writer
}
func (t *testWriteCloser) Close() error {
return t.Flush()
}
func prometheusOutput(t *testing.T, apiServer *ApiServer, prefix string) []string {
t.Helper()
testServer := httptest.NewServer(apiServer.Metrics.handler())
defer testServer.Close()
resp, err := http.Get(testServer.URL)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
var selected []string
s := bufio.NewScanner(resp.Body)
for s.Scan() {
if strings.HasPrefix(s.Text(), prefix) {
selected = append(selected, s.Text())
}
}
return selected
}