]> source.dussan.org Git - gitea.git/commitdiff
Fix /api/repo/search integration tests (#2550)
authorMorlinest <Morlinest@users.noreply.github.com>
Wed, 20 Sep 2017 09:24:38 +0000 (11:24 +0200)
committerLauris BH <lauris@nix.lv>
Wed, 20 Sep 2017 09:24:38 +0000 (12:24 +0300)
integrations/api_repo_test.go

index d5b1676d6eac38ade5332f83b2ecff8723e37e1e..8e383dbda2d7a6d4d45bf6cd58e322687f4d59c1 100644 (file)
@@ -6,7 +6,6 @@ package integrations
 
 import (
        "net/http"
-       "strings"
        "testing"
 
        "code.gitea.io/gitea/models"
@@ -33,11 +32,6 @@ func TestAPIUserReposNotLogin(t *testing.T) {
        }
 }
 
-type searchResponseBody struct {
-       ok   bool
-       data []api.Repository
-}
-
 func TestAPISearchRepoNotLogin(t *testing.T) {
        prepareTestEnv(t)
        const keyword = "test"
@@ -45,10 +39,12 @@ func TestAPISearchRepoNotLogin(t *testing.T) {
        req := NewRequestf(t, "GET", "/api/v1/repos/search?q=%s", keyword)
        resp := MakeRequest(t, req, http.StatusOK)
 
-       var body searchResponseBody
+       var body api.SearchResults
        DecodeJSON(t, resp, &body)
-       for _, repo := range body.data {
-               assert.True(t, strings.Contains(repo.Name, keyword))
+       assert.NotEmpty(t, body.Data)
+       for _, repo := range body.Data {
+               assert.Contains(t, repo.Name, keyword)
+               assert.False(t, repo.Private)
        }
 }