blob: a217e971603a3cdfb63c47fc8996f6728a362462 (
plain) (
tree)
|
|
package file
import (
"os"
"os/exec"
"path/filepath"
fixtures "github.com/go-git/go-git-fixtures/v4"
. "gopkg.in/check.v1"
)
type CommonSuite struct {
fixtures.Suite
ReceivePackBin string
UploadPackBin string
tmpDir string // to be removed at teardown
}
var _ = Suite(&CommonSuite{})
func (s *CommonSuite) SetUpSuite(c *C) {
if err := exec.Command("git", "--version").Run(); err != nil {
c.Skip("git command not found")
}
var err error
s.tmpDir, err = os.MkdirTemp("", "")
c.Assert(err, IsNil)
s.ReceivePackBin = filepath.Join(s.tmpDir, "git-receive-pack")
s.UploadPackBin = filepath.Join(s.tmpDir, "git-upload-pack")
bin := filepath.Join(s.tmpDir, "go-git")
cmd := exec.Command("go", "build", "-o", bin)
cmd.Dir = "../../../cli/go-git"
c.Assert(cmd.Run(), IsNil)
c.Assert(os.Symlink(bin, s.ReceivePackBin), IsNil)
c.Assert(os.Symlink(bin, s.UploadPackBin), IsNil)
}
func (s *CommonSuite) TearDownSuite(c *C) {
defer s.Suite.TearDownSuite(c)
c.Assert(os.RemoveAll(s.tmpDir), IsNil)
}
|