From ae748859be8d6d3ed3c0929770f0c287ab6d6460 Mon Sep 17 00:00:00 2001 From: Slack Coder Date: Mon, 8 Apr 2024 15:29:11 -0500 Subject: Port to Golang --- internal/service/git_test.go | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 internal/service/git_test.go (limited to 'internal/service/git_test.go') diff --git a/internal/service/git_test.go b/internal/service/git_test.go new file mode 100644 index 0000000..6dc8f62 --- /dev/null +++ b/internal/service/git_test.go @@ -0,0 +1,34 @@ +package service + +import ( + "os/exec" + "path" + "strings" + "testing" + + "git.server.ky/slackcoder/mirror/internal" + "github.com/stretchr/testify/require" +) + +func requireTagExist(t *testing.T, filePath string, tag string, msgAndArgs ...interface{}) { + cmd := exec.Command("git", "tag") + cmd.Dir = filePath + + buf, err := cmd.Output() + require.NoError(t, err) + + tags := strings.Fields(string(buf)) + require.Contains(t, tags, tag, msgAndArgs...) +} + +func TestMirrorGit(t *testing.T) { + d := t.TempDir() + + dst := internal.MustURL(path.Join(d, "merchant")) + src := internal.MustURL("https://git.taler.net/merchant.git") + + err := MirrorGit(dst, src, "GNU Taler Merchant") + require.NoError(t, err, "git mirror") + + requireTagExist(t, dst.Path, "v0.11.3", "tag must exist") +} -- cgit v1.2.3