summaryrefslogtreecommitdiffstats
path: root/integrations
diff options
context:
space:
mode:
Diffstat (limited to 'integrations')
-rw-r--r--integrations/api_repo_test.go9
-rw-r--r--integrations/repo_test.go (renamed from integrations/view_test.go)9
-rw-r--r--integrations/user_test.go21
3 files changed, 30 insertions, 9 deletions
diff --git a/integrations/api_repo_test.go b/integrations/api_repo_test.go
index febdf31ef2..64649efe1d 100644
--- a/integrations/api_repo_test.go
+++ b/integrations/api_repo_test.go
@@ -21,3 +21,12 @@ func TestAPIUserReposNotLogin(t *testing.T) {
resp := MakeRequest(req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
}
+
+func TestAPISearchRepoNotLogin(t *testing.T) {
+ assert.NoError(t, models.LoadFixtures())
+
+ req, err := http.NewRequest("GET", "/api/v1/repos/search?q=Test", nil)
+ assert.NoError(t, err)
+ resp := MakeRequest(req)
+ assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+}
diff --git a/integrations/view_test.go b/integrations/repo_test.go
index 26d8348afe..37874c275d 100644
--- a/integrations/view_test.go
+++ b/integrations/repo_test.go
@@ -19,12 +19,3 @@ func TestViewRepo(t *testing.T) {
resp := MakeRequest(req)
assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
}
-
-func TestViewUser(t *testing.T) {
- prepareTestEnv(t)
-
- req, err := http.NewRequest("GET", "/user2", nil)
- assert.NoError(t, err)
- resp := MakeRequest(req)
- assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
-}
diff --git a/integrations/user_test.go b/integrations/user_test.go
new file mode 100644
index 0000000000..f9358c1682
--- /dev/null
+++ b/integrations/user_test.go
@@ -0,0 +1,21 @@
+// Copyright 2017 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package integrations
+
+import (
+ "net/http"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestViewUser(t *testing.T) {
+ prepareTestEnv(t)
+
+ req, err := http.NewRequest("GET", "/user2", nil)
+ assert.NoError(t, err)
+ resp := MakeRequest(req)
+ assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
+}