diff options
author | norohind <60548839+norohind@users.noreply.github.com> | 2024-03-17 06:56:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-17 11:56:49 +0800 |
commit | ed02d1fab85c9b8206c0af84dcfc3792e61609cf (patch) | |
tree | fbf1493441ca60421470e45f997474d18aae8551 /tests/integration | |
parent | 4e547822f348c2963e0db33135b45d43dfc58df8 (diff) | |
download | gitea-ed02d1fab85c9b8206c0af84dcfc3792e61609cf.tar.gz gitea-ed02d1fab85c9b8206c0af84dcfc3792e61609cf.zip |
Fix PR creation via api between branches of same repo with head field namespaced (#26986)
Fix #20175
Current implementation of API does not allow creating pull requests
between branches of the same
repo when you specify *namespace* (owner of the repo) in `head` field in
http request body.
---
Although GitHub implementation of API allows performing such action and
since Gitea targeting
compatibility with GitHub API I see it as an appropriate change.
I'm proposing a fix to the described problem and test case which covers
this logic.
My use-case just in case:
https://github.com/go-gitea/gitea/issues/20175#issuecomment-1711283022
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/api_pull_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/integration/api_pull_test.go b/tests/integration/api_pull_test.go index 92931c5699..bb479caf89 100644 --- a/tests/integration/api_pull_test.go +++ b/tests/integration/api_pull_test.go @@ -126,6 +126,23 @@ func TestAPICreatePullSuccess(t *testing.T) { MakeRequest(t, req, http.StatusUnprocessableEntity) // second request should fail } +func TestAPICreatePullSameRepoSuccess(t *testing.T) { + defer tests.PrepareTestEnv(t)() + repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1}) + owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: repo.OwnerID}) + + session := loginUser(t, owner.Name) + token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeWriteRepository) + + req := NewRequestWithJSON(t, http.MethodPost, fmt.Sprintf("/api/v1/repos/%s/%s/pulls", owner.Name, repo.Name), &api.CreatePullRequestOption{ + Head: fmt.Sprintf("%s:pr-to-update", owner.Name), + Base: "master", + Title: "successfully create a PR between branches of the same repository", + }).AddTokenAuth(token) + MakeRequest(t, req, http.StatusCreated) + MakeRequest(t, req, http.StatusUnprocessableEntity) // second request should fail +} + func TestAPICreatePullWithFieldsSuccess(t *testing.T) { defer tests.PrepareTestEnv(t)() // repo10 have code, pulls units. |