aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/transport/file/common_test.go
diff options
context:
space:
mode:
authorSantiago M. Mola <santi@mola.io>2017-01-04 11:18:41 +0100
committerGitHub <noreply@github.com>2017-01-04 11:18:41 +0100
commit841abfb7dc640755c443432064252907e3e55c95 (patch)
tree8af69dcd3b301a10a3e493e2cd805cdec6dcaecd /plumbing/transport/file/common_test.go
parent90d67bb648ae32d5b1a0f7b1af011da6dfb24315 (diff)
downloadgo-git-841abfb7dc640755c443432064252907e3e55c95.tar.gz
server: add git server implementation (#190)
* server: add generic server implementation (transport-independent), both for git-upload-pack and git-receive-pack. * server: move internal functions to internal/common. * cli: add git-receive-pack and git-upload-pack implementations. * format/packfile: add UpdateObjectStorage function, extracted from Remote. * transport: implement tranport RPC-like, only with git-upload-pack and git-receive-pack methods. Client renamed to Transport. * storer: add storer.Storer interface. * protocol/packp: add UploadPackResponse constructor with packfile. * protocol/packp: fix UploadPackResponse encoding, add tests. * protocol/packp/capability: implement All.
Diffstat (limited to 'plumbing/transport/file/common_test.go')
-rw-r--r--plumbing/transport/file/common_test.go49
1 files changed, 24 insertions, 25 deletions
diff --git a/plumbing/transport/file/common_test.go b/plumbing/transport/file/common_test.go
index 220df3d..cd7c400 100644
--- a/plumbing/transport/file/common_test.go
+++ b/plumbing/transport/file/common_test.go
@@ -1,40 +1,39 @@
package file
import (
- "fmt"
- "io"
"os"
- "strings"
- "testing"
+ "os/exec"
+ "path/filepath"
- "gopkg.in/src-d/go-git.v4/plumbing/transport"
+ "gopkg.in/src-d/go-git.v4/fixtures"
. "gopkg.in/check.v1"
+ "io/ioutil"
)
-func Test(t *testing.T) { TestingT(t) }
+type CommonSuite struct {
+ fixtures.Suite
+ ReceivePackBin string
+ UploadPackBin string
+}
-const bareConfig = `[core]
-repositoryformatversion = 0
-filemode = true
-bare = true`
+var _ = Suite(&CommonSuite{})
-func prepareRepo(c *C, path string) transport.Endpoint {
- url := fmt.Sprintf("file://%s", path)
- ep, err := transport.NewEndpoint(url)
- c.Assert(err, IsNil)
+func (s *CommonSuite) SetUpSuite(c *C) {
+ s.Suite.SetUpSuite(c)
- // git-receive-pack refuses to update refs/heads/master on non-bare repo
- // so we ensure bare repo config.
- config := fmt.Sprintf("%s/config", path)
- if _, err := os.Stat(config); err == nil {
- f, err := os.OpenFile(config, os.O_TRUNC|os.O_WRONLY, 0)
- c.Assert(err, IsNil)
- content := strings.NewReader(bareConfig)
- _, err = io.Copy(f, content)
- c.Assert(err, IsNil)
- c.Assert(f.Close(), IsNil)
+ if err := exec.Command("git", "--version").Run(); err != nil {
+ c.Skip("git command not found")
}
- return ep
+ binDir, err := ioutil.TempDir(os.TempDir(), "")
+ c.Assert(err, IsNil)
+ s.ReceivePackBin = filepath.Join(binDir, "git-receive-pack")
+ s.UploadPackBin = filepath.Join(binDir, "git-upload-pack")
+ bin := filepath.Join(binDir, "go-git")
+ cmd := exec.Command("go", "build", "-o", bin,
+ "../../../cli/go-git/...")
+ c.Assert(cmd.Run(), IsNil)
+ c.Assert(os.Symlink(bin, s.ReceivePackBin), IsNil)
+ c.Assert(os.Symlink(bin, s.UploadPackBin), IsNil)
}