2019-05-30 18:09:05 +03:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2019-05-30 18:09:05 +03:00
2022-09-02 22:18:23 +03:00
package integration
2019-05-30 18:09:05 +03:00
import (
"fmt"
"net/http"
"net/url"
"testing"
2023-01-18 00:46:03 +03:00
auth_model "code.gitea.io/gitea/models/auth"
2022-12-10 05:46:31 +03:00
"code.gitea.io/gitea/models/db"
2021-12-10 04:27:50 +03:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-09 22:57:58 +03:00
unit_model "code.gitea.io/gitea/models/unit"
2021-11-16 11:53:21 +03:00
"code.gitea.io/gitea/models/unittest"
2021-11-24 12:49:20 +03:00
user_model "code.gitea.io/gitea/models/user"
2019-05-30 18:09:05 +03:00
api "code.gitea.io/gitea/modules/structs"
"github.com/stretchr/testify/assert"
)
// getRepoEditOptionFromRepo gets the options for an existing repo exactly as is
2021-12-10 04:27:50 +03:00
func getRepoEditOptionFromRepo ( repo * repo_model . Repository ) * api . EditRepoOption {
2019-05-30 18:09:05 +03:00
name := repo . Name
description := repo . Description
website := repo . Website
private := repo . IsPrivate
hasIssues := false
2019-10-02 12:30:41 +03:00
var internalTracker * api . InternalTracker
var externalTracker * api . ExternalTracker
2022-12-10 05:46:31 +03:00
if unit , err := repo . GetUnit ( db . DefaultContext , unit_model . TypeIssues ) ; err == nil {
2019-10-02 12:30:41 +03:00
config := unit . IssuesConfig ( )
2019-05-30 18:09:05 +03:00
hasIssues = true
2019-10-02 12:30:41 +03:00
internalTracker = & api . InternalTracker {
EnableTimeTracker : config . EnableTimetracker ,
AllowOnlyContributorsToTrackTime : config . AllowOnlyContributorsToTrackTime ,
EnableIssueDependencies : config . EnableDependencies ,
}
2022-12-10 05:46:31 +03:00
} else if unit , err := repo . GetUnit ( db . DefaultContext , unit_model . TypeExternalTracker ) ; err == nil {
2019-10-02 12:30:41 +03:00
config := unit . ExternalTrackerConfig ( )
hasIssues = true
externalTracker = & api . ExternalTracker {
2022-10-07 15:49:30 +03:00
ExternalTrackerURL : config . ExternalTrackerURL ,
ExternalTrackerFormat : config . ExternalTrackerFormat ,
ExternalTrackerStyle : config . ExternalTrackerStyle ,
ExternalTrackerRegexpPattern : config . ExternalTrackerRegexpPattern ,
2019-10-02 12:30:41 +03:00
}
2019-05-30 18:09:05 +03:00
}
hasWiki := false
2019-10-02 12:30:41 +03:00
var externalWiki * api . ExternalWiki
2022-12-10 05:46:31 +03:00
if _ , err := repo . GetUnit ( db . DefaultContext , unit_model . TypeWiki ) ; err == nil {
2019-05-30 18:09:05 +03:00
hasWiki = true
2022-12-10 05:46:31 +03:00
} else if unit , err := repo . GetUnit ( db . DefaultContext , unit_model . TypeExternalWiki ) ; err == nil {
2019-10-02 12:30:41 +03:00
hasWiki = true
config := unit . ExternalWikiConfig ( )
externalWiki = & api . ExternalWiki {
ExternalWikiURL : config . ExternalWikiURL ,
}
2019-05-30 18:09:05 +03:00
}
defaultBranch := repo . DefaultBranch
hasPullRequests := false
ignoreWhitespaceConflicts := false
allowMerge := false
allowRebase := false
allowRebaseMerge := false
allowSquash := false
2022-12-10 05:46:31 +03:00
if unit , err := repo . GetUnit ( db . DefaultContext , unit_model . TypePullRequests ) ; err == nil {
2019-05-30 18:09:05 +03:00
config := unit . PullRequestsConfig ( )
hasPullRequests = true
ignoreWhitespaceConflicts = config . IgnoreWhitespaceConflicts
allowMerge = config . AllowMerge
allowRebase = config . AllowRebase
allowRebaseMerge = config . AllowRebaseMerge
allowSquash = config . AllowSquash
}
archived := repo . IsArchived
return & api . EditRepoOption {
Name : & name ,
Description : & description ,
Website : & website ,
Private : & private ,
HasIssues : & hasIssues ,
2019-10-02 12:30:41 +03:00
ExternalTracker : externalTracker ,
InternalTracker : internalTracker ,
2019-05-30 18:09:05 +03:00
HasWiki : & hasWiki ,
2019-10-02 12:30:41 +03:00
ExternalWiki : externalWiki ,
2019-05-30 18:09:05 +03:00
DefaultBranch : & defaultBranch ,
HasPullRequests : & hasPullRequests ,
IgnoreWhitespaceConflicts : & ignoreWhitespaceConflicts ,
AllowMerge : & allowMerge ,
AllowRebase : & allowRebase ,
AllowRebaseMerge : & allowRebaseMerge ,
AllowSquash : & allowSquash ,
Archived : & archived ,
}
}
// getNewRepoEditOption Gets the options to change everything about an existing repo by adding to strings or changing
// the boolean
func getNewRepoEditOption ( opts * api . EditRepoOption ) * api . EditRepoOption {
// Gives a new property to everything
name := * opts . Name + "renamed"
description := "new description"
website := "http://wwww.newwebsite.com"
private := ! * opts . Private
hasIssues := ! * opts . HasIssues
hasWiki := ! * opts . HasWiki
defaultBranch := "master"
hasPullRequests := ! * opts . HasPullRequests
ignoreWhitespaceConflicts := ! * opts . IgnoreWhitespaceConflicts
allowMerge := ! * opts . AllowMerge
allowRebase := ! * opts . AllowRebase
allowRebaseMerge := ! * opts . AllowRebaseMerge
allowSquash := ! * opts . AllowSquash
archived := ! * opts . Archived
return & api . EditRepoOption {
Name : & name ,
Description : & description ,
Website : & website ,
Private : & private ,
DefaultBranch : & defaultBranch ,
HasIssues : & hasIssues ,
HasWiki : & hasWiki ,
HasPullRequests : & hasPullRequests ,
IgnoreWhitespaceConflicts : & ignoreWhitespaceConflicts ,
AllowMerge : & allowMerge ,
AllowRebase : & allowRebase ,
AllowRebaseMerge : & allowRebaseMerge ,
AllowSquash : & allowSquash ,
Archived : & archived ,
}
}
func TestAPIRepoEdit ( t * testing . T ) {
onGiteaRun ( t , func ( t * testing . T , u * url . URL ) {
2021-05-08 15:11:36 +03:00
bFalse , bTrue := false , true
2022-08-16 05:22:25 +03:00
user2 := unittest . AssertExistsAndLoadBean ( t , & user_model . User { ID : 2 } ) // owner of the repo1 & repo16
2023-09-14 05:59:53 +03:00
org3 := unittest . AssertExistsAndLoadBean ( t , & user_model . User { ID : 3 } ) // owner of the repo3, is an org
2022-08-16 05:22:25 +03:00
user4 := unittest . AssertExistsAndLoadBean ( t , & user_model . User { ID : 4 } ) // owner of neither repos
repo1 := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 1 } ) // public repo
repo3 := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 3 } ) // public repo
repo15 := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 15 } ) // empty repo
repo16 := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 16 } ) // private repo
2019-05-30 18:09:05 +03:00
// Get user2's token
session := loginUser ( t , user2 . Name )
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 21:57:16 +03:00
token2 := getTokenForLoggedInUser ( t , session , auth_model . AccessTokenScopeWriteRepository )
2019-05-30 18:09:05 +03:00
// Get user4's token
session = loginUser ( t , user4 . Name )
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 21:57:16 +03:00
token4 := getTokenForLoggedInUser ( t , session , auth_model . AccessTokenScopeWriteRepository )
2019-05-30 18:09:05 +03:00
// Test editing a repo1 which user2 owns, changing name and many properties
origRepoEditOption := getRepoEditOptionFromRepo ( repo1 )
repoEditOption := getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req := NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo1 . Name ) , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
resp := MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
var repo api . Repository
DecodeJSON ( t , resp , & repo )
assert . NotNil ( t , repo )
// check response
assert . Equal ( t , * repoEditOption . Name , repo . Name )
assert . Equal ( t , * repoEditOption . Description , repo . Description )
assert . Equal ( t , * repoEditOption . Website , repo . Website )
assert . Equal ( t , * repoEditOption . Archived , repo . Archived )
// check repo1 from database
2022-08-16 05:22:25 +03:00
repo1edited := unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 1 } )
2019-05-30 18:09:05 +03:00
repo1editedOption := getRepoEditOptionFromRepo ( repo1edited )
assert . Equal ( t , * repoEditOption . Name , * repo1editedOption . Name )
assert . Equal ( t , * repoEditOption . Description , * repo1editedOption . Description )
assert . Equal ( t , * repoEditOption . Website , * repo1editedOption . Website )
assert . Equal ( t , * repoEditOption . Archived , * repo1editedOption . Archived )
assert . Equal ( t , * repoEditOption . Private , * repo1editedOption . Private )
assert . Equal ( t , * repoEditOption . HasWiki , * repo1editedOption . HasWiki )
2019-10-02 12:30:41 +03:00
2022-01-20 20:46:10 +03:00
// Test editing repo1 to use internal issue and wiki (default)
2019-10-02 12:30:41 +03:00
* repoEditOption . HasIssues = true
repoEditOption . ExternalTracker = nil
repoEditOption . InternalTracker = & api . InternalTracker {
EnableTimeTracker : false ,
AllowOnlyContributorsToTrackTime : false ,
EnableIssueDependencies : false ,
}
* repoEditOption . HasWiki = true
repoEditOption . ExternalWiki = nil
2023-12-22 02:59:59 +03:00
url := fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , * repoEditOption . Name )
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
resp = MakeRequest ( t , req , http . StatusOK )
2019-10-02 12:30:41 +03:00
DecodeJSON ( t , resp , & repo )
assert . NotNil ( t , repo )
// check repo1 was written to database
2022-08-16 05:22:25 +03:00
repo1edited = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 1 } )
2019-10-02 12:30:41 +03:00
repo1editedOption = getRepoEditOptionFromRepo ( repo1edited )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasIssues )
2019-10-02 12:30:41 +03:00
assert . Nil ( t , repo1editedOption . ExternalTracker )
assert . Equal ( t , * repo1editedOption . InternalTracker , * repoEditOption . InternalTracker )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasWiki )
2019-10-02 12:30:41 +03:00
assert . Nil ( t , repo1editedOption . ExternalWiki )
2022-01-20 20:46:10 +03:00
// Test editing repo1 to use external issue and wiki
2019-10-02 12:30:41 +03:00
repoEditOption . ExternalTracker = & api . ExternalTracker {
ExternalTrackerURL : "http://www.somewebsite.com" ,
ExternalTrackerFormat : "http://www.somewebsite.com/{user}/{repo}?issue={index}" ,
ExternalTrackerStyle : "alphanumeric" ,
}
repoEditOption . ExternalWiki = & api . ExternalWiki {
ExternalWikiURL : "http://www.somewebsite.com" ,
}
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
resp = MakeRequest ( t , req , http . StatusOK )
2019-10-02 12:30:41 +03:00
DecodeJSON ( t , resp , & repo )
assert . NotNil ( t , repo )
// check repo1 was written to database
2022-08-16 05:22:25 +03:00
repo1edited = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 1 } )
2019-10-02 12:30:41 +03:00
repo1editedOption = getRepoEditOptionFromRepo ( repo1edited )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasIssues )
2019-10-02 12:30:41 +03:00
assert . Equal ( t , * repo1editedOption . ExternalTracker , * repoEditOption . ExternalTracker )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasWiki )
2019-10-02 12:30:41 +03:00
assert . Equal ( t , * repo1editedOption . ExternalWiki , * repoEditOption . ExternalWiki )
2022-10-07 15:49:30 +03:00
repoEditOption . ExternalTracker . ExternalTrackerStyle = "regexp"
repoEditOption . ExternalTracker . ExternalTrackerRegexpPattern = ` (\d+) `
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
resp = MakeRequest ( t , req , http . StatusOK )
2022-10-07 15:49:30 +03:00
DecodeJSON ( t , resp , & repo )
assert . NotNil ( t , repo )
repo1edited = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 1 } )
repo1editedOption = getRepoEditOptionFromRepo ( repo1edited )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasIssues )
2022-10-07 15:49:30 +03:00
assert . Equal ( t , * repo1editedOption . ExternalTracker , * repoEditOption . ExternalTracker )
2019-10-02 12:30:41 +03:00
// Do some tests with invalid URL for external tracker and wiki
repoEditOption . ExternalTracker . ExternalTrackerURL = "htp://www.somewebsite.com"
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusUnprocessableEntity )
2019-10-02 12:30:41 +03:00
repoEditOption . ExternalTracker . ExternalTrackerURL = "http://www.somewebsite.com"
repoEditOption . ExternalTracker . ExternalTrackerFormat = "http://www.somewebsite.com/{user/{repo}?issue={index}"
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusUnprocessableEntity )
2019-10-02 12:30:41 +03:00
repoEditOption . ExternalTracker . ExternalTrackerFormat = "http://www.somewebsite.com/{user}/{repo}?issue={index}"
repoEditOption . ExternalWiki . ExternalWikiURL = "htp://www.somewebsite.com"
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusUnprocessableEntity )
2019-10-02 12:30:41 +03:00
2022-01-20 20:46:10 +03:00
// Test small repo change through API with issue and wiki option not set; They shall not be touched.
2019-10-02 12:30:41 +03:00
* repoEditOption . Description = "small change"
repoEditOption . HasIssues = nil
repoEditOption . ExternalTracker = nil
repoEditOption . HasWiki = nil
repoEditOption . ExternalWiki = nil
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
resp = MakeRequest ( t , req , http . StatusOK )
2019-10-02 12:30:41 +03:00
DecodeJSON ( t , resp , & repo )
assert . NotNil ( t , repo )
// check repo1 was written to database
2022-08-16 05:22:25 +03:00
repo1edited = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 1 } )
2019-10-02 12:30:41 +03:00
repo1editedOption = getRepoEditOptionFromRepo ( repo1edited )
assert . Equal ( t , * repo1editedOption . Description , * repoEditOption . Description )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasIssues )
2019-10-02 12:30:41 +03:00
assert . NotNil ( t , * repo1editedOption . ExternalTracker )
2023-04-23 00:56:27 +03:00
assert . True ( t , * repo1editedOption . HasWiki )
2019-10-02 12:30:41 +03:00
assert . NotNil ( t , * repo1editedOption . ExternalWiki )
2019-05-30 18:09:05 +03:00
// reset repo in db
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , * repoEditOption . Name ) , & origRepoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
// Test editing a non-existing repo
name := "repodoesnotexist"
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , name ) , & api . EditRepoOption { Name : & name } ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusNotFound )
2019-05-30 18:09:05 +03:00
// Test editing repo16 by user4 who does not have write access
origRepoEditOption = getRepoEditOptionFromRepo ( repo16 )
repoEditOption = getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo16 . Name ) , & repoEditOption ) .
AddTokenAuth ( token4 )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusNotFound )
2019-05-30 18:09:05 +03:00
// Tests a repo with no token given so will fail
origRepoEditOption = getRepoEditOptionFromRepo ( repo16 )
repoEditOption = getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo16 . Name ) , & repoEditOption )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusNotFound )
2019-05-30 18:09:05 +03:00
// Test using access token for a private repo that the user of the token owns
origRepoEditOption = getRepoEditOptionFromRepo ( repo16 )
repoEditOption = getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo16 . Name ) , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
// reset repo in db
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , * repoEditOption . Name ) , & origRepoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
// Test making a repo public that is private
2022-08-16 05:22:25 +03:00
repo16 = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 16 } )
2019-05-30 18:09:05 +03:00
assert . True ( t , repo16 . IsPrivate )
repoEditOption = & api . EditRepoOption {
2021-05-08 15:11:36 +03:00
Private : & bFalse ,
2019-05-30 18:09:05 +03:00
}
2023-12-22 02:59:59 +03:00
url = fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo16 . Name )
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2022-08-16 05:22:25 +03:00
repo16 = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 16 } )
2019-05-30 18:09:05 +03:00
assert . False ( t , repo16 . IsPrivate )
// Make it private again
2021-05-08 15:11:36 +03:00
repoEditOption . Private = & bTrue
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
2021-05-08 15:11:36 +03:00
// Test to change empty repo
assert . False ( t , repo15 . IsArchived )
2023-12-22 02:59:59 +03:00
url = fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo15 . Name )
2021-05-08 15:11:36 +03:00
req = NewRequestWithJSON ( t , "PATCH" , url , & api . EditRepoOption {
Archived : & bTrue ,
2023-12-22 02:59:59 +03:00
} ) . AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2022-08-16 05:22:25 +03:00
repo15 = unittest . AssertExistsAndLoadBean ( t , & repo_model . Repository { ID : 15 } )
2021-05-08 15:11:36 +03:00
assert . True ( t , repo15 . IsArchived )
req = NewRequestWithJSON ( t , "PATCH" , url , & api . EditRepoOption {
Archived : & bFalse ,
2023-12-22 02:59:59 +03:00
} ) . AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2021-05-08 15:11:36 +03:00
2023-09-14 05:59:53 +03:00
// Test using org repo "org3/repo3" where user2 is a collaborator
2019-05-30 18:09:05 +03:00
origRepoEditOption = getRepoEditOptionFromRepo ( repo3 )
repoEditOption = getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , org3 . Name , repo3 . Name ) , & repoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
// reset repo in db
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , org3 . Name , * repoEditOption . Name ) , & origRepoEditOption ) .
AddTokenAuth ( token2 )
2022-12-02 06:39:42 +03:00
_ = MakeRequest ( t , req , http . StatusOK )
2019-05-30 18:09:05 +03:00
2023-09-14 05:59:53 +03:00
// Test using org repo "org3/repo3" with no user token
2019-05-30 18:09:05 +03:00
origRepoEditOption = getRepoEditOptionFromRepo ( repo3 )
repoEditOption = getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , org3 . Name , repo3 . Name ) , & repoEditOption )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusNotFound )
2019-05-30 18:09:05 +03:00
// Test using repo "user2/repo1" where user4 is a NOT collaborator
origRepoEditOption = getRepoEditOptionFromRepo ( repo1 )
repoEditOption = getNewRepoEditOption ( origRepoEditOption )
2023-12-22 02:59:59 +03:00
req = NewRequestWithJSON ( t , "PATCH" , fmt . Sprintf ( "/api/v1/repos/%s/%s" , user2 . Name , repo1 . Name ) , & repoEditOption ) .
AddTokenAuth ( token4 )
2022-12-02 06:39:42 +03:00
MakeRequest ( t , req , http . StatusForbidden )
2019-05-30 18:09:05 +03:00
} )
}