package port_test import ( "cmp" "fmt" "net/http" "net/http/httptest" "slices" "strconv" "strings" "testing" "gitea.dwysokinski.me/twhelp/corev3/internal/domain" "gitea.dwysokinski.me/twhelp/corev3/internal/domain/domaintest" "gitea.dwysokinski.me/twhelp/corev3/internal/port/internal/apimodel" "github.com/brianvoe/gofakeit/v7" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) const endpointListVillages = "/v2/versions/%s/servers/%s/villages" func TestListVillages(t *testing.T) { t.Parallel() handler := newAPIHTTPHandler(t) villages := getAllVillages(t, handler) server := villages[0].Server tests := []struct { name string reqModifier func(t *testing.T, req *http.Request) assertResp func(t *testing.T, req *http.Request, resp *http.Response) }{ { name: "OK: without params", assertResp: func(t *testing.T, _ *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusOK, resp.StatusCode) // body body := decodeJSON[apimodel.ListVillagesResponse](t, resp.Body) assert.Zero(t, body.Cursor.Next) assert.NotZero(t, body.Cursor.Self) assert.NotZero(t, body.Data) assert.True(t, slices.IsSortedFunc(body.Data, func(a, b apimodel.Village) int { return cmp.Compare(a.Id, b.Id) })) }, }, { name: "OK: limit=1", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("limit", "1") req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusOK, resp.StatusCode) // body body := decodeJSON[apimodel.ListVillagesResponse](t, resp.Body) assert.NotZero(t, body.Cursor.Next) assert.NotZero(t, body.Cursor.Self) assert.NotZero(t, body.Data) limit, err := strconv.Atoi(req.URL.Query().Get("limit")) require.NoError(t, err) assert.Len(t, body.Data, limit) }, }, { name: "OK: limit=1 cursor", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("limit", "1") req.URL.RawQuery = q.Encode() resp := doCustomRequest(handler, req.Clone(req.Context())) defer resp.Body.Close() body := decodeJSON[apimodel.ListVillagesResponse](t, resp.Body) require.NotEmpty(t, body.Cursor.Next) q.Set("cursor", body.Cursor.Next) req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusOK, resp.StatusCode) // body body := decodeJSON[apimodel.ListVillagesResponse](t, resp.Body) assert.Equal(t, req.URL.Query().Get("cursor"), body.Cursor.Self) limit, err := strconv.Atoi(req.URL.Query().Get("limit")) require.NoError(t, err) assert.Len(t, body.Data, limit) }, }, { name: "ERR: limit is not a string", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("limit", "asd") req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusBadRequest, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: "invalid-param-format", Message: fmt.Sprintf( "error binding string parameter: strconv.ParseInt: parsing \"%s\": invalid syntax", req.URL.Query().Get("limit"), ), Path: []string{"$query", "limit"}, }, }, }, body) }, }, { name: "ERR: limit < 1", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("limit", "0") req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusBadRequest, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) limit, err := strconv.Atoi(req.URL.Query().Get("limit")) require.NoError(t, err) domainErr := domain.MinGreaterEqualError{ Min: 1, Current: limit, } assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Params: map[string]any{ "current": float64(domainErr.Current), "min": float64(domainErr.Min), }, Path: []string{"$query", "limit"}, }, }, }, body) }, }, { name: "ERR: limit > 500", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("limit", "501") req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusBadRequest, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) limit, err := strconv.Atoi(req.URL.Query().Get("limit")) require.NoError(t, err) domainErr := domain.MaxLessEqualError{ Max: 500, Current: limit, } assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Params: map[string]any{ "current": float64(domainErr.Current), "max": float64(domainErr.Max), }, Path: []string{"$query", "limit"}, }, }, }, body) }, }, { name: "ERR: len(cursor) < 1", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("cursor", "") req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusBadRequest, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) domainErr := domain.LenOutOfRangeError{ Min: 1, Max: 1000, Current: len(req.URL.Query().Get("cursor")), } assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Params: map[string]any{ "current": float64(domainErr.Current), "max": float64(domainErr.Max), "min": float64(domainErr.Min), }, Path: []string{"$query", "cursor"}, }, }, }, body) }, }, { name: "ERR: len(cursor) > 1000", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("cursor", gofakeit.LetterN(1001)) req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusBadRequest, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) domainErr := domain.LenOutOfRangeError{ Min: 1, Max: 1000, Current: len(req.URL.Query().Get("cursor")), } assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Params: map[string]any{ "current": float64(domainErr.Current), "max": float64(domainErr.Max), "min": float64(domainErr.Min), }, Path: []string{"$query", "cursor"}, }, }, }, body) }, }, { name: "ERR: invalid cursor", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() q := req.URL.Query() q.Set("cursor", gofakeit.LetterN(100)) req.URL.RawQuery = q.Encode() }, assertResp: func(t *testing.T, _ *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusBadRequest, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) var domainErr domain.Error require.ErrorAs(t, domain.ErrInvalidCursor, &domainErr) assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Path: []string{"$query", "cursor"}, }, }, }, body) }, }, { name: "ERR: version not found", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() req.URL.Path = fmt.Sprintf(endpointListVillages, domaintest.RandVersionCode(), server.Key) }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusNotFound, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) pathSegments := strings.Split(req.URL.Path, "/") require.Len(t, pathSegments, 7) domainErr := domain.VersionNotFoundError{ VersionCode: pathSegments[3], } assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Params: map[string]any{ "code": domainErr.VersionCode, }, }, }, }, body) }, }, { name: "ERR: server not found", reqModifier: func(t *testing.T, req *http.Request) { t.Helper() req.URL.Path = fmt.Sprintf(endpointListVillages, server.Version.Code, domaintest.RandServerKey()) }, assertResp: func(t *testing.T, req *http.Request, resp *http.Response) { t.Helper() assert.Equal(t, http.StatusNotFound, resp.StatusCode) // body body := decodeJSON[apimodel.ErrorResponse](t, resp.Body) pathSegments := strings.Split(req.URL.Path, "/") require.Len(t, pathSegments, 7) domainErr := domain.ServerNotFoundError{ Key: pathSegments[5], } assert.Equal(t, apimodel.ErrorResponse{ Errors: []apimodel.Error{ { Code: domainErr.Code(), Message: domainErr.Error(), Params: map[string]any{ "key": domainErr.Key, }, }, }, }, body) }, }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { t.Parallel() req := httptest.NewRequest( http.MethodGet, fmt.Sprintf(endpointListVillages, server.Version.Code, server.Key), nil, ) if tt.reqModifier != nil { tt.reqModifier(t, req) } resp := doCustomRequest(handler, req) defer resp.Body.Close() tt.assertResp(t, req, resp) }) } } type villageWithServer struct { apimodel.Village Server serverWithVersion } func getAllVillages(tb testing.TB, h http.Handler) []villageWithServer { tb.Helper() servers := getAllServers(tb, h) var villages []villageWithServer for _, s := range servers { resp := doRequest(h, http.MethodGet, fmt.Sprintf(endpointListVillages, s.Version.Code, s.Key), nil) require.Equal(tb, http.StatusOK, resp.StatusCode) for _, v := range decodeJSON[apimodel.ListVillagesResponse](tb, resp.Body).Data { villages = append(villages, villageWithServer{ Village: v, Server: s, }) } _ = resp.Body.Close() } require.NotZero(tb, villages) return villages }