-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummarizer_test.go
95 lines (79 loc) · 2.75 KB
/
summarizer_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
/*
* nagopher - Library for writing Nagios plugins in Go
* Copyright (C) 2018-2019 Pascal Mathis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nagopher
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestBaseSummarizer_Empty(t *testing.T) {
// when
summarizer := NewSummarizer()
// then
assert.Equal(t, "No check results", summarizer.Empty())
}
func TestBaseSummarizer_Ok(t *testing.T) {
// given
summarizer := NewSummarizer()
check := NewCheck("check", summarizer)
// when
check.Results().Add(
NewResult(ResultState(StateOk()), ResultHint("Result 1")),
NewResult(ResultState(StateOk()), ResultHint("Result 2")),
)
// then
assert.Equal(t, "Result 1", summarizer.Ok(check))
}
func TestBaseSummarizer_Fallback(t *testing.T) {
// given
summarizer := NewSummarizer()
// when
check := NewCheck("check", summarizer)
// then
assert.Equal(t, summarizer.Empty(), summarizer.Ok(check))
assert.Equal(t, summarizer.Empty(), summarizer.Problem(check))
}
func TestBaseSummarizer_Problem(t *testing.T) {
// given
summarizer := NewSummarizer()
check := NewCheck("check", summarizer)
// when
check.Results().Add(
NewResult(ResultState(StateOk()), ResultHint("Result OK")),
NewResult(ResultState(StateCritical()), ResultHint("Result CRITICAL")),
NewResult(ResultState(StateWarning()), ResultHint("Result WARNING")),
NewResult(ResultState(StateOk()), ResultHint("Result OK")),
)
// then
assert.Equal(t, "Result CRITICAL", summarizer.Problem(check))
}
func TestBaseSummarizer_Verbose(t *testing.T) {
// given
summarizer := NewSummarizer()
check := NewCheck("check", summarizer)
// when
check.Results().Add(
NewResult(ResultState(StateOk()), ResultHint("hidden from output")),
NewResult(ResultState(StateWarning()), ResultHint("Reason 1")),
NewResult(ResultState(StateCritical()), ResultHint("Reason 2")),
NewResult(ResultState(StateCritical()), ResultHint("Reason 3")),
NewResult(ResultState(StateInfo()), ResultHint("Informational Result")),
)
// then
expected := []string{"critical: Reason 2", "critical: Reason 3", "warning: Reason 1", "info: Informational Result"}
assert.Equal(t, expected, summarizer.Verbose(check))
}