diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-07 11:16:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-07 11:16:59 +0100 |
commit | 01ea726be6ed745a21c88fd61fc5e2a62c4ceb88 (patch) | |
tree | 8e0cbfe502afb3187d93e8da95cc1677794c6df5 /plumbing/protocol/packp/sideband/demux_test.go | |
parent | 5990aeb7198a4961a363eeb422a3faa57c8dc029 (diff) | |
download | go-git-01ea726be6ed745a21c88fd61fc5e2a62c4ceb88.tar.gz |
remote: sideband support (#164)
* remote: sideband support
* changes
Diffstat (limited to 'plumbing/protocol/packp/sideband/demux_test.go')
-rw-r--r-- | plumbing/protocol/packp/sideband/demux_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plumbing/protocol/packp/sideband/demux_test.go b/plumbing/protocol/packp/sideband/demux_test.go index 4814d89..ee5f19a 100644 --- a/plumbing/protocol/packp/sideband/demux_test.go +++ b/plumbing/protocol/packp/sideband/demux_test.go @@ -24,6 +24,7 @@ func (s *SidebandSuite) TestDecode(c *C) { buf := bytes.NewBuffer(nil) e := pktline.NewEncoder(buf) e.Encode(PackData.WithPayload(expected[0:8])) + e.Encode(ProgressMessage.WithPayload([]byte{'F', 'O', 'O', '\n'})) e.Encode(PackData.WithPayload(expected[8:16])) e.Encode(PackData.WithPayload(expected[16:26])) @@ -92,6 +93,8 @@ func (s *SidebandSuite) TestDecodeWithProgress(c *C) { content := make([]byte, 26) d := NewDemuxer(Sideband64k, buf) + d.Progress = bytes.NewBuffer(nil) + n, err := io.ReadFull(d, content) c.Assert(err, IsNil) c.Assert(n, Equals, 26) |