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