statping/handlers/incidents_test.go

91 lines
2.3 KiB
Go

package handlers
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestIncidentsAPIRoutes(t *testing.T) {
tests := []HTTPTest{
{
Name: "Statping Create Incident",
URL: "/api/services/1/incidents",
Method: "POST",
ExpectedStatus: 200,
BeforeTest: SetTestENV,
AfterTest: UnsetTestENV,
Body: `{
"title": "New Incident",
"description": "This is a test for incidents"
}`,
ExpectedContains: []string{Success},
},
{
Name: "Statping Service 1 Incidents",
URL: "/api/services/1/incidents",
Method: "GET",
ExpectedStatus: 200,
ResponseLen: 1,
BeforeTest: SetTestENV,
AfterTest: UnsetTestENV,
ExpectedContains: []string{`"title":"New Incident"`},
},
{
Name: "Statping Update Incident",
URL: "/api/incidents/1",
Body: `{
"title": "Updated Incident",
"description": "This is an updated incidents"
}`,
Method: "POST",
ExpectedStatus: 200,
BeforeTest: SetTestENV,
ExpectedContains: []string{Success},
},
{
Name: "Statping View Incident Updates",
URL: "/api/incidents/1/updates",
Method: "GET",
ExpectedStatus: 200,
ResponseLen: 3,
BeforeTest: SetTestENV,
ExpectedContains: []string{`"type":"investigating"`},
},
{
Name: "Statping Create Incident Update",
URL: "/api/incidents/1/updates",
Method: "POST",
Body: `{
"message": "Test message here",
"type": "Update"
}`,
ExpectedStatus: 200,
BeforeTest: SetTestENV,
ExpectedContains: []string{Success},
},
{
Name: "Statping Delete Incident Update",
URL: "/api/incidents/1/updates/1",
Method: "DELETE",
ExpectedStatus: 200,
BeforeTest: SetTestENV,
ExpectedContains: []string{Success},
},
{
Name: "Statping Delete Incident",
URL: "/api/incidents/1",
Method: "DELETE",
ExpectedStatus: 200,
BeforeTest: SetTestENV,
ExpectedContains: []string{Success},
},
}
for _, v := range tests {
t.Run(v.Name, func(t *testing.T) {
_, t, err := RunHTTPTest(v, t)
assert.Nil(t, err)
})
}
}