2017-07-01 22:03:57 -04:00
// Copyright 2017 The Gitea Authors. All rights reserved.
2022-11-27 13:20:29 -05:00
// SPDX-License-Identifier: MIT
2017-07-01 22:03:57 -04:00
2022-09-02 15:18:23 -04:00
package integration
2017-07-01 22:03:57 -04:00
import (
2025-12-10 11:23:26 -08:00
"encoding/base64"
"fmt"
2017-07-01 22:03:57 -04:00
"net/http"
2024-12-11 21:02:35 -08:00
"net/http/httptest"
2020-05-29 20:16:20 +02:00
"net/url"
2017-07-01 22:03:57 -04:00
"testing"
2023-01-17 16:46:03 -05:00
auth_model "code.gitea.io/gitea/models/auth"
2023-12-28 15:28:57 +08:00
"code.gitea.io/gitea/models/db"
git_model "code.gitea.io/gitea/models/git"
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
2022-09-02 15:18:23 -04:00
"code.gitea.io/gitea/tests"
2017-07-01 22:03:57 -04:00
"github.com/stretchr/testify/assert"
)
func testAPIGetBranch ( t * testing . T , branchName string , exists bool ) {
2023-06-04 14:57:16 -04:00
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeReadRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestf ( t , "GET" , "/api/v1/repos/user2/repo1/branches/%s" , branchName ) .
AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
resp := MakeRequest ( t , req , NoExpectedStatus )
2017-07-01 22:03:57 -04:00
if ! exists {
2025-03-31 07:53:48 +02:00
assert . Equal ( t , http . StatusNotFound , resp . Code )
2017-07-01 22:03:57 -04:00
return
}
2025-03-31 07:53:48 +02:00
assert . Equal ( t , http . StatusOK , resp . Code )
2017-07-01 22:03:57 -04:00
var branch api . Branch
DecodeJSON ( t , resp , & branch )
2025-03-31 07:53:48 +02:00
assert . Equal ( t , branchName , branch . Name )
2020-03-21 11:41:33 +08:00
assert . True ( t , branch . UserCanPush )
assert . True ( t , branch . UserCanMerge )
2017-07-01 22:03:57 -04:00
}
2023-08-24 01:36:04 -04:00
func testAPIGetBranchProtection ( t * testing . T , branchName string , expectedHTTPStatus int ) * api . BranchProtection {
2023-06-04 14:57:16 -04:00
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeReadRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestf ( t , "GET" , "/api/v1/repos/user2/repo1/branch_protections/%s" , branchName ) .
AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
resp := MakeRequest ( t , req , expectedHTTPStatus )
2020-02-13 00:19:35 +01:00
2022-03-23 05:54:07 +01:00
if resp . Code == http . StatusOK {
2020-02-13 00:19:35 +01:00
var branchProtection api . BranchProtection
DecodeJSON ( t , resp , & branchProtection )
2025-03-31 07:53:48 +02:00
assert . Equal ( t , branchName , branchProtection . RuleName )
2023-08-24 01:36:04 -04:00
return & branchProtection
2020-02-13 00:19:35 +01:00
}
2023-08-24 01:36:04 -04:00
return nil
2020-02-13 00:19:35 +01:00
}
2024-11-27 05:41:06 +01:00
func testAPICreateBranchProtection ( t * testing . T , branchName string , expectedPriority , expectedHTTPStatus int ) {
2023-06-04 14:57:16 -04:00
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestWithJSON ( t , "POST" , "/api/v1/repos/user2/repo1/branch_protections" , & api . BranchProtection {
2023-01-16 16:00:22 +08:00
RuleName : branchName ,
2023-12-22 00:59:59 +01:00
} ) . AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
resp := MakeRequest ( t , req , expectedHTTPStatus )
2020-02-13 00:19:35 +01:00
2022-03-23 05:54:07 +01:00
if resp . Code == http . StatusCreated {
2020-02-13 00:19:35 +01:00
var branchProtection api . BranchProtection
DecodeJSON ( t , resp , & branchProtection )
2025-03-31 07:53:48 +02:00
assert . Equal ( t , branchName , branchProtection . RuleName )
2024-11-27 05:41:06 +01:00
assert . EqualValues ( t , expectedPriority , branchProtection . Priority )
2020-02-13 00:19:35 +01:00
}
}
func testAPIEditBranchProtection ( t * testing . T , branchName string , body * api . BranchProtection , expectedHTTPStatus int ) {
2023-06-04 14:57:16 -04:00
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestWithJSON ( t , "PATCH" , "/api/v1/repos/user2/repo1/branch_protections/" + branchName , body ) .
AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
resp := MakeRequest ( t , req , expectedHTTPStatus )
2020-02-13 00:19:35 +01:00
2022-03-23 05:54:07 +01:00
if resp . Code == http . StatusOK {
2020-02-13 00:19:35 +01:00
var branchProtection api . BranchProtection
DecodeJSON ( t , resp , & branchProtection )
2025-03-31 07:53:48 +02:00
assert . Equal ( t , branchName , branchProtection . RuleName )
2020-02-13 00:19:35 +01:00
}
}
func testAPIDeleteBranchProtection ( t * testing . T , branchName string , expectedHTTPStatus int ) {
2023-06-04 14:57:16 -04:00
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestf ( t , "DELETE" , "/api/v1/repos/user2/repo1/branch_protections/%s" , branchName ) .
AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , expectedHTTPStatus )
2020-02-13 00:19:35 +01:00
}
2020-04-19 04:38:09 +02:00
func testAPIDeleteBranch ( t * testing . T , branchName string , expectedHTTPStatus int ) {
2023-06-04 14:57:16 -04:00
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestf ( t , "DELETE" , "/api/v1/repos/user2/repo1/branches/%s" , branchName ) .
AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
MakeRequest ( t , req , expectedHTTPStatus )
2020-04-19 04:38:09 +02:00
}
2017-07-01 22:03:57 -04:00
func TestAPIGetBranch ( t * testing . T ) {
2022-09-02 15:18:23 -04:00
defer tests . PrepareTestEnv ( t ) ( )
2017-07-01 22:03:57 -04:00
for _ , test := range [ ] struct {
BranchName string
Exists bool
} {
{ "master" , true } ,
{ "master/doesnotexist" , false } ,
{ "feature/1" , true } ,
{ "feature/1/doesnotexist" , false } ,
} {
testAPIGetBranch ( t , test . BranchName , test . Exists )
}
}
2020-02-13 00:19:35 +01:00
2020-05-29 20:16:20 +02:00
func TestAPICreateBranch ( t * testing . T ) {
onGiteaRun ( t , testAPICreateBranches )
}
func testAPICreateBranches ( t * testing . T , giteaURL * url . URL ) {
username := "user2"
2023-06-04 14:57:16 -04:00
ctx := NewAPITestContext ( t , username , "my-noo-repo" , auth_model . AccessTokenScopeWriteRepository , auth_model . AccessTokenScopeWriteUser )
2020-05-29 20:16:20 +02:00
giteaURL . Path = ctx . GitPath ( )
t . Run ( "CreateRepo" , doAPICreateRepository ( ctx , false ) )
2022-09-02 15:18:23 -04:00
testCases := [ ] struct {
2020-05-29 20:16:20 +02:00
OldBranch string
NewBranch string
ExpectedHTTPStatus int
} {
// Creating branch from default branch
{
OldBranch : "" ,
NewBranch : "new_branch_from_default_branch" ,
ExpectedHTTPStatus : http . StatusCreated ,
} ,
// Creating branch from master
{
OldBranch : "master" ,
NewBranch : "new_branch_from_master_1" ,
ExpectedHTTPStatus : http . StatusCreated ,
} ,
// Trying to create from master but already exists
{
OldBranch : "master" ,
NewBranch : "new_branch_from_master_1" ,
ExpectedHTTPStatus : http . StatusConflict ,
} ,
// Trying to create from other branch (not default branch)
2024-01-10 19:03:23 +08:00
// ps: it can't test the case-sensitive behavior here: the "BRANCH_2" can't be created by git on a case-insensitive filesystem, it makes the test fail quickly before the database code.
// Suppose some users are running Gitea on a case-insensitive filesystem, it seems that it's unable to support case-sensitive branch names.
2020-05-29 20:16:20 +02:00
{
OldBranch : "new_branch_from_master_1" ,
NewBranch : "branch_2" ,
ExpectedHTTPStatus : http . StatusCreated ,
} ,
// Trying to create from a branch which does not exist
{
OldBranch : "does_not_exist" ,
NewBranch : "new_branch_from_non_existent" ,
ExpectedHTTPStatus : http . StatusNotFound ,
} ,
2024-01-10 19:03:23 +08:00
// Trying to create a branch with UTF8
{
OldBranch : "master" ,
NewBranch : "test-👀" ,
ExpectedHTTPStatus : http . StatusCreated ,
} ,
2020-05-29 20:16:20 +02:00
}
2022-09-02 15:18:23 -04:00
for _ , test := range testCases {
2020-05-29 20:16:20 +02:00
session := ctx . Session
2024-01-10 19:03:23 +08:00
t . Run ( test . NewBranch , func ( t * testing . T ) {
testAPICreateBranch ( t , session , "user2" , "my-noo-repo" , test . OldBranch , test . NewBranch , test . ExpectedHTTPStatus )
} )
2020-05-29 20:16:20 +02:00
}
}
2021-04-16 20:30:16 +02:00
func testAPICreateBranch ( t testing . TB , session * TestSession , user , repo , oldBranch , newBranch string , status int ) bool {
2023-06-04 14:57:16 -04:00
token := getTokenForLoggedInUser ( t , session , auth_model . AccessTokenScopeWriteRepository )
2023-12-22 00:59:59 +01:00
req := NewRequestWithJSON ( t , "POST" , "/api/v1/repos/" + user + "/" + repo + "/branches" , & api . CreateBranchRepoOption {
2021-04-16 20:30:16 +02:00
BranchName : newBranch ,
OldBranchName : oldBranch ,
2023-12-22 00:59:59 +01:00
} ) . AddTokenAuth ( token )
2022-12-02 11:39:42 +08:00
resp := MakeRequest ( t , req , status )
2021-04-16 20:30:16 +02:00
var branch api . Branch
DecodeJSON ( t , resp , & branch )
2024-01-10 19:03:23 +08:00
if resp . Result ( ) . StatusCode == http . StatusCreated {
2025-03-31 07:53:48 +02:00
assert . Equal ( t , newBranch , branch . Name )
2021-04-16 20:30:16 +02:00
}
return resp . Result ( ) . StatusCode == status
}
2025-09-01 16:12:05 +00:00
func TestAPIRenameBranch ( t * testing . T ) {
2024-12-11 21:02:35 -08:00
onGiteaRun ( t , func ( t * testing . T , _ * url . URL ) {
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchWithEmptyRepo" , func ( t * testing . T ) {
testAPIRenameBranch ( t , "user10" , "user10" , "repo6" , "master" , "test" , http . StatusNotFound )
2024-12-11 21:02:35 -08:00
} )
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchWithSameBranchNames" , func ( t * testing . T ) {
resp := testAPIRenameBranch ( t , "user2" , "user2" , "repo1" , "master" , "master" , http . StatusUnprocessableEntity )
2024-12-11 21:02:35 -08:00
assert . Contains ( t , resp . Body . String ( ) , "Cannot rename a branch using the same name or rename to a branch that already exists." )
} )
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchThatAlreadyExists" , func ( t * testing . T ) {
resp := testAPIRenameBranch ( t , "user2" , "user2" , "repo1" , "master" , "branch2" , http . StatusUnprocessableEntity )
2024-12-11 21:02:35 -08:00
assert . Contains ( t , resp . Body . String ( ) , "Cannot rename a branch using the same name or rename to a branch that already exists." )
} )
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchWithNonExistentBranch" , func ( t * testing . T ) {
resp := testAPIRenameBranch ( t , "user2" , "user2" , "repo1" , "i-dont-exist" , "new-branch-name" , http . StatusNotFound )
2024-12-11 21:02:35 -08:00
assert . Contains ( t , resp . Body . String ( ) , "Branch doesn't exist." )
} )
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchWithNonAdminDoer" , func ( t * testing . T ) {
2025-01-15 12:51:49 -08:00
// don't allow default branch renaming
2025-09-01 16:12:05 +00:00
resp := testAPIRenameBranch ( t , "user40" , "user2" , "repo1" , "master" , "new-branch-name" , http . StatusForbidden )
2025-01-15 12:51:49 -08:00
assert . Contains ( t , resp . Body . String ( ) , "User must be a repo or site admin to rename default or protected branches." )
// don't allow protected branch renaming
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
req := NewRequestWithJSON ( t , "POST" , "/api/v1/repos/user2/repo1/branches" , & api . CreateBranchRepoOption {
BranchName : "protected-branch" ,
} ) . AddTokenAuth ( token )
MakeRequest ( t , req , http . StatusCreated )
testAPICreateBranchProtection ( t , "protected-branch" , 1 , http . StatusCreated )
2025-09-01 16:12:05 +00:00
resp = testAPIRenameBranch ( t , "user40" , "user2" , "repo1" , "protected-branch" , "new-branch-name" , http . StatusForbidden )
2025-01-15 12:51:49 -08:00
assert . Contains ( t , resp . Body . String ( ) , "User must be a repo or site admin to rename default or protected branches." )
} )
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchWithGlobedBasedProtectionRulesAndAdminAccess" , func ( t * testing . T ) {
2025-01-15 12:51:49 -08:00
// don't allow branch that falls under glob-based protection rules to be renamed
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
req := NewRequestWithJSON ( t , "POST" , "/api/v1/repos/user2/repo1/branch_protections" , & api . BranchProtection {
RuleName : "protected/**" ,
EnablePush : true ,
} ) . AddTokenAuth ( token )
MakeRequest ( t , req , http . StatusCreated )
from := "protected/1"
req = NewRequestWithJSON ( t , "POST" , "/api/v1/repos/user2/repo1/branches" , & api . CreateBranchRepoOption {
BranchName : from ,
} ) . AddTokenAuth ( token )
MakeRequest ( t , req , http . StatusCreated )
2025-09-01 16:12:05 +00:00
resp := testAPIRenameBranch ( t , "user2" , "user2" , "repo1" , from , "new-branch-name" , http . StatusForbidden )
2026-01-23 02:42:24 -08:00
assert . Contains ( t , resp . Body . String ( ) , "Failed to rename branch due to branch protection rules." )
} )
t . Run ( "RenameBranchToMatchProtectionRulesWithAllowedUser" , func ( t * testing . T ) {
// allow an admin (the owner in this case) to rename a regular branch to one that matches a branch protection rule
repoName := "repo1"
ownerName := "user2"
from := "regular-branch-1"
ctx := NewAPITestContext ( t , ownerName , repoName , auth_model . AccessTokenScopeWriteRepository )
testAPICreateBranch ( t , ctx . Session , ownerName , repoName , "" , from , http . StatusCreated )
// NOTE: The protected/** branch protection rule was created in a previous test, with push enabled.
testAPIRenameBranch ( t , ownerName , ownerName , repoName , from , "protected/2" , http . StatusNoContent )
} )
t . Run ( "RenameBranchToMatchProtectionRulesWithUnauthorizedUser" , func ( t * testing . T ) {
// don't allow renaming a regular branch to a protected branch if the doer is not in the push whitelist
repoName := "repo1"
ownerName := "user2"
pushWhitelist := [ ] string { ownerName }
token := getUserToken ( t , "user2" , auth_model . AccessTokenScopeWriteRepository )
req := NewRequestWithJSON ( t , "POST" , fmt . Sprintf ( "/api/v1/repos/%s/%s/branch_protections" , ownerName , repoName ) ,
& api . BranchProtection {
RuleName : "owner-protected/**" ,
PushWhitelistUsernames : pushWhitelist ,
} ) . AddTokenAuth ( token )
MakeRequest ( t , req , http . StatusCreated )
from := "regular-branch-2"
ctx := NewAPITestContext ( t , ownerName , repoName , auth_model . AccessTokenScopeWriteRepository )
testAPICreateBranch ( t , ctx . Session , ownerName , repoName , "" , from , http . StatusCreated )
unprivilegedUser := "user40"
resp := testAPIRenameBranch ( t , unprivilegedUser , ownerName , repoName , from , "owner-protected/1" , http . StatusForbidden )
assert . Contains ( t , resp . Body . String ( ) , "Failed to rename branch due to branch protection rules." )
2025-01-15 12:51:49 -08:00
} )
2025-09-01 16:12:05 +00:00
t . Run ( "RenameBranchNormalScenario" , func ( t * testing . T ) {
testAPIRenameBranch ( t , "user2" , "user2" , "repo1" , "branch2" , "new-branch-name" , http . StatusNoContent )
2024-12-11 21:02:35 -08:00
} )
} )
}
2025-12-10 11:23:26 -08:00
func TestAPIUpdateBranchReference ( t * testing . T ) {
defer tests . PrepareTestEnv ( t ) ( )
onGiteaRun ( t , func ( t * testing . T , giteaURL * url . URL ) {
ctx := NewAPITestContext ( t , "user2" , "update-branch" , auth_model . AccessTokenScopeWriteRepository , auth_model . AccessTokenScopeWriteUser )
giteaURL . Path = ctx . GitPath ( )
var defaultBranch string
t . Run ( "CreateRepo" , doAPICreateRepository ( ctx , false , func ( t * testing . T , repo api . Repository ) {
defaultBranch = repo . DefaultBranch
} ) )
createBranchReq := NewRequestWithJSON ( t , "POST" , fmt . Sprintf ( "/api/v1/repos/%s/%s/branches" , ctx . Username , ctx . Reponame ) , & api . CreateBranchRepoOption {
BranchName : "feature" ,
OldRefName : defaultBranch ,
} ) . AddTokenAuth ( ctx . Token )
ctx . Session . MakeRequest ( t , createBranchReq , http . StatusCreated )
var featureInitialCommit string
t . Run ( "LoadFeatureBranch" , doAPIGetBranch ( ctx , "feature" , func ( t * testing . T , branch api . Branch ) {
featureInitialCommit = branch . Commit . ID
assert . NotEmpty ( t , featureInitialCommit )
} ) )
content := base64 . StdEncoding . EncodeToString ( [ ] byte ( "branch update test" ) )
var newCommit string
doAPICreateFile ( ctx , "docs/update.txt" , & api . CreateFileOptions {
FileOptions : api . FileOptions {
BranchName : defaultBranch ,
NewBranchName : defaultBranch ,
Message : "add docs/update.txt" ,
} ,
ContentBase64 : content ,
} , func ( t * testing . T , resp api . FileResponse ) {
newCommit = resp . Commit . SHA
assert . NotEmpty ( t , newCommit )
} ) ( t )
updateReq := NewRequestWithJSON ( t , "PUT" , fmt . Sprintf ( "/api/v1/repos/%s/%s/branches/%s" , ctx . Username , ctx . Reponame , "feature" ) , & api . UpdateBranchRepoOption {
NewCommitID : newCommit ,
OldCommitID : featureInitialCommit ,
} ) . AddTokenAuth ( ctx . Token )
ctx . Session . MakeRequest ( t , updateReq , http . StatusNoContent )
t . Run ( "FastForwardApplied" , doAPIGetBranch ( ctx , "feature" , func ( t * testing . T , branch api . Branch ) {
assert . Equal ( t , newCommit , branch . Commit . ID )
} ) )
staleReq := NewRequestWithJSON ( t , "PUT" , fmt . Sprintf ( "/api/v1/repos/%s/%s/branches/%s" , ctx . Username , ctx . Reponame , "feature" ) , & api . UpdateBranchRepoOption {
NewCommitID : newCommit ,
OldCommitID : featureInitialCommit ,
} ) . AddTokenAuth ( ctx . Token )
ctx . Session . MakeRequest ( t , staleReq , http . StatusUnprocessableEntity )
nonFFReq := NewRequestWithJSON ( t , "PUT" , fmt . Sprintf ( "/api/v1/repos/%s/%s/branches/%s" , ctx . Username , ctx . Reponame , "feature" ) , & api . UpdateBranchRepoOption {
NewCommitID : featureInitialCommit ,
OldCommitID : newCommit ,
} ) . AddTokenAuth ( ctx . Token )
ctx . Session . MakeRequest ( t , nonFFReq , http . StatusUnprocessableEntity )
forceReq := NewRequestWithJSON ( t , "PUT" , fmt . Sprintf ( "/api/v1/repos/%s/%s/branches/%s" , ctx . Username , ctx . Reponame , "feature" ) , & api . UpdateBranchRepoOption {
NewCommitID : featureInitialCommit ,
OldCommitID : newCommit ,
Force : true ,
} ) . AddTokenAuth ( ctx . Token )
ctx . Session . MakeRequest ( t , forceReq , http . StatusNoContent )
t . Run ( "ForceApplied" , doAPIGetBranch ( ctx , "feature" , func ( t * testing . T , branch api . Branch ) {
assert . Equal ( t , featureInitialCommit , branch . Commit . ID )
} ) )
} )
}
2025-09-01 16:12:05 +00:00
func testAPIRenameBranch ( t * testing . T , doerName , ownerName , repoName , from , to string , expectedHTTPStatus int ) * httptest . ResponseRecorder {
2025-01-15 12:51:49 -08:00
token := getUserToken ( t , doerName , auth_model . AccessTokenScopeWriteRepository )
2025-09-01 16:12:05 +00:00
req := NewRequestWithJSON ( t , "PATCH" , "api/v1/repos/" + ownerName + "/" + repoName + "/branches/" + from , & api . RenameBranchRepoOption {
2024-12-11 21:02:35 -08:00
Name : to ,
} ) . AddTokenAuth ( token )
return MakeRequest ( t , req , expectedHTTPStatus )
}
2020-02-13 00:19:35 +01:00
func TestAPIBranchProtection ( t * testing . T ) {
2022-09-02 15:18:23 -04:00
defer tests . PrepareTestEnv ( t ) ( )
2020-02-13 00:19:35 +01:00
2026-04-04 04:03:59 +08:00
// Can create branch protection on branch that not exist
testAPICreateBranchProtection ( t , "non-existing/branch" , 1 , http . StatusCreated )
testAPIGetBranchProtection ( t , "non-existing/branch" , http . StatusOK )
testAPIDeleteBranchProtection ( t , "non-existing/branch" , http . StatusNoContent )
2020-02-13 00:19:35 +01:00
// Get branch protection on branch that exist but not branch protection
testAPIGetBranchProtection ( t , "master" , http . StatusNotFound )
2026-04-04 04:03:59 +08:00
testAPICreateBranchProtection ( t , "master" , 1 , http . StatusCreated )
2020-02-13 00:19:35 +01:00
// Can only create once
2024-11-27 05:41:06 +01:00
testAPICreateBranchProtection ( t , "master" , 0 , http . StatusForbidden )
2020-02-13 00:19:35 +01:00
2026-04-04 04:03:59 +08:00
testAPICreateBranchProtection ( t , "other-branch" , 2 , http . StatusCreated )
2020-04-19 04:38:09 +02:00
// Can't delete a protected branch
testAPIDeleteBranch ( t , "master" , http . StatusForbidden )
2020-02-13 00:19:35 +01:00
testAPIGetBranchProtection ( t , "master" , http . StatusOK )
testAPIEditBranchProtection ( t , "master" , & api . BranchProtection {
EnablePush : true ,
} , http . StatusOK )
2023-08-24 01:36:04 -04:00
// enable status checks, require the "test1" check to pass
testAPIEditBranchProtection ( t , "master" , & api . BranchProtection {
EnableStatusCheck : true ,
StatusCheckContexts : [ ] string { "test1" } ,
} , http . StatusOK )
bp := testAPIGetBranchProtection ( t , "master" , http . StatusOK )
2024-12-15 11:41:29 +01:00
assert . True ( t , bp . EnableStatusCheck )
2023-08-24 01:36:04 -04:00
assert . Equal ( t , [ ] string { "test1" } , bp . StatusCheckContexts )
// disable status checks, clear the list of required checks
testAPIEditBranchProtection ( t , "master" , & api . BranchProtection {
EnableStatusCheck : false ,
StatusCheckContexts : [ ] string { } ,
} , http . StatusOK )
bp = testAPIGetBranchProtection ( t , "master" , http . StatusOK )
2024-12-15 11:41:29 +01:00
assert . False ( t , bp . EnableStatusCheck )
2023-08-24 01:36:04 -04:00
assert . Equal ( t , [ ] string { } , bp . StatusCheckContexts )
2020-02-13 00:19:35 +01:00
testAPIDeleteBranchProtection ( t , "master" , http . StatusNoContent )
2020-04-19 04:38:09 +02:00
// Test branch deletion
testAPIDeleteBranch ( t , "master" , http . StatusForbidden )
testAPIDeleteBranch ( t , "branch2" , http . StatusNoContent )
2026-03-02 11:08:16 -08:00
testAPIDeleteBranch ( t , "branch2" , http . StatusNotFound ) // deleted branch, there is a record in DB with IsDelete=true
testAPIDeleteBranch ( t , "no-such-branch" , http . StatusNotFound ) // non-existing branch, not exist in git or DB
2020-02-13 00:19:35 +01:00
}
2023-12-28 15:28:57 +08:00
func TestAPICreateBranchWithSyncBranches ( t * testing . T ) {
defer tests . PrepareTestEnv ( t ) ( )
2025-08-28 11:52:43 +08:00
branches , err := db . Find [ git_model . Branch ] ( t . Context ( ) , git_model . FindBranchOptions {
2023-12-28 15:28:57 +08:00
RepoID : 1 ,
} )
assert . NoError ( t , err )
2025-10-25 10:08:25 -07:00
assert . Len ( t , branches , 8 )
2023-12-28 15:28:57 +08:00
// make a broke repository with no branch on database
2025-08-28 11:52:43 +08:00
_ , err = db . DeleteByBean ( t . Context ( ) , git_model . Branch { RepoID : 1 } )
2023-12-28 15:28:57 +08:00
assert . NoError ( t , err )
onGiteaRun ( t , func ( t * testing . T , giteaURL * url . URL ) {
ctx := NewAPITestContext ( t , "user2" , "repo1" , auth_model . AccessTokenScopeWriteRepository , auth_model . AccessTokenScopeWriteUser )
giteaURL . Path = ctx . GitPath ( )
testAPICreateBranch ( t , ctx . Session , "user2" , "repo1" , "" , "new_branch" , http . StatusCreated )
} )
2025-08-28 11:52:43 +08:00
branches , err = db . Find [ git_model . Branch ] ( t . Context ( ) , git_model . FindBranchOptions {
2023-12-28 15:28:57 +08:00
RepoID : 1 ,
} )
assert . NoError ( t , err )
2025-10-25 10:08:25 -07:00
assert . Len ( t , branches , 9 )
2023-12-28 15:28:57 +08:00
2025-08-28 11:52:43 +08:00
branches , err = db . Find [ git_model . Branch ] ( t . Context ( ) , git_model . FindBranchOptions {
2023-12-28 15:28:57 +08:00
RepoID : 1 ,
Keyword : "new_branch" ,
} )
assert . NoError ( t , err )
assert . Len ( t , branches , 1 )
}