2017-06-20 05:23:16 -06:00
|
|
|
// 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 (
|
2020-09-09 12:29:10 -06:00
|
|
|
"fmt"
|
2017-06-20 05:23:16 -06:00
|
|
|
"net/http"
|
2017-12-03 15:46:01 -07:00
|
|
|
"net/http/httptest"
|
2017-06-20 05:23:16 -06:00
|
|
|
"testing"
|
|
|
|
|
2020-09-09 12:29:10 -06:00
|
|
|
"code.gitea.io/gitea/modules/structs"
|
2021-11-17 05:34:35 -07:00
|
|
|
|
2017-06-20 05:23:16 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2017-12-03 15:46:01 -07:00
|
|
|
func testRepoMigrate(t testing.TB, session *TestSession, cloneAddr, repoName string) *httptest.ResponseRecorder {
|
2020-09-09 12:29:10 -06:00
|
|
|
req := NewRequest(t, "GET", fmt.Sprintf("/repo/migrate?service_type=%d", structs.PlainGitService)) // render plain git migration page
|
2017-07-07 13:36:47 -06:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-20 05:23:16 -06: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,
|
2020-09-09 12:29:10 -06:00
|
|
|
"service": fmt.Sprintf("%d", structs.PlainGitService),
|
|
|
|
})
|
2022-03-22 22:54:07 -06:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusSeeOther)
|
2017-06-20 05:23:16 -06:00
|
|
|
|
|
|
|
return resp
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoMigrate(t *testing.T) {
|
2019-11-25 16:21:37 -07:00
|
|
|
defer prepareTestEnv(t)()
|
2017-06-20 05:23:16 -06:00
|
|
|
session := loginUser(t, "user2")
|
2020-07-23 22:46:38 -06:00
|
|
|
testRepoMigrate(t, session, "https://github.com/go-gitea/test_repo.git", "git")
|
2017-06-20 05:23:16 -06:00
|
|
|
}
|