2020-09-19 22:29:08 +02:00
|
|
|
package pagerduty
|
|
|
|
|
2020-10-22 03:18:06 +02:00
|
|
|
import (
|
2021-02-20 01:06:20 +01:00
|
|
|
"encoding/json"
|
|
|
|
"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-10-04 03:53:59 +02:00
|
|
|
"github.com/TwinProduction/gatus/v3/alerting/alert"
|
|
|
|
"github.com/TwinProduction/gatus/v3/core"
|
2020-10-22 03:18:06 +02:00
|
|
|
)
|
2020-09-19 22:29:08 +02:00
|
|
|
|
2021-10-06 02:40:44 +02:00
|
|
|
func TestAlertProvider_IsValid(t *testing.T) {
|
2020-09-19 22:29:08 +02:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
|
|
|
|
func TestAlertProvider_IsValidWithOverride(t *testing.T) {
|
|
|
|
providerWithInvalidOverrideGroup := AlertProvider{
|
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
IntegrationKey: "00000000000000000000000000000000",
|
|
|
|
Group: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if providerWithInvalidOverrideGroup.IsValid() {
|
2021-10-06 02:01:36 +02:00
|
|
|
t.Error("provider Group shouldn't have been valid")
|
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
providerWithInvalidOverrideIntegrationKey := AlertProvider{
|
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
IntegrationKey: "",
|
|
|
|
Group: "group",
|
|
|
|
},
|
|
|
|
},
|
2021-10-06 02:01:36 +02:00
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
if providerWithInvalidOverrideIntegrationKey.IsValid() {
|
2021-10-06 02:01:36 +02:00
|
|
|
t.Error("provider integration key shouldn't have been valid")
|
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
providerWithValidOverride := AlertProvider{
|
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
IntegrationKey: "00000000000000000000000000000000",
|
|
|
|
Group: "group",
|
|
|
|
},
|
|
|
|
},
|
2021-10-06 02:01:36 +02:00
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
if !providerWithValidOverride.IsValid() {
|
2021-10-06 02:01:36 +02:00
|
|
|
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{IntegrationKey: "00000000000000000000000000000000"}
|
2021-05-19 04:29:15 +02:00
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &alert.Alert{}, &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://events.pagerduty.com/v2/enqueue" {
|
|
|
|
t.Errorf("expected URL to be %s, got %s", "https://events.pagerduty.com/v2/enqueue", customAlertProvider.URL)
|
|
|
|
}
|
|
|
|
if customAlertProvider.Method != http.MethodPost {
|
|
|
|
t.Errorf("expected method to be %s, got %s", http.MethodPost, customAlertProvider.Method)
|
|
|
|
}
|
|
|
|
body := make(map[string]interface{})
|
|
|
|
err := json.Unmarshal([]byte(customAlertProvider.Body), &body)
|
|
|
|
if err != nil {
|
|
|
|
t.Error("expected body to be valid JSON, got error:", err.Error())
|
|
|
|
}
|
2020-10-22 03:34:01 +02:00
|
|
|
}
|
|
|
|
|
2021-10-06 02:40:44 +02:00
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithResolvedAlertAndOverride(t *testing.T) {
|
2021-10-06 02:01:36 +02:00
|
|
|
provider := AlertProvider{
|
|
|
|
IntegrationKey: "",
|
2021-10-06 02:40:44 +02:00
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
IntegrationKey: "00000000000000000000000000000000",
|
|
|
|
Group: "group",
|
|
|
|
},
|
|
|
|
},
|
2021-10-06 02:01:36 +02:00
|
|
|
}
|
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &alert.Alert{}, &core.Result{}, true)
|
|
|
|
if customAlertProvider == nil {
|
|
|
|
t.Fatal("customAlertProvider shouldn't have been nil")
|
|
|
|
}
|
|
|
|
if !strings.Contains(customAlertProvider.Body, "RESOLVED") {
|
|
|
|
t.Error("customAlertProvider.Body should've contained the substring RESOLVED")
|
|
|
|
}
|
|
|
|
if customAlertProvider.URL != "https://events.pagerduty.com/v2/enqueue" {
|
|
|
|
t.Errorf("expected URL to be %s, got %s", "https://events.pagerduty.com/v2/enqueue", customAlertProvider.URL)
|
|
|
|
}
|
|
|
|
if customAlertProvider.Method != http.MethodPost {
|
|
|
|
t.Errorf("expected method to be %s, got %s", http.MethodPost, customAlertProvider.Method)
|
|
|
|
}
|
|
|
|
body := make(map[string]interface{})
|
|
|
|
err := json.Unmarshal([]byte(customAlertProvider.Body), &body)
|
|
|
|
if err != nil {
|
|
|
|
t.Error("expected body to be valid JSON, got error:", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-22 03:34:01 +02:00
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithTriggeredAlert(t *testing.T) {
|
|
|
|
provider := AlertProvider{IntegrationKey: "00000000000000000000000000000000"}
|
2021-05-19 04:29:15 +02:00
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &alert.Alert{}, &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://events.pagerduty.com/v2/enqueue" {
|
|
|
|
t.Errorf("expected URL to be %s, got %s", "https://events.pagerduty.com/v2/enqueue", customAlertProvider.URL)
|
|
|
|
}
|
|
|
|
if customAlertProvider.Method != http.MethodPost {
|
|
|
|
t.Errorf("expected method to be %s, got %s", http.MethodPost, customAlertProvider.Method)
|
|
|
|
}
|
|
|
|
body := make(map[string]interface{})
|
|
|
|
err := json.Unmarshal([]byte(customAlertProvider.Body), &body)
|
|
|
|
if err != nil {
|
|
|
|
t.Error("expected body to be valid JSON, got error:", err.Error())
|
|
|
|
}
|
2020-10-22 03:18:06 +02:00
|
|
|
}
|
2021-10-06 02:01:36 +02:00
|
|
|
|
2021-10-06 02:40:44 +02:00
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithTriggeredAlertAndOverride(t *testing.T) {
|
2021-10-06 02:01:36 +02:00
|
|
|
provider := AlertProvider{
|
|
|
|
IntegrationKey: "",
|
2021-10-06 02:40:44 +02:00
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
IntegrationKey: "00000000000000000000000000000000",
|
|
|
|
Group: "group",
|
|
|
|
},
|
|
|
|
},
|
2021-10-06 02:01:36 +02:00
|
|
|
}
|
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &alert.Alert{}, &core.Result{}, false)
|
|
|
|
if customAlertProvider == nil {
|
|
|
|
t.Fatal("customAlertProvider shouldn't have been nil")
|
|
|
|
}
|
|
|
|
if !strings.Contains(customAlertProvider.Body, "TRIGGERED") {
|
|
|
|
t.Error("customAlertProvider.Body should've contained the substring TRIGGERED")
|
|
|
|
}
|
|
|
|
if customAlertProvider.URL != "https://events.pagerduty.com/v2/enqueue" {
|
|
|
|
t.Errorf("expected URL to be %s, got %s", "https://events.pagerduty.com/v2/enqueue", customAlertProvider.URL)
|
|
|
|
}
|
|
|
|
if customAlertProvider.Method != http.MethodPost {
|
|
|
|
t.Errorf("expected method to be %s, got %s", http.MethodPost, customAlertProvider.Method)
|
|
|
|
}
|
|
|
|
body := make(map[string]interface{})
|
|
|
|
err := json.Unmarshal([]byte(customAlertProvider.Body), &body)
|
|
|
|
if err != nil {
|
|
|
|
t.Error("expected body to be valid JSON, got error:", err.Error())
|
|
|
|
}
|
|
|
|
}
|
2021-10-06 02:40:44 +02:00
|
|
|
|
|
|
|
func TestAlertProvider_getPagerDutyIntegrationKey(t *testing.T) {
|
|
|
|
scenarios := []struct {
|
|
|
|
Name string
|
|
|
|
Provider AlertProvider
|
|
|
|
InputGroup string
|
|
|
|
ExpectedOutput string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Name: "provider-no-override-specify-no-group-should-default",
|
|
|
|
Provider: AlertProvider{
|
|
|
|
IntegrationKey: "00000000000000000000000000000001",
|
|
|
|
Overrides: nil,
|
|
|
|
},
|
|
|
|
InputGroup: "",
|
|
|
|
ExpectedOutput: "00000000000000000000000000000001",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "provider-no-override-specify-group-should-default",
|
|
|
|
Provider: AlertProvider{
|
|
|
|
IntegrationKey: "00000000000000000000000000000001",
|
|
|
|
Overrides: nil,
|
|
|
|
},
|
|
|
|
InputGroup: "group",
|
|
|
|
ExpectedOutput: "00000000000000000000000000000001",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "provider-with-override-specify-no-group-should-default",
|
|
|
|
Provider: AlertProvider{
|
|
|
|
IntegrationKey: "00000000000000000000000000000001",
|
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
Group: "group",
|
|
|
|
IntegrationKey: "00000000000000000000000000000002",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
InputGroup: "",
|
|
|
|
ExpectedOutput: "00000000000000000000000000000001",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "provider-with-override-specify-group-should-override",
|
|
|
|
Provider: AlertProvider{
|
|
|
|
IntegrationKey: "00000000000000000000000000000001",
|
|
|
|
Overrides: []Override{
|
|
|
|
{
|
|
|
|
Group: "group",
|
|
|
|
IntegrationKey: "00000000000000000000000000000002",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
InputGroup: "group",
|
|
|
|
ExpectedOutput: "00000000000000000000000000000002",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, scenario := range scenarios {
|
|
|
|
t.Run(scenario.Name, func(t *testing.T) {
|
|
|
|
if output := scenario.Provider.getPagerDutyIntegrationKeyForGroup(scenario.InputGroup); output != scenario.ExpectedOutput {
|
|
|
|
t.Errorf("expected %s, got %s", scenario.ExpectedOutput, output)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|