mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
26 lines
774 B
Go
26 lines
774 B
Go
package pagerduty
|
|
|
|
import (
|
|
"github.com/TwinProduction/gatus/core"
|
|
"testing"
|
|
)
|
|
|
|
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")
|
|
}
|
|
}
|
|
|
|
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")
|
|
}
|
|
}
|