generated from xmidt-org/.go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconversions_test.go
106 lines (83 loc) · 2.13 KB
/
conversions_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
// SPDX-FileCopyrightText: 2022 Comcast Cable Communications Management, LLC
// SPDX-License-Identifier: Apache-2.0
package touchstone
import (
"testing"
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/suite"
)
type CollectorAsTestSuite struct {
suite.Suite
}
func (suite *CollectorAsTestSuite) TestNilInterface() {
suite.Panics(func() {
c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "test",
})
CollectorAs(c, nil)
})
}
func (suite *CollectorAsTestSuite) TestNonPointer() {
suite.Panics(func() {
c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "test",
})
CollectorAs(c, 123)
})
}
func (suite *CollectorAsTestSuite) TestNilPointer() {
suite.Panics(func() {
c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "test",
})
var thisIsNil *prometheus.Counter
CollectorAs(c, thisIsNil)
})
}
func (suite *CollectorAsTestSuite) TestInvalidTarget() {
suite.Panics(func() {
c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "test",
})
var invalid int
CollectorAs(c, &invalid)
})
}
func (suite *CollectorAsTestSuite) TestMetric() {
c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "test",
})
var target prometheus.Counter
suite.Require().True(CollectorAs(c, &target))
suite.Equal(c, target)
}
func (suite *CollectorAsTestSuite) TestVector() {
cv := prometheus.NewCounterVec(prometheus.CounterOpts{
Name: "test",
}, []string{"label1"})
var target *prometheus.CounterVec
suite.Require().True(CollectorAs(cv, &target))
suite.Equal(cv, target)
}
func (suite *CollectorAsTestSuite) TestCustomInterface() {
type incrementer interface {
Inc()
}
c := prometheus.NewCounter(prometheus.CounterOpts{
Name: "test",
})
var target incrementer
suite.Require().True(CollectorAs(c, &target))
suite.Equal(c, target)
}
func (suite *CollectorAsTestSuite) TestWrongTargetType() {
cv := prometheus.NewCounterVec(prometheus.CounterOpts{
Name: "test",
}, []string{"label1"})
var target *prometheus.GaugeVec
suite.False(CollectorAs(cv, &target))
suite.Nil(target)
}
func TestCollectorAs(t *testing.T) {
suite.Run(t, new(CollectorAsTestSuite))
}