gatus/alerting/provider/pagerduty/pagerduty_test.go

42 lines
1.4 KiB
Go
Raw Normal View History

package pagerduty
2020-10-22 03:18:06 +02:00
import (
"strings"
2020-10-22 03:18:06 +02:00
"testing"
2020-12-11 02:00:42 +01:00
"github.com/TwinProduction/gatus/core"
2020-10-22 03:18:06 +02:00
)
func TestAlertProvider_IsValid(t *testing.T) {
invalidProvider := AlertProvider{IntegrationKey: ""}
if invalidProvider.IsValid() {
t.Error("provider shouldn't have been valid")
}
validProvider := AlertProvider{IntegrationKey: "00000000000000000000000000000000"}
if !validProvider.IsValid() {
t.Error("provider should've been valid")
}
}
2020-10-22 03:18:06 +02:00
func TestAlertProvider_ToCustomAlertProviderWithResolvedAlert(t *testing.T) {
2020-10-22 03:18:06 +02:00
provider := AlertProvider{IntegrationKey: "00000000000000000000000000000000"}
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &core.Alert{}, &core.Result{}, true)
if customAlertProvider == nil {
t.Error("customAlertProvider shouldn't have been nil")
}
if !strings.Contains(customAlertProvider.Body, "RESOLVED") {
t.Error("customAlertProvider.Body should've contained the substring RESOLVED")
}
}
func TestAlertProvider_ToCustomAlertProviderWithTriggeredAlert(t *testing.T) {
provider := AlertProvider{IntegrationKey: "00000000000000000000000000000000"}
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &core.Alert{}, &core.Result{}, false)
if customAlertProvider == nil {
t.Error("customAlertProvider shouldn't have been nil")
}
if !strings.Contains(customAlertProvider.Body, "TRIGGERED") {
t.Error("customAlertProvider.Body should've contained the substring TRIGGERED")
}
2020-10-22 03:18:06 +02:00
}