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 (
|
2021-02-20 01:06:20 +01:00
|
|
|
"net/http"
|
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
|
|
|
|
2021-05-19 04:29:15 +02: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
|
|
|
)
|
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",
|
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"
|
2021-05-19 04:29:15 +02:00
|
|
|
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
|
|
|
}
|
2020-10-22 03:34:01 +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)
|
|
|
|
}
|
2020-10-22 03:34:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithTriggeredAlert(t *testing.T) {
|
|
|
|
provider := AlertProvider{
|
2021-02-20 01:06:20 +01:00
|
|
|
SID: "4",
|
|
|
|
Token: "3",
|
|
|
|
From: "2",
|
2020-10-22 03:34:01 +02:00
|
|
|
To: "1",
|
|
|
|
}
|
2021-05-16 03:54:23 +02:00
|
|
|
description := "alert-description"
|
2021-05-19 04:29:15 +02:00
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{Name: "service-name"}, &alert.Alert{Description: &description}, &core.Result{}, false)
|
2020-10-22 03:34:01 +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:34:01 +02:00
|
|
|
}
|
|
|
|
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
|
|
|
}
|