git2go/clone_test.go

78 lines
1.4 KiB
Go
Raw Normal View History

2014-03-18 20:24:31 -05:00
package git
import (
"io/ioutil"
"testing"
)
const (
REMOTENAME = "testremote"
)
2014-03-18 20:24:31 -05:00
func TestClone(t *testing.T) {
t.Parallel()
2014-03-18 20:24:31 -05:00
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
2014-03-19 02:03:21 -05:00
2014-03-18 20:24:31 -05:00
seedTestRepo(t, repo)
path, err := ioutil.TempDir("", "git2go")
checkFatal(t, err)
ref, err := repo.References.Lookup("refs/heads/master")
checkFatal(t, err)
repo2, err := Clone(repo.Path(), path, &CloneOptions{Bare: true})
defer cleanupTestRepo(t, repo2)
2014-03-18 20:24:31 -05:00
checkFatal(t, err)
ref2, err := repo2.References.Lookup("refs/heads/master")
checkFatal(t, err)
if ref.Cmp(ref2) != 0 {
t.Fatal("reference in clone does not match original ref")
}
2014-03-18 20:24:31 -05:00
}
func TestCloneWithCallback(t *testing.T) {
t.Parallel()
testPayload := 0
repo := createTestRepo(t)
defer cleanupTestRepo(t, repo)
seedTestRepo(t, repo)
path, err := ioutil.TempDir("", "git2go")
checkFatal(t, err)
opts := CloneOptions{
Bare: true,
2015-08-31 06:49:17 -05:00
RemoteCreateCallback: func(r *Repository, name, url string) (*Remote, ErrorCode) {
testPayload += 1
2015-08-31 06:49:17 -05:00
remote, err := r.Remotes.Create(REMOTENAME, url)
if err != nil {
return nil, ErrorCodeGeneric
}
return remote, ErrorCodeOK
},
}
repo2, err := Clone(repo.Path(), path, &opts)
defer cleanupTestRepo(t, repo2)
checkFatal(t, err)
if testPayload != 1 {
t.Fatal("Payload's value has not been changed")
}
2015-08-31 06:49:17 -05:00
remote, err := repo2.Remotes.Lookup(REMOTENAME)
if err != nil || remote == nil {
t.Fatal("Remote was not created properly")
}
}