2020-09-19 22:29:08 +02:00
|
|
|
package pagerduty
|
|
|
|
|
2020-10-22 03:18:06 +02:00
|
|
|
import (
|
|
|
|
"github.com/TwinProduction/gatus/core"
|
|
|
|
"testing"
|
|
|
|
)
|
2020-09-19 22:29:08 +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_ToCustomAlertProvider(t *testing.T) {
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|