diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-04-29 12:33:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-29 12:33:25 +0800 |
commit | 61b08b5c01eef096e169d6070cb80c3c9fd55875 (patch) | |
tree | 801e8ab3685a04b2960ecf793273cfbaf2d70560 /integrations | |
parent | cebe3a6b2fb91a4dbaa6bac3fe5ff5bccb52d019 (diff) | |
download | gitea-61b08b5c01eef096e169d6070cb80c3c9fd55875.tar.gz gitea-61b08b5c01eef096e169d6070cb80c3c9fd55875.zip |
bug fixed for API to get user's repos (#1622)
* bug fixed for API to get user's repos
* add tests and fix another place
* test user2 since user1 has no repos
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/api_repo_test.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/integrations/api_repo_test.go b/integrations/api_repo_test.go new file mode 100644 index 0000000000..febdf31ef2 --- /dev/null +++ b/integrations/api_repo_test.go @@ -0,0 +1,23 @@ +// 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" + + "code.gitea.io/gitea/models" + + "github.com/stretchr/testify/assert" +) + +func TestAPIUserReposNotLogin(t *testing.T) { + assert.NoError(t, models.LoadFixtures()) + + req, err := http.NewRequest("GET", "/api/v1/users/user2/repos", nil) + assert.NoError(t, err) + resp := MakeRequest(req) + assert.EqualValues(t, http.StatusOK, resp.HeaderCode) +} |