2020-01-17 06:03:40 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-01-17 06:03:40 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2020-01-17 06:03:40 +00:00
|
|
|
|
|
|
|
import (
|
2020-08-04 20:55:22 +00:00
|
|
|
"net/http"
|
2020-01-17 06:03:40 +00:00
|
|
|
"net/url"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2023-01-17 21:46:03 +00:00
|
|
|
auth_model "code.gitea.io/gitea/models/auth"
|
2022-05-20 14:08:52 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-16 08:53:21 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-01-19 23:26:57 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2022-08-25 02:31:57 +00:00
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
2020-01-17 06:03:40 +00:00
|
|
|
pull_service "code.gitea.io/gitea/services/pull"
|
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2021-11-24 07:56:24 +00:00
|
|
|
files_service "code.gitea.io/gitea/services/repository/files"
|
2020-01-17 06:03:40 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2020-08-04 20:55:22 +00:00
|
|
|
func TestAPIPullUpdate(t *testing.T) {
|
2020-01-17 06:03:40 +00:00
|
|
|
onGiteaRun(t, func(t *testing.T, giteaURL *url.URL) {
|
2022-01-20 17:46:10 +00:00
|
|
|
// Create PR to test
|
2022-08-16 02:22:25 +00:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
org26 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 26})
|
2020-01-17 06:03:40 +00:00
|
|
|
pr := createOutdatedPR(t, user, org26)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// Test GetDiverging
|
2022-01-19 23:26:57 +00:00
|
|
|
diffCount, err := pull_service.GetDiverging(git.DefaultContext, pr)
|
2020-01-17 06:03:40 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 1, diffCount.Behind)
|
|
|
|
assert.EqualValues(t, 1, diffCount.Ahead)
|
2022-11-19 08:12:33 +00:00
|
|
|
assert.NoError(t, pr.LoadBaseRepo(db.DefaultContext))
|
|
|
|
assert.NoError(t, pr.LoadIssue(db.DefaultContext))
|
2020-01-17 06:03:40 +00:00
|
|
|
|
2020-08-04 20:55:22 +00:00
|
|
|
session := loginUser(t, "user2")
|
Redesign Scoped Access Tokens (#24767)
## Changes
- Adds the following high level access scopes, each with `read` and
`write` levels:
- `activitypub`
- `admin` (hidden if user is not a site admin)
- `misc`
- `notification`
- `organization`
- `package`
- `issue`
- `repository`
- `user`
- Adds new middleware function `tokenRequiresScopes()` in addition to
`reqToken()`
- `tokenRequiresScopes()` is used for each high-level api section
- _if_ a scoped token is present, checks that the required scope is
included based on the section and HTTP method
- `reqToken()` is used for individual routes
- checks that required authentication is present (but does not check
scope levels as this will already have been handled by
`tokenRequiresScopes()`
- Adds migration to convert old scoped access tokens to the new set of
scopes
- Updates the user interface for scope selection
### User interface example
<img width="903" alt="Screen Shot 2023-05-31 at 1 56 55 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/654766ec-2143-4f59-9037-3b51600e32f3">
<img width="917" alt="Screen Shot 2023-05-31 at 1 56 43 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/1ad64081-012c-4a73-b393-66b30352654c">
## tokenRequiresScopes Design Decision
- `tokenRequiresScopes()` was added to more reliably cover api routes.
For an incoming request, this function uses the given scope category
(say `AccessTokenScopeCategoryOrganization`) and the HTTP method (say
`DELETE`) and verifies that any scoped tokens in use include
`delete:organization`.
- `reqToken()` is used to enforce auth for individual routes that
require it. If a scoped token is not present for a request,
`tokenRequiresScopes()` will not return an error
## TODO
- [x] Alphabetize scope categories
- [x] Change 'public repos only' to a radio button (private vs public).
Also expand this to organizations
- [X] Disable token creation if no scopes selected. Alternatively, show
warning
- [x] `reqToken()` is missing from many `POST/DELETE` routes in the api.
`tokenRequiresScopes()` only checks that a given token has the correct
scope, `reqToken()` must be used to check that a token (or some other
auth) is present.
- _This should be addressed in this PR_
- [x] The migration should be reviewed very carefully in order to
minimize access changes to existing user tokens.
- _This should be addressed in this PR_
- [x] Link to api to swagger documentation, clarify what
read/write/delete levels correspond to
- [x] Review cases where more than one scope is needed as this directly
deviates from the api definition.
- _This should be addressed in this PR_
- For example:
```go
m.Group("/users/{username}/orgs", func() {
m.Get("", reqToken(), org.ListUserOrgs)
m.Get("/{org}/permissions", reqToken(), org.GetUserOrgsPermissions)
}, tokenRequiresScopes(auth_model.AccessTokenScopeCategoryUser,
auth_model.AccessTokenScopeCategoryOrganization),
context_service.UserAssignmentAPI())
```
## Future improvements
- [ ] Add required scopes to swagger documentation
- [ ] Redesign `reqToken()` to be opt-out rather than opt-in
- [ ] Subdivide scopes like `repository`
- [ ] Once a token is created, if it has no scopes, we should display
text instead of an empty bullet point
- [ ] If the 'public repos only' option is selected, should read
categories be selected by default
Closes #24501
Closes #24799
Co-authored-by: Jonathan Tran <jon@allspice.io>
Co-authored-by: Kyle D <kdumontnu@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
2023-06-04 18:57:16 +00:00
|
|
|
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteRepository)
|
2020-08-04 20:55:22 +00:00
|
|
|
req := NewRequestf(t, "POST", "/api/v1/repos/%s/%s/pulls/%d/update?token="+token, pr.BaseRepo.OwnerName, pr.BaseRepo.Name, pr.Issue.Index)
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
2020-01-17 06:03:40 +00:00
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// Test GetDiverging after update
|
2022-01-19 23:26:57 +00:00
|
|
|
diffCount, err = pull_service.GetDiverging(git.DefaultContext, pr)
|
2020-01-17 06:03:40 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 0, diffCount.Behind)
|
|
|
|
assert.EqualValues(t, 2, diffCount.Ahead)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-31 14:03:45 +00:00
|
|
|
func TestAPIPullUpdateByRebase(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, giteaURL *url.URL) {
|
2022-01-20 17:46:10 +00:00
|
|
|
// Create PR to test
|
2022-08-16 02:22:25 +00:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
org26 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 26})
|
2021-08-31 14:03:45 +00:00
|
|
|
pr := createOutdatedPR(t, user, org26)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// Test GetDiverging
|
2022-01-19 23:26:57 +00:00
|
|
|
diffCount, err := pull_service.GetDiverging(git.DefaultContext, pr)
|
2021-08-31 14:03:45 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 1, diffCount.Behind)
|
|
|
|
assert.EqualValues(t, 1, diffCount.Ahead)
|
2022-11-19 08:12:33 +00:00
|
|
|
assert.NoError(t, pr.LoadBaseRepo(db.DefaultContext))
|
|
|
|
assert.NoError(t, pr.LoadIssue(db.DefaultContext))
|
2021-08-31 14:03:45 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
Redesign Scoped Access Tokens (#24767)
## Changes
- Adds the following high level access scopes, each with `read` and
`write` levels:
- `activitypub`
- `admin` (hidden if user is not a site admin)
- `misc`
- `notification`
- `organization`
- `package`
- `issue`
- `repository`
- `user`
- Adds new middleware function `tokenRequiresScopes()` in addition to
`reqToken()`
- `tokenRequiresScopes()` is used for each high-level api section
- _if_ a scoped token is present, checks that the required scope is
included based on the section and HTTP method
- `reqToken()` is used for individual routes
- checks that required authentication is present (but does not check
scope levels as this will already have been handled by
`tokenRequiresScopes()`
- Adds migration to convert old scoped access tokens to the new set of
scopes
- Updates the user interface for scope selection
### User interface example
<img width="903" alt="Screen Shot 2023-05-31 at 1 56 55 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/654766ec-2143-4f59-9037-3b51600e32f3">
<img width="917" alt="Screen Shot 2023-05-31 at 1 56 43 PM"
src="https://github.com/go-gitea/gitea/assets/23248839/1ad64081-012c-4a73-b393-66b30352654c">
## tokenRequiresScopes Design Decision
- `tokenRequiresScopes()` was added to more reliably cover api routes.
For an incoming request, this function uses the given scope category
(say `AccessTokenScopeCategoryOrganization`) and the HTTP method (say
`DELETE`) and verifies that any scoped tokens in use include
`delete:organization`.
- `reqToken()` is used to enforce auth for individual routes that
require it. If a scoped token is not present for a request,
`tokenRequiresScopes()` will not return an error
## TODO
- [x] Alphabetize scope categories
- [x] Change 'public repos only' to a radio button (private vs public).
Also expand this to organizations
- [X] Disable token creation if no scopes selected. Alternatively, show
warning
- [x] `reqToken()` is missing from many `POST/DELETE` routes in the api.
`tokenRequiresScopes()` only checks that a given token has the correct
scope, `reqToken()` must be used to check that a token (or some other
auth) is present.
- _This should be addressed in this PR_
- [x] The migration should be reviewed very carefully in order to
minimize access changes to existing user tokens.
- _This should be addressed in this PR_
- [x] Link to api to swagger documentation, clarify what
read/write/delete levels correspond to
- [x] Review cases where more than one scope is needed as this directly
deviates from the api definition.
- _This should be addressed in this PR_
- For example:
```go
m.Group("/users/{username}/orgs", func() {
m.Get("", reqToken(), org.ListUserOrgs)
m.Get("/{org}/permissions", reqToken(), org.GetUserOrgsPermissions)
}, tokenRequiresScopes(auth_model.AccessTokenScopeCategoryUser,
auth_model.AccessTokenScopeCategoryOrganization),
context_service.UserAssignmentAPI())
```
## Future improvements
- [ ] Add required scopes to swagger documentation
- [ ] Redesign `reqToken()` to be opt-out rather than opt-in
- [ ] Subdivide scopes like `repository`
- [ ] Once a token is created, if it has no scopes, we should display
text instead of an empty bullet point
- [ ] If the 'public repos only' option is selected, should read
categories be selected by default
Closes #24501
Closes #24799
Co-authored-by: Jonathan Tran <jon@allspice.io>
Co-authored-by: Kyle D <kdumontnu@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
2023-06-04 18:57:16 +00:00
|
|
|
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteRepository)
|
2021-08-31 14:03:45 +00:00
|
|
|
req := NewRequestf(t, "POST", "/api/v1/repos/%s/%s/pulls/%d/update?style=rebase&token="+token, pr.BaseRepo.OwnerName, pr.BaseRepo.Name, pr.Issue.Index)
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// Test GetDiverging after update
|
2022-01-19 23:26:57 +00:00
|
|
|
diffCount, err = pull_service.GetDiverging(git.DefaultContext, pr)
|
2021-08-31 14:03:45 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.EqualValues(t, 0, diffCount.Behind)
|
|
|
|
assert.EqualValues(t, 1, diffCount.Ahead)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-06-13 09:37:59 +00:00
|
|
|
func createOutdatedPR(t *testing.T, actor, forkOrg *user_model.User) *issues_model.PullRequest {
|
2023-02-28 22:17:51 +00:00
|
|
|
baseRepo, err := repo_service.CreateRepository(db.DefaultContext, actor, actor, repo_module.CreateRepoOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Name: "repo-pr-update",
|
|
|
|
Description: "repo-tmp-pr-update description",
|
|
|
|
AutoInit: true,
|
|
|
|
Gitignores: "C,C++",
|
|
|
|
License: "MIT",
|
|
|
|
Readme: "Default",
|
|
|
|
IsPrivate: false,
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotEmpty(t, baseRepo)
|
|
|
|
|
2022-03-29 19:13:41 +00:00
|
|
|
headRepo, err := repo_service.ForkRepository(git.DefaultContext, actor, forkOrg, repo_service.ForkRepoOptions{
|
2021-08-28 08:37:14 +00:00
|
|
|
BaseRepo: baseRepo,
|
|
|
|
Name: "repo-pr-update",
|
|
|
|
Description: "desc",
|
|
|
|
})
|
2020-01-17 06:03:40 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotEmpty(t, headRepo)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// create a commit on base Repo
|
2023-05-29 09:41:35 +00:00
|
|
|
_, err = files_service.ChangeRepoFiles(git.DefaultContext, baseRepo, actor, &files_service.ChangeRepoFilesOptions{
|
|
|
|
Files: []*files_service.ChangeRepoFile{
|
|
|
|
{
|
|
|
|
Operation: "create",
|
|
|
|
TreePath: "File_A",
|
|
|
|
Content: "File A",
|
|
|
|
},
|
|
|
|
},
|
2020-01-17 06:03:40 +00:00
|
|
|
Message: "Add File A",
|
|
|
|
OldBranch: "master",
|
|
|
|
NewBranch: "master",
|
2021-11-24 07:56:24 +00:00
|
|
|
Author: &files_service.IdentityOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Name: actor.Name,
|
|
|
|
Email: actor.Email,
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
Committer: &files_service.IdentityOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Name: actor.Name,
|
|
|
|
Email: actor.Email,
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
Dates: &files_service.CommitDateOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Author: time.Now(),
|
|
|
|
Committer: time.Now(),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// create a commit on head Repo
|
2023-05-29 09:41:35 +00:00
|
|
|
_, err = files_service.ChangeRepoFiles(git.DefaultContext, headRepo, actor, &files_service.ChangeRepoFilesOptions{
|
|
|
|
Files: []*files_service.ChangeRepoFile{
|
|
|
|
{
|
|
|
|
Operation: "create",
|
|
|
|
TreePath: "File_B",
|
|
|
|
Content: "File B",
|
|
|
|
},
|
|
|
|
},
|
2020-01-17 06:03:40 +00:00
|
|
|
Message: "Add File on PR branch",
|
|
|
|
OldBranch: "master",
|
|
|
|
NewBranch: "newBranch",
|
2021-11-24 07:56:24 +00:00
|
|
|
Author: &files_service.IdentityOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Name: actor.Name,
|
|
|
|
Email: actor.Email,
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
Committer: &files_service.IdentityOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Name: actor.Name,
|
|
|
|
Email: actor.Email,
|
|
|
|
},
|
2021-11-24 07:56:24 +00:00
|
|
|
Dates: &files_service.CommitDateOptions{
|
2020-01-17 06:03:40 +00:00
|
|
|
Author: time.Now(),
|
|
|
|
Committer: time.Now(),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// create Pull
|
2022-06-13 09:37:59 +00:00
|
|
|
pullIssue := &issues_model.Issue{
|
2020-01-17 06:03:40 +00:00
|
|
|
RepoID: baseRepo.ID,
|
|
|
|
Title: "Test Pull -to-update-",
|
|
|
|
PosterID: actor.ID,
|
|
|
|
Poster: actor,
|
|
|
|
IsPull: true,
|
|
|
|
}
|
2022-06-13 09:37:59 +00:00
|
|
|
pullRequest := &issues_model.PullRequest{
|
2020-01-17 06:03:40 +00:00
|
|
|
HeadRepoID: headRepo.ID,
|
|
|
|
BaseRepoID: baseRepo.ID,
|
|
|
|
HeadBranch: "newBranch",
|
|
|
|
BaseBranch: "master",
|
|
|
|
HeadRepo: headRepo,
|
|
|
|
BaseRepo: baseRepo,
|
2022-06-13 09:37:59 +00:00
|
|
|
Type: issues_model.PullRequestGitea,
|
2020-01-17 06:03:40 +00:00
|
|
|
}
|
2022-01-19 23:26:57 +00:00
|
|
|
err = pull_service.NewPullRequest(git.DefaultContext, baseRepo, pullIssue, nil, nil, pullRequest, nil)
|
2020-01-17 06:03:40 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{Title: "Test Pull -to-update-"})
|
2022-06-13 09:37:59 +00:00
|
|
|
pr, err := issues_model.GetPullRequestByIssueID(db.DefaultContext, issue.ID)
|
2020-01-17 06:03:40 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
return pr
|
|
|
|
}
|