diff options
author | Ethan Koenig <etk39@cornell.edu> | 2017-07-29 18:13:33 -0700 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-07-30 09:13:33 +0800 |
commit | 49df677c475d6a20575b99b5af8323f65937dadb (patch) | |
tree | a566cce313e3eb41f116685017b04863a4e3dac2 /integrations/api_repo_test.go | |
parent | a9cc538ab5a2a3a37b69041daf435169d15dd05c (diff) | |
download | gitea-49df677c475d6a20575b99b5af8323f65937dadb.tar.gz gitea-49df677c475d6a20575b99b5af8323f65937dadb.zip |
Check for access in /repositories/:id (#2227)
* Check for access in /repositories/:id
* Integration test
Diffstat (limited to 'integrations/api_repo_test.go')
-rw-r--r-- | integrations/api_repo_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/integrations/api_repo_test.go b/integrations/api_repo_test.go index e89a6359ae..d5b1676d6e 100644 --- a/integrations/api_repo_test.go +++ b/integrations/api_repo_test.go @@ -84,3 +84,11 @@ func TestAPIOrgRepos(t *testing.T) { assert.False(t, repo.Private) } } + +func TestAPIGetRepoByIDUnauthorized(t *testing.T) { + prepareTestEnv(t) + user := models.AssertExistsAndLoadBean(t, &models.User{ID: 4}).(*models.User) + sess := loginUser(t, user.Name) + req := NewRequestf(t, "GET", "/api/v1/repositories/2") + sess.MakeRequest(t, req, http.StatusNotFound) +} |