From 841abfb7dc640755c443432064252907e3e55c95 Mon Sep 17 00:00:00 2001 From: "Santiago M. Mola" Date: Wed, 4 Jan 2017 11:18:41 +0100 Subject: 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. --- plumbing/transport/http/common_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plumbing/transport/http/common_test.go') diff --git a/plumbing/transport/http/common_test.go b/plumbing/transport/http/common_test.go index 432bd07..217999d 100644 --- a/plumbing/transport/http/common_test.go +++ b/plumbing/transport/http/common_test.go @@ -26,7 +26,7 @@ func (s *ClientSuite) SetUpSuite(c *C) { c.Assert(err, IsNil) } -func (s *FetchPackSuite) TestNewClient(c *C) { +func (s *UploadPackSuite) TestNewClient(c *C) { roundTripper := &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, } @@ -76,10 +76,10 @@ func (s *ClientSuite) testNewHTTPError(c *C, code int, msg string) { func (s *ClientSuite) TestSetAuth(c *C) { auth := &BasicAuth{} - r, err := DefaultClient.NewFetchPackSession(s.Endpoint) + r, err := DefaultClient.NewUploadPackSession(s.Endpoint) c.Assert(err, IsNil) r.SetAuth(auth) - c.Assert(auth, Equals, r.(*fetchPackSession).auth) + c.Assert(auth, Equals, r.(*upSession).auth) } type mockAuth struct{} @@ -88,7 +88,7 @@ func (*mockAuth) Name() string { return "" } func (*mockAuth) String() string { return "" } func (s *ClientSuite) TestSetAuthWrongType(c *C) { - r, err := DefaultClient.NewFetchPackSession(s.Endpoint) + r, err := DefaultClient.NewUploadPackSession(s.Endpoint) c.Assert(err, IsNil) c.Assert(r.SetAuth(&mockAuth{}), Equals, transport.ErrInvalidAuthMethod) } -- cgit