2fas-server/tests/system/api_test.go

23 lines
556 B
Go
Raw Normal View History

2022-12-31 10:22:38 +01:00
package tests
import (
"io"
"testing"
2022-12-31 10:22:38 +01:00
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
2023-01-30 19:59:42 +01:00
"github.com/twofas/2fas-server/tests"
2022-12-31 10:22:38 +01:00
)
func Test_Default404Response(t *testing.T) {
response := tests.DoAPIGet(t, "some/not/existing/endpoint", nil)
2022-12-31 10:22:38 +01:00
rawBody, err := io.ReadAll(response.Body)
require.NoError(t, err)
2022-12-31 10:22:38 +01:00
expected := `{"Code":404,"Type":"NotFound","Description":"Requested resource can not be found","Reason":"URI not found"}`
assert.Equal(t, 404, response.StatusCode)
assert.JSONEq(t, expected, string(rawBody))
}