generated from egvimo/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
56 lines (43 loc) · 1.16 KB
/
main_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
package main
import (
"testing"
"github.com/prometheus/client_golang/prometheus"
dto "github.com/prometheus/client_model/go"
"github.com/stretchr/testify/assert"
)
type MockFileSystem struct {
existingFiles map[string]bool
}
func (m MockFileSystem) FileExists(path string) bool {
return m.existingFiles[path]
}
func TestFileCollector(t *testing.T) {
mockFS := MockFileSystem{existingFiles: map[string]bool{
"/path/to/file1": true,
"/path/to/file2": false,
}}
files := []string{"/path/to/file1", "/path/to/file2"}
collector := NewFileCollector(files, mockFS)
ch := make(chan prometheus.Metric, len(files))
collector.Collect(ch)
metrics := map[string]float64{}
for i := 0; i < len(files); i++ {
metric := <-ch
dtoMetric := &dto.Metric{}
if err := metric.Write(dtoMetric); err != nil {
t.Fatalf("Failed to read metric: %v", err)
}
var fileLabel string
for _, label := range dtoMetric.GetLabel() {
if label.GetName() == "file" {
fileLabel = label.GetValue()
break
}
}
metrics[fileLabel] = dtoMetric.GetGauge().GetValue()
}
assert.Equal(t, map[string]float64{
"/path/to/file1": 1.0,
"/path/to/file2": 0.0,
}, metrics)
}