gatus/alerting/provider/custom/custom_test.go

70 lines
2.5 KiB
Go
Raw Normal View History

package custom
2020-09-05 06:01:12 +02:00
import (
2020-10-22 03:18:06 +02:00
"github.com/TwinProduction/gatus/core"
2020-09-05 06:01:12 +02:00
"io/ioutil"
"testing"
)
func TestAlertProvider_IsValid(t *testing.T) {
2020-10-23 22:29:20 +02:00
invalidProvider := AlertProvider{URL: ""}
if invalidProvider.IsValid() {
t.Error("provider shouldn't have been valid")
}
2020-10-23 22:29:20 +02:00
validProvider := AlertProvider{URL: "http://example.com"}
if !validProvider.IsValid() {
t.Error("provider should've been valid")
}
}
func TestAlertProvider_buildHTTPRequestWhenResolved(t *testing.T) {
2020-09-05 06:01:12 +02:00
const (
2020-10-23 22:29:20 +02:00
ExpectedURL = "http://example.com/service-name?event=RESOLVED&description=alert-description"
2020-09-05 06:01:12 +02:00
ExpectedBody = "service-name,alert-description,RESOLVED"
)
customAlertProvider := &AlertProvider{
2020-10-23 22:29:20 +02:00
URL: "http://example.com/[SERVICE_NAME]?event=[ALERT_TRIGGERED_OR_RESOLVED]&description=[ALERT_DESCRIPTION]",
2020-09-05 06:01:12 +02:00
Body: "[SERVICE_NAME],[ALERT_DESCRIPTION],[ALERT_TRIGGERED_OR_RESOLVED]",
Headers: nil,
}
request := customAlertProvider.buildHTTPRequest("service-name", "alert-description", true)
2020-10-23 22:29:20 +02:00
if request.URL.String() != ExpectedURL {
t.Error("expected URL to be", ExpectedURL, "was", request.URL.String())
2020-09-05 06:01:12 +02:00
}
body, _ := ioutil.ReadAll(request.Body)
if string(body) != ExpectedBody {
t.Error("expected body to be", ExpectedBody, "was", string(body))
}
}
func TestAlertProvider_buildHTTPRequestWhenTriggered(t *testing.T) {
2020-09-05 06:01:12 +02:00
const (
2020-10-23 22:29:20 +02:00
ExpectedURL = "http://example.com/service-name?event=TRIGGERED&description=alert-description"
2020-09-05 06:01:12 +02:00
ExpectedBody = "service-name,alert-description,TRIGGERED"
)
customAlertProvider := &AlertProvider{
2020-10-23 22:29:20 +02:00
URL: "http://example.com/[SERVICE_NAME]?event=[ALERT_TRIGGERED_OR_RESOLVED]&description=[ALERT_DESCRIPTION]",
2020-09-05 06:01:12 +02:00
Body: "[SERVICE_NAME],[ALERT_DESCRIPTION],[ALERT_TRIGGERED_OR_RESOLVED]",
Headers: map[string]string{"Authorization": "Basic hunter2"},
2020-09-05 06:01:12 +02:00
}
request := customAlertProvider.buildHTTPRequest("service-name", "alert-description", false)
2020-10-23 22:29:20 +02:00
if request.URL.String() != ExpectedURL {
t.Error("expected URL to be", ExpectedURL, "was", request.URL.String())
2020-09-05 06:01:12 +02:00
}
body, _ := ioutil.ReadAll(request.Body)
if string(body) != ExpectedBody {
t.Error("expected body to be", ExpectedBody, "was", string(body))
}
}
2020-10-22 03:18:06 +02:00
func TestAlertProvider_ToCustomAlertProvider(t *testing.T) {
2020-10-23 22:29:20 +02:00
provider := AlertProvider{URL: "http://example.com"}
2020-10-22 03:18:06 +02:00
customAlertProvider := provider.ToCustomAlertProvider(&core.Service{}, &core.Alert{}, &core.Result{}, true)
if customAlertProvider == nil {
t.Error("customAlertProvider shouldn't have been nil")
}
if customAlertProvider != customAlertProvider {
t.Error("customAlertProvider should've been equal to customAlertProvider")
}
}