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

api_repo_get_contents_list_test.go 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. // Copyright 2019 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. "net/url"
  8. "path/filepath"
  9. "testing"
  10. "code.gitea.io/gitea/models"
  11. "code.gitea.io/gitea/modules/context"
  12. "code.gitea.io/gitea/modules/git"
  13. "code.gitea.io/gitea/modules/setting"
  14. api "code.gitea.io/gitea/modules/structs"
  15. "github.com/stretchr/testify/assert"
  16. )
  17. func getExpectedContentsListResponseForContents(ref, refType string) []*api.ContentsResponse {
  18. treePath := "README.md"
  19. sha := "4b4851ad51df6a7d9f25c979345979eaeb5b349f"
  20. selfURL := setting.AppURL + "api/v1/repos/user2/repo1/contents/" + treePath + "?ref=" + ref
  21. htmlURL := setting.AppURL + "user2/repo1/src/" + refType + "/" + ref + "/" + treePath
  22. gitURL := setting.AppURL + "api/v1/repos/user2/repo1/git/blobs/" + sha
  23. downloadURL := setting.AppURL + "user2/repo1/raw/" + refType + "/" + ref + "/" + treePath
  24. return []*api.ContentsResponse{
  25. {
  26. Name: filepath.Base(treePath),
  27. Path: treePath,
  28. SHA: sha,
  29. Type: "file",
  30. Size: 30,
  31. URL: &selfURL,
  32. HTMLURL: &htmlURL,
  33. GitURL: &gitURL,
  34. DownloadURL: &downloadURL,
  35. Links: &api.FileLinksResponse{
  36. Self: &selfURL,
  37. GitURL: &gitURL,
  38. HTMLURL: &htmlURL,
  39. },
  40. },
  41. }
  42. }
  43. func TestAPIGetContentsList(t *testing.T) {
  44. onGiteaRun(t, testAPIGetContentsList)
  45. }
  46. func testAPIGetContentsList(t *testing.T, u *url.URL) {
  47. /*** SETUP ***/
  48. user2 := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User) // owner of the repo1 & repo16
  49. user3 := models.AssertExistsAndLoadBean(t, &models.User{ID: 3}).(*models.User) // owner of the repo3, is an org
  50. user4 := models.AssertExistsAndLoadBean(t, &models.User{ID: 4}).(*models.User) // owner of neither repos
  51. repo1 := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) // public repo
  52. repo3 := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 3}).(*models.Repository) // public repo
  53. repo16 := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 16}).(*models.Repository) // private repo
  54. treePath := "" // root dir
  55. // Get user2's token
  56. session := loginUser(t, user2.Name)
  57. token2 := getTokenForLoggedInUser(t, session)
  58. session = emptyTestSession(t)
  59. // Get user4's token
  60. session = loginUser(t, user4.Name)
  61. token4 := getTokenForLoggedInUser(t, session)
  62. session = emptyTestSession(t)
  63. // Make a new branch in repo1
  64. newBranch := "test_branch"
  65. repo1.CreateNewBranch(user2, repo1.DefaultBranch, newBranch)
  66. // Get the commit ID of the default branch
  67. gitRepo, _ := git.OpenRepository(repo1.RepoPath())
  68. commitID, _ := gitRepo.GetBranchCommitID(repo1.DefaultBranch)
  69. // Make a new tag in repo1
  70. newTag := "test_tag"
  71. gitRepo.CreateTag(newTag, commitID)
  72. /*** END SETUP ***/
  73. // ref is default ref
  74. ref := repo1.DefaultBranch
  75. refType := "branch"
  76. req := NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?ref=%s", user2.Name, repo1.Name, treePath, ref)
  77. resp := session.MakeRequest(t, req, http.StatusOK)
  78. var contentsListResponse []*api.ContentsResponse
  79. DecodeJSON(t, resp, &contentsListResponse)
  80. assert.NotNil(t, contentsListResponse)
  81. expectedContentsListResponse := getExpectedContentsListResponseForContents(ref, refType)
  82. assert.EqualValues(t, expectedContentsListResponse, contentsListResponse)
  83. // No ref
  84. refType = "branch"
  85. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s", user2.Name, repo1.Name, treePath)
  86. resp = session.MakeRequest(t, req, http.StatusOK)
  87. DecodeJSON(t, resp, &contentsListResponse)
  88. assert.NotNil(t, contentsListResponse)
  89. expectedContentsListResponse = getExpectedContentsListResponseForContents(repo1.DefaultBranch, refType)
  90. assert.EqualValues(t, expectedContentsListResponse, contentsListResponse)
  91. // ref is the branch we created above in setup
  92. ref = newBranch
  93. refType = "branch"
  94. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?ref=%s", user2.Name, repo1.Name, treePath, ref)
  95. resp = session.MakeRequest(t, req, http.StatusOK)
  96. DecodeJSON(t, resp, &contentsListResponse)
  97. assert.NotNil(t, contentsListResponse)
  98. expectedContentsListResponse = getExpectedContentsListResponseForContents(ref, refType)
  99. assert.EqualValues(t, expectedContentsListResponse, contentsListResponse)
  100. // ref is the new tag we created above in setup
  101. ref = newTag
  102. refType = "tag"
  103. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?ref=%s", user2.Name, repo1.Name, treePath, ref)
  104. resp = session.MakeRequest(t, req, http.StatusOK)
  105. DecodeJSON(t, resp, &contentsListResponse)
  106. assert.NotNil(t, contentsListResponse)
  107. expectedContentsListResponse = getExpectedContentsListResponseForContents(ref, refType)
  108. assert.EqualValues(t, expectedContentsListResponse, contentsListResponse)
  109. // ref is a commit
  110. ref = commitID
  111. refType = "commit"
  112. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?ref=%s", user2.Name, repo1.Name, treePath, ref)
  113. resp = session.MakeRequest(t, req, http.StatusOK)
  114. DecodeJSON(t, resp, &contentsListResponse)
  115. assert.NotNil(t, contentsListResponse)
  116. expectedContentsListResponse = getExpectedContentsListResponseForContents(ref, refType)
  117. assert.EqualValues(t, expectedContentsListResponse, contentsListResponse)
  118. // Test file contents a file with a bad ref
  119. ref = "badref"
  120. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?ref=%s", user2.Name, repo1.Name, treePath, ref)
  121. resp = session.MakeRequest(t, req, http.StatusInternalServerError)
  122. expectedAPIError := context.APIError{
  123. Message: "object does not exist [id: " + ref + ", rel_path: ]",
  124. URL: setting.API.SwaggerURL,
  125. }
  126. var apiError context.APIError
  127. DecodeJSON(t, resp, &apiError)
  128. assert.Equal(t, expectedAPIError, apiError)
  129. // Test accessing private ref with user token that does not have access - should fail
  130. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?token=%s", user2.Name, repo16.Name, treePath, token4)
  131. session.MakeRequest(t, req, http.StatusNotFound)
  132. // Test access private ref of owner of token
  133. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/readme.md?token=%s", user2.Name, repo16.Name, token2)
  134. session.MakeRequest(t, req, http.StatusOK)
  135. // Test access of org user3 private repo file by owner user2
  136. req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/contents/%s?token=%s", user3.Name, repo3.Name, treePath, token2)
  137. session.MakeRequest(t, req, http.StatusOK)
  138. }