forked from czerwonk/junos_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collectors_test.go
94 lines (84 loc) · 2.42 KB
/
collectors_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/czerwonk/junos_exporter/config"
"github.com/czerwonk/junos_exporter/connector"
"github.com/czerwonk/junos_exporter/interfacelabels"
)
func TestCollectorsRegistered(t *testing.T) {
c := &config.Config{
Features: config.FeatureConfig{
Alarm: true,
Environment: true,
BGP: true,
OSPF: true,
ISIS: true,
NAT: true,
L2Circuit: true,
LDP: true,
Routes: true,
RoutingEngine: true,
Firewall: true,
Interfaces: true,
InterfaceDiagnostic: true,
InterfaceQueue: true,
Storage: true,
Accounting: true,
IPSec: true,
FPC: true,
RPKI: true,
},
}
cols := collectorsForDevices([]*connector.Device{&connector.Device{
Host: "::1",
}}, c, "", interfacelabels.NewDynamicLabels())
assert.Equal(t, 19, len(cols.collectors), "collector count")
}
func TestCollectorsForDevices(t *testing.T) {
c := &config.Config{
Features: config.FeatureConfig{
Alarm: true,
Environment: true,
BGP: true,
OSPF: true,
ISIS: true,
NAT: true,
L2Circuit: true,
LDP: true,
Routes: true,
RoutingEngine: true,
Firewall: true,
Interfaces: true,
InterfaceDiagnostic: true,
InterfaceQueue: true,
Storage: true,
Accounting: true,
IPSec: true,
FPC: true,
RPKI: true,
},
Devices: []*config.DeviceConfig{
&config.DeviceConfig{
Host: "2001:678:1e0::1",
},
&config.DeviceConfig{
Host: "2001:678:1e0::2",
Features: &config.FeatureConfig{
Interfaces: true,
},
},
},
}
d1 := &connector.Device{
Host: "2001:678:1e0::1",
}
d2 := &connector.Device{
Host: "2001:678:1e0::2",
}
cols := collectorsForDevices([]*connector.Device{d1, d2}, c, "", interfacelabels.NewDynamicLabels())
assert.Equal(t, 19, len(cols.collectorsForDevice(d1)), "device 1 collector count")
cd2 := cols.collectorsForDevice(d2)
assert.Equal(t, 1, len(cd2), "device 2 collector count")
assert.Equal(t, "Interfaces", cd2[0].Name(), "device 2 collector name")
}