2017-06-20 11:23:16 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-06-20 11:23:16 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2017-06-20 11:23:16 +00:00
|
|
|
|
|
|
|
import (
|
2020-09-09 18:29:10 +00:00
|
|
|
"fmt"
|
2017-06-20 11:23:16 +00:00
|
|
|
"net/http"
|
2017-12-03 22:46:01 +00:00
|
|
|
"net/http/httptest"
|
2017-06-20 11:23:16 +00:00
|
|
|
"testing"
|
|
|
|
|
2020-09-09 18:29:10 +00:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2022-09-02 19:18:23 +00:00
|
|
|
"code.gitea.io/gitea/tests"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2017-06-20 11:23:16 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2023-08-20 14:16:30 +00:00
|
|
|
func testRepoMigrate(t testing.TB, session *TestSession, cloneAddr, repoName string, service structs.GitServiceType) *httptest.ResponseRecorder {
|
|
|
|
req := NewRequest(t, "GET", fmt.Sprintf("/repo/migrate?service_type=%d", service)) // render plain git migration page
|
2017-07-07 19:36:47 +00:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-20 11:23:16 +00:00
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
|
|
|
|
link, exists := htmlDoc.doc.Find("form.ui.form").Attr("action")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
|
|
|
uid, exists := htmlDoc.doc.Find("#uid").Attr("value")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
|
|
|
req = NewRequestWithValues(t, "POST", link, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
|
|
|
"clone_addr": cloneAddr,
|
|
|
|
"uid": uid,
|
|
|
|
"repo_name": repoName,
|
2023-08-20 14:16:30 +00:00
|
|
|
"service": fmt.Sprintf("%d", service),
|
2020-09-09 18:29:10 +00:00
|
|
|
})
|
2022-03-23 04:54:07 +00:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusSeeOther)
|
2017-06-20 11:23:16 +00:00
|
|
|
|
|
|
|
return resp
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoMigrate(t *testing.T) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2017-06-20 11:23:16 +00:00
|
|
|
session := loginUser(t, "user2")
|
2023-08-20 14:16:30 +00:00
|
|
|
for _, s := range []struct {
|
|
|
|
testName string
|
|
|
|
cloneAddr string
|
|
|
|
repoName string
|
|
|
|
service structs.GitServiceType
|
|
|
|
}{
|
|
|
|
{"TestMigrateGithub", "https://github.com/go-gitea/test_repo.git", "git", structs.PlainGitService},
|
|
|
|
{"TestMigrateGithub", "https://github.com/go-gitea/test_repo.git", "github", structs.GithubService},
|
|
|
|
} {
|
|
|
|
t.Run(s.testName, func(t *testing.T) {
|
|
|
|
testRepoMigrate(t, session, s.cloneAddr, s.repoName, s.service)
|
|
|
|
})
|
|
|
|
}
|
2017-06-20 11:23:16 +00:00
|
|
|
}
|