2020-09-19 22:29:08 +02:00
|
|
|
package twilio
|
2020-09-19 22:22:12 +02:00
|
|
|
|
2020-10-22 03:18:06 +02:00
|
|
|
import (
|
2020-10-22 03:34:01 +02:00
|
|
|
"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
|
|
|
)
|
2020-09-19 22:22:12 +02:00
|
|
|
|
|
|
|
func TestTwilioAlertProvider_IsValid(t *testing.T) {
|
2020-09-19 22:29:08 +02:00
|
|
|
invalidProvider := AlertProvider{}
|
2020-09-19 22:22:12 +02:00
|
|
|
if invalidProvider.IsValid() {
|
|
|
|
t.Error("provider shouldn't have been valid")
|
|
|
|
}
|
2020-09-19 22:29:08 +02:00
|
|
|
validProvider := AlertProvider{
|
2020-09-19 22:22:12 +02:00
|
|
|
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
|
|
|
|
2020-10-22 03:34:01 +02:00
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithResolvedAlert(t *testing.T) {
|
2020-10-22 03:18:06 +02:00
|
|
|
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")
|
|
|
|
}
|
2020-10-22 03:34:01 +02:00
|
|
|
if !strings.Contains(customAlertProvider.Body, "RESOLVED") {
|
|
|
|
t.Error("customAlertProvider.Body should've contained the substring RESOLVED")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithTriggeredAlert(t *testing.T) {
|
|
|
|
provider := AlertProvider{
|
|
|
|
SID: "1",
|
|
|
|
Token: "1",
|
|
|
|
From: "1",
|
|
|
|
To: "1",
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|