2020-09-19 22:29:08 +02:00
|
|
|
package slack
|
|
|
|
|
2020-10-22 03:18:06 +02:00
|
|
|
import (
|
|
|
|
"github.com/TwinProduction/gatus/core"
|
2020-10-22 04:35:37 +02:00
|
|
|
"strings"
|
2020-10-22 03:18:06 +02:00
|
|
|
"testing"
|
|
|
|
)
|
2020-09-19 22:29:08 +02:00
|
|
|
|
|
|
|
func TestAlertProvider_IsValid(t *testing.T) {
|
|
|
|
invalidProvider := AlertProvider{WebhookUrl: ""}
|
|
|
|
if invalidProvider.IsValid() {
|
|
|
|
t.Error("provider shouldn't have been valid")
|
|
|
|
}
|
|
|
|
validProvider := AlertProvider{WebhookUrl: "http://example.com"}
|
|
|
|
if !validProvider.IsValid() {
|
|
|
|
t.Error("provider should've been valid")
|
|
|
|
}
|
|
|
|
}
|
2020-10-22 03:18:06 +02:00
|
|
|
|
2020-10-22 04:35:37 +02:00
|
|
|
func TestAlertProvider_ToCustomAlertProviderWithResolvedAlert(t *testing.T) {
|
2020-10-22 03:18:06 +02:00
|
|
|
provider := AlertProvider{WebhookUrl: "http://example.com"}
|
2020-10-22 04:56:35 +02:00
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &core.Alert{}, &core.Result{ConditionResults: []*core.ConditionResult{{Condition: "SUCCESSFUL_CONDITION", Success: true}}}, true)
|
2020-10-22 03:18:06 +02:00
|
|
|
if customAlertProvider == nil {
|
|
|
|
t.Error("customAlertProvider shouldn't have been nil")
|
|
|
|
}
|
2020-10-22 04:35:37 +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{WebhookUrl: "http://example.com"}
|
2020-10-22 04:56:35 +02:00
|
|
|
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &core.Alert{}, &core.Result{ConditionResults: []*core.ConditionResult{{Condition: "UNSUCCESSFUL_CONDITION", Success: false}}}, false)
|
2020-10-22 04:35:37 +02:00
|
|
|
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
|
|
|
}
|