You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

api_repo_test.go 677 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package integrations
  5. import (
  6. "net/http"
  7. "testing"
  8. "github.com/stretchr/testify/assert"
  9. )
  10. func TestAPIUserReposNotLogin(t *testing.T) {
  11. prepareTestEnv(t)
  12. req := NewRequest(t, "GET", "/api/v1/users/user2/repos")
  13. resp := MakeRequest(req)
  14. assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
  15. }
  16. func TestAPISearchRepoNotLogin(t *testing.T) {
  17. prepareTestEnv(t)
  18. req := NewRequest(t, "GET", "/api/v1/repos/search?q=Test")
  19. resp := MakeRequest(req)
  20. assert.EqualValues(t, http.StatusOK, resp.HeaderCode)
  21. }