minitor-go/main_test.go

137 lines
2.8 KiB
Go
Raw Normal View History

package main
import "testing"
func TestCheckMonitors(t *testing.T) {
cases := []struct {
2019-10-04 23:17:36 +00:00
config Config
expectErr bool
name string
}{
{
2019-10-04 23:17:36 +00:00
config: Config{},
expectErr: false,
name: "Empty",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
Name: "Success",
Command: CommandOrShell{Command: []string{"true"}},
},
},
},
2019-10-04 23:17:36 +00:00
expectErr: false,
name: "Monitor success, no alerts",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
Name: "Failure",
Command: CommandOrShell{Command: []string{"false"}},
AlertAfter: 1,
},
},
},
2019-10-04 23:17:36 +00:00
expectErr: false,
2021-01-08 23:31:22 +00:00
name: "Monitor failure, no alerts",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
Name: "Success",
Command: CommandOrShell{Command: []string{"ls"}},
alertCount: 1,
},
2021-01-08 23:31:22 +00:00
},
},
expectErr: false,
name: "Monitor recovery, no alerts",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
2021-01-08 23:31:22 +00:00
Name: "Failure",
Command: CommandOrShell{Command: []string{"false"}},
AlertDown: []string{"unknown"},
AlertAfter: 1,
},
},
},
expectErr: true,
name: "Monitor failure, unknown alerts",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
Name: "Success",
Command: CommandOrShell{Command: []string{"true"}},
AlertUp: []string{"unknown"},
alertCount: 1,
},
},
},
2021-01-08 23:31:22 +00:00
expectErr: true,
name: "Monitor recovery, unknown alerts",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
Name: "Failure",
Command: CommandOrShell{Command: []string{"false"}},
AlertDown: []string{"good"},
AlertAfter: 1,
},
},
Alerts: map[string]*Alert{
2022-01-22 04:39:28 +00:00
"good": {
Command: CommandOrShell{Command: []string{"true"}},
},
},
},
2019-10-04 23:17:36 +00:00
expectErr: false,
name: "Monitor failure, successful alert",
},
{
config: Config{
Monitors: []*Monitor{
2022-01-22 04:39:28 +00:00
{
Name: "Failure",
Command: CommandOrShell{Command: []string{"false"}},
AlertDown: []string{"bad"},
AlertAfter: 1,
},
},
Alerts: map[string]*Alert{
2022-01-22 04:39:28 +00:00
"bad": {
Name: "bad",
Command: CommandOrShell{Command: []string{"false"}},
},
},
},
2019-10-04 23:17:36 +00:00
expectErr: true,
name: "Monitor failure, bad alert",
},
}
for _, c := range cases {
2021-01-08 23:31:22 +00:00
err := c.config.Init()
if err != nil {
t.Errorf("checkMonitors(%s): unexpected error reading config: %v", c.name, err)
}
err = checkMonitors(&c.config)
2019-10-04 23:17:36 +00:00
if err == nil && c.expectErr {
t.Errorf("checkMonitors(%s): Expected panic, the code did not panic", c.name)
2021-01-08 23:31:22 +00:00
} else if err != nil && !c.expectErr {
t.Errorf("checkMonitors(%s): Did not expect an error, but we got one anyway: %v", c.name, err)
2019-10-04 23:17:36 +00:00
}
}
}