diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-03-28 05:53:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-28 05:53:33 +0200 |
commit | 36c78b9d1b1eea682703fb1cbb0f4f3144354389 (patch) | |
tree | 4dcd7e9a7c466a269fc50ee43644d90238f00976 /plumbing/object/commit_test.go | |
parent | e190c37cf51a2a320cabd81b25057859ed689a3b (diff) | |
parent | ce4ca45ab6ad1d2c2350e3fb3f91a00b000139cb (diff) | |
download | go-git-36c78b9d1b1eea682703fb1cbb0f4f3144354389.tar.gz |
Merge pull request #314 from lupine/249-fix-bufio-buffer-full
plumbing: Use ReadBytes() rather than ReadSlice()
Diffstat (limited to 'plumbing/object/commit_test.go')
-rw-r--r-- | plumbing/object/commit_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plumbing/object/commit_test.go b/plumbing/object/commit_test.go index d30e1c4..8b4ee2a 100644 --- a/plumbing/object/commit_test.go +++ b/plumbing/object/commit_test.go @@ -2,6 +2,7 @@ package object import ( "io" + "strings" "time" "github.com/src-d/go-git-fixtures" @@ -167,3 +168,19 @@ func (s *SuiteCommit) TestCommitIterNext(c *C) { c.Assert(err, Equals, io.EOF) c.Assert(commit, IsNil) } + +func (s *SuiteCommit) TestLongCommitMessageSerialization(c *C) { + encoded := &plumbing.MemoryObject{} + decoded := &Commit{} + commit := *s.Commit + + longMessage := "my message: message\n\n" + strings.Repeat("test", 4096) + "\nOK" + commit.Message = longMessage + + err := commit.Encode(encoded) + c.Assert(err, IsNil) + + err = decoded.Decode(encoded) + c.Assert(err, IsNil) + c.Assert(decoded.Message, Equals, longMessage) +} |