Backend: Add unit tests for internal/api

This commit is contained in:
Theresa Gresch
2020-07-07 17:18:11 +02:00
parent cbcd9e5cea
commit c71c232107
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package api
import (
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetErrors(t *testing.T) {
//TODO add error fixtures
t.Run("successful request", func(t *testing.T) {
app, router, _ := NewApiTest()
GetErrors(router)
r := PerformRequest(app, "GET", "/api/v1/errors")
//val := gjson.Get(r.Body.String(), "flags")
//assert.Equal(t, "public debug settings", val.String())
assert.Equal(t, http.StatusOK, r.Code)
})
}