您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

api_keys_test.go 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright 2017 The Gogs 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. api "code.gitea.io/sdk/gitea"
  9. )
  10. func TestViewDeployKeysNoLogin(t *testing.T) {
  11. prepareTestEnv(t)
  12. req := NewRequest(t, "GET", "/api/v1/repos/user2/repo1/keys")
  13. MakeRequest(t, req, http.StatusUnauthorized)
  14. }
  15. func TestCreateDeployKeyNoLogin(t *testing.T) {
  16. prepareTestEnv(t)
  17. req := NewRequestWithJSON(t, "POST", "/api/v1/repos/user2/repo1/keys", api.CreateKeyOption{
  18. Title: "title",
  19. Key: "key",
  20. })
  21. MakeRequest(t, req, http.StatusUnauthorized)
  22. }
  23. func TestGetDeployKeyNoLogin(t *testing.T) {
  24. prepareTestEnv(t)
  25. req := NewRequest(t, "GET", "/api/v1/repos/user2/repo1/keys/1")
  26. MakeRequest(t, req, http.StatusUnauthorized)
  27. }
  28. func TestDeleteDeployKeyNoLogin(t *testing.T) {
  29. prepareTestEnv(t)
  30. req := NewRequest(t, "DELETE", "/api/v1/repos/user2/repo1/keys/1")
  31. MakeRequest(t, req, http.StatusUnauthorized)
  32. }