gatus/alerting/provider/twilio/twilio_test.go

79 lines
2.9 KiB
Go
Raw Normal View History

package twilio
2020-10-22 03:18:06 +02:00
import (
2021-02-20 01:06:20 +01:00
"net/http"
"strings"
2020-10-22 03:18:06 +02:00
"testing"
2020-12-11 02:00:42 +01:00
"github.com/TwinProduction/gatus/alerting/alert"
2020-12-11 02:00:42 +01:00
"github.com/TwinProduction/gatus/core"
2020-10-22 03:18:06 +02:00
)
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_ToCustomAlertProviderWithResolvedAlert(t *testing.T) {
2020-10-22 03:18:06 +02:00
provider := AlertProvider{
SID: "1",
2021-02-20 01:06:20 +01:00
Token: "2",
From: "3",
To: "4",
2020-10-22 03:18:06 +02:00
}
2021-05-16 03:54:23 +02:00
description := "alert-description"
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{Name: "service-name"}, &alert.Alert{Description: &description}, &core.Result{}, true)
2020-10-22 03:18:06 +02:00
if customAlertProvider == nil {
2021-02-20 01:06:20 +01:00
t.Fatal("customAlertProvider shouldn't have been nil")
2020-10-22 03:18:06 +02:00
}
if !strings.Contains(customAlertProvider.Body, "RESOLVED") {
t.Error("customAlertProvider.Body should've contained the substring RESOLVED")
}
2021-02-20 01:06:20 +01:00
if customAlertProvider.URL != "https://api.twilio.com/2010-04-01/Accounts/1/Messages.json" {
t.Errorf("expected URL to be %s, got %s", "https://api.twilio.com/2010-04-01/Accounts/1/Messages.json", customAlertProvider.URL)
}
if customAlertProvider.Method != http.MethodPost {
t.Errorf("expected method to be %s, got %s", http.MethodPost, customAlertProvider.Method)
}
if customAlertProvider.Body != "Body=RESOLVED%3A+service-name+-+alert-description&From=3&To=4" {
t.Errorf("expected body to be %s, got %s", "Body=RESOLVED%3A+service-name+-+alert-description&From=3&To=4", customAlertProvider.Body)
}
}
func TestAlertProvider_ToCustomAlertProviderWithTriggeredAlert(t *testing.T) {
provider := AlertProvider{
2021-02-20 01:06:20 +01:00
SID: "4",
Token: "3",
From: "2",
To: "1",
}
2021-05-16 03:54:23 +02:00
description := "alert-description"
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{Name: "service-name"}, &alert.Alert{Description: &description}, &core.Result{}, false)
if customAlertProvider == nil {
2021-02-20 01:06:20 +01:00
t.Fatal("customAlertProvider shouldn't have been nil")
}
if !strings.Contains(customAlertProvider.Body, "TRIGGERED") {
t.Error("customAlertProvider.Body should've contained the substring TRIGGERED")
}
2021-02-20 01:06:20 +01:00
if customAlertProvider.URL != "https://api.twilio.com/2010-04-01/Accounts/4/Messages.json" {
t.Errorf("expected URL to be %s, got %s", "https://api.twilio.com/2010-04-01/Accounts/4/Messages.json", customAlertProvider.URL)
}
if customAlertProvider.Method != http.MethodPost {
t.Errorf("expected method to be %s, got %s", http.MethodPost, customAlertProvider.Method)
}
if customAlertProvider.Body != "Body=TRIGGERED%3A+service-name+-+alert-description&From=2&To=1" {
t.Errorf("expected body to be %s, got %s", "Body=TRIGGERED%3A+service-name+-+alert-description&From=2&To=1", customAlertProvider.Body)
}
2020-10-22 03:18:06 +02:00
}