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.4KB

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