gatus/alerting/provider/twilio/twilio_test.go

36 lines
775 B
Go
Raw Normal View History

package twilio
2020-10-22 03:18:06 +02:00
import (
"github.com/TwinProduction/gatus/core"
"testing"
)
func TestTwilioAlertProvider_IsValid(t *testing.T) {
invalidProvider := AlertProvider{}
if invalidProvider.IsValid() {
t.Error("provider shouldn't have been valid")
}
validProvider := AlertProvider{
SID: "1",
Token: "1",
From: "1",
To: "1",
}
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{
SID: "1",
Token: "1",
From: "1",
To: "1",
}
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &core.Alert{}, &core.Result{}, true)
if customAlertProvider == nil {
t.Error("customAlertProvider shouldn't have been nil")
}
}