forked from grafana/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent_health_test.go
104 lines (96 loc) · 2.16 KB
/
component_health_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
package component_test
import (
"testing"
"time"
"github.com/grafana/agent/component"
"github.com/stretchr/testify/require"
)
func TestMergeHealth(t *testing.T) {
var (
jan1 = time.Date(2023, time.January, 1, 0, 0, 0, 0, time.UTC)
jan2 = time.Date(2023, time.January, 2, 0, 0, 0, 0, time.UTC)
)
_ = jan2
tt := []struct {
name string
healths []component.Health
expectIndex int
}{
{
name: "returns first health",
healths: []component.Health{{
Health: component.HealthTypeHealthy,
UpdateTime: jan1,
}},
expectIndex: 0,
},
{
name: "exited > unhealthy",
healths: []component.Health{{
Health: component.HealthTypeUnhealthy,
UpdateTime: jan1,
}, {
Health: component.HealthTypeExited,
UpdateTime: jan1,
}},
expectIndex: 1,
},
{
name: "unhealthy > healthy",
healths: []component.Health{{
Health: component.HealthTypeHealthy,
UpdateTime: jan1,
}, {
Health: component.HealthTypeUnhealthy,
UpdateTime: jan1,
}},
expectIndex: 1,
},
{
name: "unknown > healthy",
healths: []component.Health{{
Health: component.HealthTypeHealthy,
UpdateTime: jan1,
}, {
Health: component.HealthTypeUnknown,
UpdateTime: jan1,
}},
expectIndex: 1,
},
{
name: "newer timestamp",
healths: []component.Health{{
Health: component.HealthTypeUnhealthy,
UpdateTime: jan1,
}, {
Health: component.HealthTypeUnhealthy,
UpdateTime: jan2,
}},
expectIndex: 1,
},
{
name: "use first found of matching health type and time",
healths: []component.Health{{
Health: component.HealthTypeHealthy,
UpdateTime: jan2,
}, {
Health: component.HealthTypeUnhealthy,
UpdateTime: jan2,
}, {
Health: component.HealthTypeUnhealthy,
UpdateTime: jan2,
}},
expectIndex: 1,
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
if len(tc.healths) == 0 {
panic("Must have at least one health in test case")
}
expect := tc.healths[tc.expectIndex]
actual := component.LeastHealthy(tc.healths[0], tc.healths[1:]...)
require.Equal(t, expect, actual)
})
}
}