2017-11-02 23:21:03 +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 (
"context"
2018-01-16 16:37:47 +05:30
"crypto/rand"
"fmt"
2017-11-02 23:21:03 +05:30
"io/ioutil"
"net"
"net/http"
2017-12-08 17:51:37 +05:30
"net/url"
2017-11-02 23:21:03 +05:30
"os"
2018-02-06 14:57:24 +05:30
"os/exec"
2017-11-02 23:21:03 +05:30
"path/filepath"
"testing"
"time"
"code.gitea.io/git"
2018-01-16 16:37:47 +05:30
"code.gitea.io/gitea/models"
2017-12-08 17:51:37 +05:30
"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/sdk/gitea"
2017-11-02 23:21:03 +05:30
"github.com/Unknwon/com"
"github.com/stretchr/testify/assert"
)
2018-01-16 16:37:47 +05:30
const (
littleSize = 1024 //1ko
bigSize = 128 * 1024 * 1024 //128Mo
)
func onGiteaRun ( t * testing . T , callback func ( * testing . T , * url . URL ) ) {
prepareTestEnv ( t )
2017-11-02 23:21:03 +05:30
s := http . Server {
Handler : mac ,
}
2017-12-08 17:51:37 +05:30
u , err := url . Parse ( setting . AppURL )
assert . NoError ( t , err )
listener , err := net . Listen ( "tcp" , u . Host )
2017-11-02 23:21:03 +05:30
assert . NoError ( t , err )
defer func ( ) {
2018-01-16 16:37:47 +05:30
ctx , cancel := context . WithTimeout ( context . Background ( ) , 2 * time . Minute )
2017-11-02 23:21:03 +05:30
s . Shutdown ( ctx )
cancel ( )
} ( )
go s . Serve ( listener )
2018-01-16 16:37:47 +05:30
//Started by config go ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort, setting.SSH.ServerCiphers, setting.SSH.ServerKeyExchanges, setting.SSH.ServerMACs)
2017-11-02 23:21:03 +05:30
2017-12-08 17:51:37 +05:30
callback ( t , u )
2017-11-02 23:21:03 +05:30
}
2017-12-08 17:51:37 +05:30
func TestGit ( t * testing . T ) {
2018-01-16 16:37:47 +05:30
onGiteaRun ( t , func ( t * testing . T , u * url . URL ) {
2017-12-08 17:51:37 +05:30
u . Path = "user2/repo1.git"
2017-11-02 23:21:03 +05:30
2018-01-16 16:37:47 +05:30
t . Run ( "HTTP" , func ( t * testing . T ) {
dstPath , err := ioutil . TempDir ( "" , "repo-tmp-17" )
assert . NoError ( t , err )
defer os . RemoveAll ( dstPath )
t . Run ( "Standard" , func ( t * testing . T ) {
t . Run ( "CloneNoLogin" , func ( t * testing . T ) {
dstLocalPath , err := ioutil . TempDir ( "" , "repo1" )
assert . NoError ( t , err )
defer os . RemoveAll ( dstLocalPath )
err = git . Clone ( u . String ( ) , dstLocalPath , git . CloneRepoOptions { } )
assert . NoError ( t , err )
assert . True ( t , com . IsExist ( filepath . Join ( dstLocalPath , "README.md" ) ) )
} )
2017-12-08 17:51:37 +05:30
2018-01-16 16:37:47 +05:30
t . Run ( "CreateRepo" , func ( t * testing . T ) {
session := loginUser ( t , "user2" )
req := NewRequestWithJSON ( t , "POST" , "/api/v1/user/repos" , & api . CreateRepoOption {
AutoInit : true ,
Description : "Temporary repo" ,
Name : "repo-tmp-17" ,
Private : false ,
Gitignores : "" ,
License : "WTFPL" ,
Readme : "Default" ,
} )
session . MakeRequest ( t , req , http . StatusCreated )
} )
2017-12-08 17:51:37 +05:30
2018-01-16 16:37:47 +05:30
u . Path = "user2/repo-tmp-17.git"
u . User = url . UserPassword ( "user2" , userPassword )
t . Run ( "Clone" , func ( t * testing . T ) {
err = git . Clone ( u . String ( ) , dstPath , git . CloneRepoOptions { } )
assert . NoError ( t , err )
assert . True ( t , com . IsExist ( filepath . Join ( dstPath , "README.md" ) ) )
2017-12-08 17:51:37 +05:30
} )
2018-01-16 16:37:47 +05:30
t . Run ( "PushCommit" , func ( t * testing . T ) {
t . Run ( "Little" , func ( t * testing . T ) {
commitAndPush ( t , littleSize , dstPath )
} )
t . Run ( "Big" , func ( t * testing . T ) {
commitAndPush ( t , bigSize , dstPath )
} )
} )
2017-12-08 17:51:37 +05:30
} )
2018-01-16 16:37:47 +05:30
t . Run ( "LFS" , func ( t * testing . T ) {
t . Run ( "PushCommit" , func ( t * testing . T ) {
//Setup git LFS
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "install" ) . RunInDir ( dstPath )
assert . NoError ( t , err )
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "track" , "data-file-*" ) . RunInDir ( dstPath )
assert . NoError ( t , err )
err = git . AddChanges ( dstPath , false , ".gitattributes" )
assert . NoError ( t , err )
2017-12-08 17:51:37 +05:30
2018-01-16 16:37:47 +05:30
t . Run ( "Little" , func ( t * testing . T ) {
commitAndPush ( t , littleSize , dstPath )
} )
t . Run ( "Big" , func ( t * testing . T ) {
commitAndPush ( t , bigSize , dstPath )
} )
2017-12-08 17:51:37 +05:30
} )
2018-01-16 16:37:47 +05:30
t . Run ( "Locks" , func ( t * testing . T ) {
lockTest ( t , u . String ( ) , dstPath )
2017-12-08 17:51:37 +05:30
} )
} )
} )
2018-01-16 16:37:47 +05:30
t . Run ( "SSH" , func ( t * testing . T ) {
//Setup remote link
u . Scheme = "ssh"
u . User = url . User ( "git" )
u . Host = fmt . Sprintf ( "%s:%d" , setting . SSH . ListenHost , setting . SSH . ListenPort )
u . Path = "user2/repo-tmp-18.git"
2017-12-08 17:51:37 +05:30
2018-01-16 16:37:47 +05:30
//Setup key
keyFile := filepath . Join ( setting . AppDataPath , "my-testing-key" )
2018-02-06 14:57:24 +05:30
err := exec . Command ( "ssh-keygen" , "-f" , keyFile , "-t" , "rsa" , "-N" , "" ) . Run ( )
2018-01-16 16:37:47 +05:30
assert . NoError ( t , err )
defer os . RemoveAll ( keyFile )
defer os . RemoveAll ( keyFile + ".pub" )
session := loginUser ( t , "user1" )
keyOwner := models . AssertExistsAndLoadBean ( t , & models . User { Name : "user2" } ) . ( * models . User )
urlStr := fmt . Sprintf ( "/api/v1/admin/users/%s/keys" , keyOwner . Name )
dataPubKey , err := ioutil . ReadFile ( keyFile + ".pub" )
assert . NoError ( t , err )
req := NewRequestWithValues ( t , "POST" , urlStr , map [ string ] string {
"key" : string ( dataPubKey ) ,
"title" : "test-key" ,
2017-12-08 17:51:37 +05:30
} )
2018-01-16 16:37:47 +05:30
session . MakeRequest ( t , req , http . StatusCreated )
//Setup ssh wrapper
2018-02-06 14:57:24 +05:30
os . Setenv ( "GIT_SSH_COMMAND" ,
"ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i " +
filepath . Join ( setting . AppWorkPath , keyFile ) )
os . Setenv ( "GIT_SSH_VARIANT" , "ssh" )
2018-01-16 16:37:47 +05:30
//Setup clone folder
dstPath , err := ioutil . TempDir ( "" , "repo-tmp-18" )
assert . NoError ( t , err )
defer os . RemoveAll ( dstPath )
t . Run ( "Standard" , func ( t * testing . T ) {
t . Run ( "CreateRepo" , func ( t * testing . T ) {
session := loginUser ( t , "user2" )
req := NewRequestWithJSON ( t , "POST" , "/api/v1/user/repos" , & api . CreateRepoOption {
AutoInit : true ,
Description : "Temporary repo" ,
Name : "repo-tmp-18" ,
Private : false ,
Gitignores : "" ,
License : "WTFPL" ,
Readme : "Default" ,
} )
session . MakeRequest ( t , req , http . StatusCreated )
} )
//TODO get url from api
t . Run ( "Clone" , func ( t * testing . T ) {
2018-02-06 14:57:24 +05:30
_ , err = git . NewCommand ( "clone" ) . AddArguments ( u . String ( ) , dstPath ) . Run ( )
2018-01-16 16:37:47 +05:30
assert . NoError ( t , err )
assert . True ( t , com . IsExist ( filepath . Join ( dstPath , "README.md" ) ) )
} )
//time.Sleep(5 * time.Minute)
t . Run ( "PushCommit" , func ( t * testing . T ) {
t . Run ( "Little" , func ( t * testing . T ) {
commitAndPush ( t , littleSize , dstPath )
} )
t . Run ( "Big" , func ( t * testing . T ) {
commitAndPush ( t , bigSize , dstPath )
} )
} )
2017-12-08 17:51:37 +05:30
} )
2018-01-16 16:37:47 +05:30
t . Run ( "LFS" , func ( t * testing . T ) {
t . Run ( "PushCommit" , func ( t * testing . T ) {
//Setup git LFS
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "install" ) . RunInDir ( dstPath )
assert . NoError ( t , err )
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "track" , "data-file-*" ) . RunInDir ( dstPath )
assert . NoError ( t , err )
err = git . AddChanges ( dstPath , false , ".gitattributes" )
assert . NoError ( t , err )
2017-11-02 23:21:03 +05:30
2018-01-16 16:37:47 +05:30
t . Run ( "Little" , func ( t * testing . T ) {
commitAndPush ( t , littleSize , dstPath )
} )
t . Run ( "Big" , func ( t * testing . T ) {
commitAndPush ( t , bigSize , dstPath )
} )
} )
t . Run ( "Locks" , func ( t * testing . T ) {
2018-01-27 22:18:15 +05:30
lockTest ( t , u . String ( ) , dstPath )
2018-01-16 16:37:47 +05:30
} )
} )
2017-12-08 17:51:37 +05:30
} )
2017-11-02 23:21:03 +05:30
} )
}
2018-01-16 16:37:47 +05:30
func lockTest ( t * testing . T , remote , repoPath string ) {
_ , err := git . NewCommand ( "remote" ) . AddArguments ( "set-url" , "origin" , remote ) . RunInDir ( repoPath ) //TODO add test ssh git-lfs-creds
assert . NoError ( t , err )
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "locks" ) . RunInDir ( repoPath )
assert . NoError ( t , err )
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "lock" , "README.md" ) . RunInDir ( repoPath )
assert . NoError ( t , err )
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "locks" ) . RunInDir ( repoPath )
assert . NoError ( t , err )
_ , err = git . NewCommand ( "lfs" ) . AddArguments ( "unlock" , "README.md" ) . RunInDir ( repoPath )
assert . NoError ( t , err )
}
func commitAndPush ( t * testing . T , size int , repoPath string ) {
err := generateCommitWithNewData ( size , repoPath , "user2@example.com" , "User Two" )
assert . NoError ( t , err )
_ , err = git . NewCommand ( "push" ) . RunInDir ( repoPath ) //Push
assert . NoError ( t , err )
}
func generateCommitWithNewData ( size int , repoPath , email , fullName string ) error {
//Generate random file
data := make ( [ ] byte , size )
_ , err := rand . Read ( data )
if err != nil {
return err
}
tmpFile , err := ioutil . TempFile ( repoPath , "data-file-" )
if err != nil {
return err
}
defer tmpFile . Close ( )
_ , err = tmpFile . Write ( data )
if err != nil {
return err
}
//Commit
err = git . AddChanges ( repoPath , false , filepath . Base ( tmpFile . Name ( ) ) )
if err != nil {
return err
}
err = git . CommitChanges ( repoPath , git . CommitChangesOptions {
Committer : & git . Signature {
Email : email ,
Name : fullName ,
When : time . Now ( ) ,
} ,
Author : & git . Signature {
Email : email ,
Name : fullName ,
When : time . Now ( ) ,
} ,
Message : fmt . Sprintf ( "Testing commit @ %v" , time . Now ( ) ) ,
} )
return err
}