Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git: add support for cloning empty repos #393

Merged
merged 1 commit into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions git/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ import (
// on a Git repository.
type RepositoryReader interface {
// Clone clones a repository from the provided url using the options provided.
// It returns a Commit object describing the Git commit that the repository
// HEAD points to. If the repository is empty, it returns a nil Commit.
Clone(ctx context.Context, url string, cloneOpts CloneOptions) (*Commit, error)
// IsClean returns whether the working tree is clean.
IsClean() (bool, error)
Expand Down
17 changes: 15 additions & 2 deletions git/gogit/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
"context"
"fmt"
"io"
"os"
"sort"
"strings"
"time"
Expand Down Expand Up @@ -93,13 +94,25 @@ func (g *Client) cloneBranch(ctx context.Context, url, branch string, opts git.C

repo, err := extgogit.CloneContext(ctx, g.storer, g.worktreeFS, cloneOpts)
if err != nil {
if err == transport.ErrEmptyRemoteRepository || err == transport.ErrRepositoryNotFound || isRemoteBranchNotFoundErr(err, ref.String()) {
if err == transport.ErrRepositoryNotFound || isRemoteBranchNotFoundErr(err, ref.String()) {
return nil, git.ErrRepositoryNotFound{
Message: fmt.Sprintf("unable to clone: %s", err),
URL: url,
}
}
return nil, fmt.Errorf("unable to clone '%s': %w", url, gitutil.GoGitError(err))
// Directly cloning an empty Git repo to a directory fails with this error.
// We check for the error and then init a new Git repo in that directory
// (which represents an empty repository).
if err == transport.ErrEmptyRemoteRepository {
if err = os.RemoveAll(g.path); err == nil {
if err = g.Init(ctx, url, branch); err == nil {
return nil, nil
}
}
}
if err != nil {
return nil, fmt.Errorf("unable to clone '%s': %w", url, gitutil.GoGitError(err))
}
}

head, err := repo.Head()
Expand Down
30 changes: 28 additions & 2 deletions git/gogit/clone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import (
const testRepositoryPath = "../testdata/git/repo"

func TestClone_cloneBranch(t *testing.T) {
repo, path, err := initRepo(t)
repo, repoPath, err := initRepo(t)
if err != nil {
t.Fatal(err)
}
Expand All @@ -65,6 +65,11 @@ func TestClone_cloneBranch(t *testing.T) {
t.Fatal(err)
}

_, emptyRepoPath, err := initRepo(t)
if err != nil {
t.Fatal(err)
}

tests := []struct {
name string
branch string
Expand All @@ -73,6 +78,7 @@ func TestClone_cloneBranch(t *testing.T) {
expectedCommit string
expectedConcreteCommit bool
expectedErr string
expectedEmpty bool
}{
{
name: "Default branch",
Expand Down Expand Up @@ -102,6 +108,11 @@ func TestClone_cloneBranch(t *testing.T) {
branch: "invalid",
expectedErr: "couldn't find remote ref \"refs/heads/invalid\"",
},
{
name: "empty repo",
branch: "master",
expectedEmpty: true,
},
}

for _, tt := range tests {
Expand All @@ -112,7 +123,14 @@ func TestClone_cloneBranch(t *testing.T) {
ggc, err := NewClient(tmpDir, &git.AuthOptions{Transport: git.HTTP})
g.Expect(err).ToNot(HaveOccurred())

cc, err := ggc.Clone(context.TODO(), path, git.CloneOptions{
var upstreamPath string
if tt.expectedEmpty {
upstreamPath = emptyRepoPath
} else {
upstreamPath = repoPath
}

cc, err := ggc.Clone(context.TODO(), upstreamPath, git.CloneOptions{
CheckoutStrategy: git.CheckoutStrategy{
Branch: tt.branch,
},
Expand All @@ -125,6 +143,14 @@ func TestClone_cloneBranch(t *testing.T) {
g.Expect(cc).To(BeNil())
return
}

if tt.expectedEmpty {
g.Expect(cc).To(BeNil())
g.Expect(err).ToNot(HaveOccurred())
g.Expect(filepath.Join(ggc.path, ".git")).To(BeADirectory())
return
}

g.Expect(err).ToNot(HaveOccurred())
g.Expect(cc.String()).To(Equal(tt.branch + "/" + tt.expectedCommit))
g.Expect(git.IsConcreteCommit(*cc)).To(Equal(tt.expectedConcreteCommit))
Expand Down
8 changes: 8 additions & 0 deletions git/libgit2/clone.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ func (l *Client) cloneBranch(ctx context.Context, url, branch string, opts git.C
return nil, fmt.Errorf("unable to fetch remote '%s': %w", url, gitutil.LibGit2Error(err))
}

isEmpty, err := l.repository.IsEmpty()
pjbgf marked this conversation as resolved.
Show resolved Hide resolved
if err != nil {
return nil, fmt.Errorf("unable to check if cloned repo '%s' is empty: %w", url, err)
}
if isEmpty {
return nil, nil
}

branchRef, err := l.repository.References.Lookup(fmt.Sprintf("refs/remotes/origin/%s", branch))
if err != nil {
return nil, fmt.Errorf("unable to lookup branch '%s' for '%s': %w", branch, url, gitutil.LibGit2Error(err))
Expand Down