Skip to content

Fix bug when API get pull changed files for deleted head repository (#34333) #34368

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 5, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion routers/api/v1/repo/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -1638,7 +1638,9 @@ func GetPullRequestFiles(ctx *context.APIContext) {

apiFiles := make([]*api.ChangedFile, 0, limit)
for i := start; i < start+limit; i++ {
apiFiles = append(apiFiles, convert.ToChangedFile(diff.Files[i], pr.HeadRepo, endCommitID))
// refs/pull/1/head stores the HEAD commit ID, allowing all related commits to be found in the base repository.
// The head repository might have been deleted, so we should not rely on it here.
apiFiles = append(apiFiles, convert.ToChangedFile(diff.Files[i], pr.BaseRepo, endCommitID))
}

ctx.SetLinkHeader(totalNumberOfFiles, listOptions.PageSize)
Expand Down
98 changes: 98 additions & 0 deletions tests/integration/api_pull_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"fmt"
"io"
"net/http"
"net/url"
"strings"
"testing"
"time"

auth_model "code.gitea.io/gitea/models/auth"
"code.gitea.io/gitea/models/db"
Expand All @@ -18,11 +21,15 @@
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user"
"code.gitea.io/gitea/modules/git"
"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/services/convert"
"code.gitea.io/gitea/services/forms"
"code.gitea.io/gitea/services/gitdiff"
issue_service "code.gitea.io/gitea/services/issue"
pull_service "code.gitea.io/gitea/services/pull"
files_service "code.gitea.io/gitea/services/repository/files"
"code.gitea.io/gitea/tests"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -425,3 +432,94 @@
req = NewRequestf(t, "GET", "/api/v1/repos/%s/%s/commits/%s/pull", owner.Name, repo.Name, invalidCommitSHA).AddTokenAuth(ctx.Token)
ctx.Session.MakeRequest(t, req, http.StatusNotFound)
}

func TestAPIViewPullFilesWithHeadRepoDeleted(t *testing.T) {
onGiteaRun(t, func(t *testing.T, u *url.URL) {
baseRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
user1 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})

ctx := NewAPITestContext(t, "user1", baseRepo.Name, auth_model.AccessTokenScopeAll)

doAPIForkRepository(ctx, "user2")(t)

forkedRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ForkID: baseRepo.ID, OwnerName: "user1"})

// add a new file to the forked repo
addFileToForkedResp, err := files_service.ChangeRepoFiles(git.DefaultContext, forkedRepo, user1, &files_service.ChangeRepoFilesOptions{
Files: []*files_service.ChangeRepoFile{
{
Operation: "create",
TreePath: "file_1.txt",
ContentReader: strings.NewReader("file1"),
},
},
Message: "add file1",
OldBranch: "master",
NewBranch: "fork-branch-1",
Author: &files_service.IdentityOptions{
GitUserName: user1.Name,

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mysql

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 460 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

unknown field GitUserName in struct literal of type files.IdentityOptions
GitUserEmail: user1.Email,

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mysql

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 461 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

unknown field GitUserEmail in struct literal of type files.IdentityOptions
},
Committer: &files_service.IdentityOptions{
GitUserName: user1.Name,

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mysql

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

unknown field GitUserName in struct literal of type files.IdentityOptions

Check failure on line 464 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

unknown field GitUserName in struct literal of type files.IdentityOptions
GitUserEmail: user1.Email,

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mysql

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

unknown field GitUserEmail in struct literal of type files.IdentityOptions

Check failure on line 465 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

unknown field GitUserEmail in struct literal of type files.IdentityOptions
},
Dates: &files_service.CommitDateOptions{
Author: time.Now(),
Committer: time.Now(),
},
})
assert.NoError(t, err)
assert.NotEmpty(t, addFileToForkedResp)

// create Pull
pullIssue := &issues_model.Issue{
RepoID: baseRepo.ID,
Title: "Test pull-request-target-event",
PosterID: user1.ID,
Poster: user1,
IsPull: true,
}
pullRequest := &issues_model.PullRequest{
HeadRepoID: forkedRepo.ID,
BaseRepoID: baseRepo.ID,
HeadBranch: "fork-branch-1",
BaseBranch: "master",
HeadRepo: forkedRepo,
BaseRepo: baseRepo,
Type: issues_model.PullRequestGitea,
}

prOpts := &pull_service.NewPullRequestOptions{Repo: baseRepo, Issue: pullIssue, PullRequest: pullRequest}
err = pull_service.NewPullRequest(git.DefaultContext, prOpts)
assert.NoError(t, err)
pr := convert.ToAPIPullRequest(t.Context(), pullRequest, user1)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-sqlite

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-pgsql

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mysql

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-backend

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context) (typecheck)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / test-mssql

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-windows

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context) (typecheck)

Check failure on line 496 in tests/integration/api_pull_test.go

View workflow job for this annotation

GitHub Actions / lint-go-gogit

t.Context undefined (type *testing.T has no field or method Context, but does have unexported field context) (typecheck)

ctx = NewAPITestContext(t, "user2", baseRepo.Name, auth_model.AccessTokenScopeAll)
doAPIGetPullFiles(ctx, pr, func(t *testing.T, files []*api.ChangedFile) {
if assert.Len(t, files, 1) {
assert.Equal(t, "file_1.txt", files[0].Filename)
assert.Empty(t, files[0].PreviousFilename)
assert.Equal(t, 1, files[0].Additions)
assert.Equal(t, 1, files[0].Changes)
assert.Equal(t, 0, files[0].Deletions)
assert.Equal(t, "added", files[0].Status)
}
})(t)

// delete the head repository of the pull request
forkCtx := NewAPITestContext(t, "user1", forkedRepo.Name, auth_model.AccessTokenScopeAll)
doAPIDeleteRepository(forkCtx)(t)

doAPIGetPullFiles(ctx, pr, func(t *testing.T, files []*api.ChangedFile) {
if assert.Len(t, files, 1) {
assert.Equal(t, "file_1.txt", files[0].Filename)
assert.Empty(t, files[0].PreviousFilename)
assert.Equal(t, 1, files[0].Additions)
assert.Equal(t, 1, files[0].Changes)
assert.Equal(t, 0, files[0].Deletions)
assert.Equal(t, "added", files[0].Status)
}
})(t)
})
}
Loading