-
Notifications
You must be signed in to change notification settings - Fork 35
/
ha_cluster_exporter_test.go
270 lines (243 loc) · 7.46 KB
/
ha_cluster_exporter_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
package main
import (
"context"
"fmt"
"io/ioutil"
"net"
"net/http"
"net/url"
"os"
"os/exec"
"reflect"
"runtime"
"strings"
"syscall"
"testing"
"time"
"github.com/go-kit/log"
"github.com/prometheus/client_golang/prometheus"
// We could also mock this but test files alrady exist in test dir
//"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
)
func TestRegisterCollectors(t *testing.T) {
// We could also mock this but test files alrady exist in test dir
// filesystem as os.Stat() is run in default_collector.go
// fs := afero.NewMemMapFs() # does not work
//fs := afero.NewOsFs()
//fs.MkdirAll("test/bin", 0755)
//afero.WriteFile(fs, "test/bin/crm-mon-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/cibadmin-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/corosync-cfgtoolpath-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/corosync-quorumtool-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/sbd-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/sbd-config-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/drbdsetup-path", []byte(""), 0755)
//afero.WriteFile(fs, "test/bin/drbdsplitbrain-path", []byte(""), 0755)
*haClusterCrmMonPath = "test/fake_crm_mon.sh"
*haClusterCibadminPath = "test/fake_cibadmin.sh"
*haClusterCorosyncCfgtoolpathPath = "test/fake_corosync-cfgtool.sh"
*haClusterCorosyncQuorumtoolPath = "test/fake_corosync-quorumtool.sh"
*haClusterSbdPath = "test/fake_sbd.sh"
*haClusterSbdConfigPath = "test/fake_sbdconfig"
*haClusterDrbdsetupPath = "test/fake_drbdsetup.sh"
*haClusterDrbdsplitbrainPath = "test/fake_drbdsplitbrain"
t.Run("success", func(t *testing.T) {
wantCollectors := 4
wantErrors := 0
prometheus.DefaultRegisterer = prometheus.NewRegistry()
prometheus.DefaultGatherer = prometheus.NewRegistry()
collectors, errors := registerCollectors(log.NewNopLogger())
assert.Len(t, collectors, wantCollectors)
assert.Len(t, errors, wantErrors)
})
*haClusterCrmMonPath = "does_not_exist"
t.Run("1 failure", func(t *testing.T) {
wantCollectors := 3
wantErrors := 1
prometheus.DefaultRegisterer = prometheus.NewRegistry()
prometheus.DefaultGatherer = prometheus.NewRegistry()
collectors, errors := registerCollectors(log.NewNopLogger())
assert.Len(t, collectors, wantCollectors)
assert.Len(t, errors, wantErrors)
})
*haClusterCorosyncCfgtoolpathPath = "does_not_exist"
t.Run("2 failures", func(t *testing.T) {
wantCollectors := 2
wantErrors := 2
prometheus.DefaultRegisterer = prometheus.NewRegistry()
prometheus.DefaultGatherer = prometheus.NewRegistry()
collectors, errors := registerCollectors(log.NewNopLogger())
assert.Len(t, collectors, wantCollectors)
assert.Len(t, errors, wantErrors)
})
*haClusterSbdPath = "does_not_exist"
t.Run("3 failures", func(t *testing.T) {
wantCollectors := 1
wantErrors := 3
prometheus.DefaultRegisterer = prometheus.NewRegistry()
prometheus.DefaultGatherer = prometheus.NewRegistry()
collectors, errors := registerCollectors(log.NewNopLogger())
assert.Len(t, collectors, wantCollectors)
assert.Len(t, errors, wantErrors)
})
*haClusterDrbdsetupPath = "does_not_exist"
t.Run("4 failures", func(t *testing.T) {
wantCollectors := 0
wantErrors := 4
prometheus.DefaultRegisterer = prometheus.NewRegistry()
prometheus.DefaultGatherer = prometheus.NewRegistry()
collectors, errors := registerCollectors(log.NewNopLogger())
assert.Len(t, collectors, wantCollectors)
assert.Len(t, errors, wantErrors)
})
//fs.RemoveAll("test/bin")
}
//// Kudos for the build/run tests to https://github.com/prometheus/mysqld_exporter
// TestBin builds, runs and tests binary.
// bin stores information about path of executable and attached port
type bin struct {
path string
port int
}
func TestBin(t *testing.T) {
var err error
binName := "ha"
binDir, err := ioutil.TempDir("/tmp", binName+"-test-bindir-")
if err != nil {
t.Fatal(err)
}
defer func() {
err := os.RemoveAll(binDir)
if err != nil {
t.Fatal(err)
}
}()
importpath := "github.com/prometheus/ha_cluster_exporter/vendor/github.com/prometheus/common"
path := binDir + "/" + binName
xVariables := map[string]string{
importpath + "/version.Version": "gotest-version",
importpath + "/version.Branch": "gotest-branch",
importpath + "/version.Revision": "gotest-revision",
}
var ldflags []string
for x, value := range xVariables {
ldflags = append(ldflags, fmt.Sprintf("-X %s=%s", x, value))
}
cmd := exec.Command(
"go",
"build",
"-o",
path,
"-ldflags",
strings.Join(ldflags, " "),
)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
t.Fatalf("Failed to build: %s", err)
}
tests := []func(*testing.T, bin){
testLandingPage,
}
portStart := 56000
t.Run(binName, func(t *testing.T) {
for _, f := range tests {
f := f // capture range variable
fName := runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()
portStart++
data := bin{
path: path,
port: portStart,
}
t.Run(fName, func(t *testing.T) {
t.Parallel()
f(t, data)
})
}
})
}
func testLandingPage(t *testing.T, data bin) {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
// Run exporter.
servePath := "/metrics"
cmd := exec.CommandContext(
ctx,
data.path,
"--web.listen-address", fmt.Sprintf(":%d", data.port),
"--web.telemetry-path", fmt.Sprintf("%s", servePath),
"--crm-mon-path=test/fake_crm_mon.sh", // needed to register at least one collector
"--cibadmin-path=test/fake_cibadmin.sh",
)
if err := cmd.Start(); err != nil {
t.Fatal(err)
}
defer cmd.Wait()
defer cmd.Process.Kill()
// Get the main page.
urlToGet := fmt.Sprintf("http://127.0.0.1:%d", data.port)
body, err := waitForBody(urlToGet)
if err != nil {
t.Fatal(err)
}
got := string(body)
expected := `<html>
<head>
<title>ClusterLabs Linux HA Cluster Exporter</title>
</head>
<body>
<h1>ClusterLabs Linux HA Cluster Exporter</h1>
<h2>Prometheus exporter for Pacemaker based Linux HA clusters</h2>
<ul>
<li><a href="` + servePath + `">Metrics</a></li>
<li><a href="https://github.com/ClusterLabs/ha_cluster_exporter" target="_blank">GitHub</a></li>
</ul>
</body>
</html>
`
if got != expected {
t.Fatalf("got '%s' but expected '%s'", got, expected)
}
}
// waitForBody is a helper function which makes http calls until http server is up
// and then returns body of the successful call.
func waitForBody(urlToGet string) (body []byte, err error) {
tries := 60
// Get data, but we need to wait a bit for http server.
for i := 0; i <= tries; i++ {
// Try to get web page.
body, err = getBody(urlToGet)
if err == nil {
return body, err
}
// If there is a syscall.ECONNREFUSED error (web server not available) then retry.
if urlError, ok := err.(*url.Error); ok {
if opError, ok := urlError.Err.(*net.OpError); ok {
if osSyscallError, ok := opError.Err.(*os.SyscallError); ok {
if osSyscallError.Err == syscall.ECONNREFUSED {
time.Sleep(1 * time.Second)
continue
}
}
}
}
// There was an error, and it wasn't syscall.ECONNREFUSED.
return nil, err
}
return nil, fmt.Errorf("failed to GET %s after %d tries: %s", urlToGet, tries, err)
}
// getBody is a helper function which retrieves http body from given address.
func getBody(urlToGet string) ([]byte, error) {
resp, err := http.Get(urlToGet)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return body, nil
}