mirror of https://github.com/statping/statping
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package handlers
|
|
|
|
import (
|
|
"github.com/statping/statping/notifiers"
|
|
"github.com/statping/statping/types/services"
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestAttachment(t *testing.T) {
|
|
notifiers.InitNotifiers()
|
|
}
|
|
|
|
func TestApiNotifiersRoutes(t *testing.T) {
|
|
tests := []HTTPTest{
|
|
{
|
|
Name: "Statping Notifiers",
|
|
URL: "/api/notifiers",
|
|
Method: "GET",
|
|
ExpectedStatus: 200,
|
|
ResponseLen: len(services.AllNotifiers()),
|
|
BeforeTest: SetTestENV,
|
|
SecureRoute: true,
|
|
}, {
|
|
Name: "Statping Slack Notifier",
|
|
URL: "/api/notifier/slack",
|
|
Method: "GET",
|
|
ExpectedStatus: 200,
|
|
BeforeTest: SetTestENV,
|
|
SecureRoute: true,
|
|
}, {
|
|
Name: "Statping Update Notifier",
|
|
URL: "/api/notifier/slack",
|
|
Method: "POST",
|
|
Body: `{
|
|
"method": "slack",
|
|
"host": "https://slack.api/example/12345",
|
|
"enabled": true,
|
|
"limits": 55
|
|
}`,
|
|
ExpectedStatus: 200,
|
|
BeforeTest: SetTestENV,
|
|
SecureRoute: true,
|
|
}, {
|
|
Name: "Statping Slack Notifier",
|
|
URL: "/api/notifier/slack",
|
|
Method: "GET",
|
|
ExpectedStatus: 200,
|
|
ExpectedContains: []string{`"method":"slack"`},
|
|
BeforeTest: SetTestENV,
|
|
SecureRoute: true,
|
|
}}
|
|
|
|
for _, v := range tests {
|
|
t.Run(v.Name, func(t *testing.T) {
|
|
_, t, err := RunHTTPTest(v, t)
|
|
assert.Nil(t, err)
|
|
})
|
|
}
|
|
}
|