2017-06-07 07:57:49 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package integrations
|
|
|
|
|
|
|
|
import (
|
2017-10-15 20:36:07 +05:30
|
|
|
"fmt"
|
2017-06-07 07:57:49 +05:30
|
|
|
"net/http"
|
2017-12-04 04:16:01 +05:30
|
|
|
"net/http/httptest"
|
2017-06-07 07:57:49 +05:30
|
|
|
"testing"
|
|
|
|
|
2021-11-16 14:23:21 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2017-10-15 20:36:07 +05:30
|
|
|
|
2017-06-07 07:57:49 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2017-12-04 04:16:01 +05:30
|
|
|
func testRepoFork(t *testing.T, session *TestSession, ownerName, repoName, forkOwnerName, forkRepoName string) *httptest.ResponseRecorder {
|
2021-11-24 15:19:20 +05:30
|
|
|
forkOwner := unittest.AssertExistsAndLoadBean(t, &user_model.User{Name: forkOwnerName}).(*user_model.User)
|
2017-10-15 20:36:07 +05:30
|
|
|
|
2017-06-07 07:57:49 +05:30
|
|
|
// Step0: check the existence of the to-fork repo
|
2017-10-15 20:36:07 +05:30
|
|
|
req := NewRequestf(t, "GET", "/%s/%s", forkOwnerName, forkRepoName)
|
2021-11-18 07:03:06 +05:30
|
|
|
session.MakeRequest(t, req, http.StatusNotFound)
|
2017-06-07 07:57:49 +05:30
|
|
|
|
|
|
|
// Step1: go to the main page of repo
|
2017-10-15 20:36:07 +05:30
|
|
|
req = NewRequestf(t, "GET", "/%s/%s", ownerName, repoName)
|
2021-11-18 07:03:06 +05:30
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-07 07:57:49 +05:30
|
|
|
|
|
|
|
// Step2: click the fork button
|
2017-06-17 21:59:59 +05:30
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2017-06-07 07:57:49 +05:30
|
|
|
link, exists := htmlDoc.doc.Find("a.ui.button[href^=\"/repo/fork/\"]").Attr("href")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-06-10 06:11:36 +05:30
|
|
|
req = NewRequest(t, "GET", link)
|
2017-07-08 01:06:47 +05:30
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-06-07 07:57:49 +05:30
|
|
|
|
|
|
|
// Step3: fill the form of the forking
|
2017-06-17 21:59:59 +05:30
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
2017-06-07 07:57:49 +05:30
|
|
|
link, exists = htmlDoc.doc.Find("form.ui.form[action^=\"/repo/fork/\"]").Attr("action")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-10-15 20:36:07 +05:30
|
|
|
_, exists = htmlDoc.doc.Find(fmt.Sprintf(".owner.dropdown .item[data-value=\"%d\"]", forkOwner.ID)).Attr("data-value")
|
|
|
|
assert.True(t, exists, fmt.Sprintf("Fork owner '%s' is not present in select box", forkOwnerName))
|
2017-06-17 10:19:45 +05:30
|
|
|
req = NewRequestWithValues(t, "POST", link, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2017-10-15 20:36:07 +05:30
|
|
|
"uid": fmt.Sprintf("%d", forkOwner.ID),
|
|
|
|
"repo_name": forkRepoName,
|
2017-06-17 10:19:45 +05:30
|
|
|
})
|
2022-06-20 15:32:49 +05:30
|
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
2017-06-07 07:57:49 +05:30
|
|
|
|
|
|
|
// Step4: check the existence of the forked repo
|
2017-10-15 20:36:07 +05:30
|
|
|
req = NewRequestf(t, "GET", "/%s/%s", forkOwnerName, forkRepoName)
|
2017-07-08 01:06:47 +05:30
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 16:50:39 +05:30
|
|
|
|
|
|
|
return resp
|
2017-06-07 07:57:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoFork(t *testing.T) {
|
2019-11-26 04:51:37 +05:30
|
|
|
defer prepareTestEnv(t)()
|
2017-06-17 10:19:45 +05:30
|
|
|
session := loginUser(t, "user1")
|
2017-10-15 20:36:07 +05:30
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoForkToOrg(t *testing.T) {
|
2019-11-26 04:51:37 +05:30
|
|
|
defer prepareTestEnv(t)()
|
2017-10-15 20:36:07 +05:30
|
|
|
session := loginUser(t, "user2")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user3", "repo1")
|
|
|
|
|
|
|
|
// Check that no more forking is allowed as user2 owns repository
|
|
|
|
// and user3 organization that owner user2 is also now has forked this repository
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
_, exists := htmlDoc.doc.Find("a.ui.button[href^=\"/repo/fork/\"]").Attr("href")
|
|
|
|
assert.False(t, exists, "Forking should not be allowed anymore")
|
2017-06-07 07:57:49 +05:30
|
|
|
}
|