diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-10-31 19:44:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-31 19:44:29 +0000 |
commit | 6b7464a22c6177d9e0cf96e1aaaae13c127c3149 (patch) | |
tree | 70ac03894fafe43deb5b62ba18afa45f79507695 /formats/index/encoder_test.go | |
parent | 5078f52a9f2217027b0f475d5a91e677b3228588 (diff) | |
download | go-git-6b7464a22c6177d9e0cf96e1aaaae13c127c3149.tar.gz |
format: index encoder and index decoder improvements (#105)
Diffstat (limited to 'formats/index/encoder_test.go')
-rw-r--r-- | formats/index/encoder_test.go | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/formats/index/encoder_test.go b/formats/index/encoder_test.go new file mode 100644 index 0000000..3085988 --- /dev/null +++ b/formats/index/encoder_test.go @@ -0,0 +1,78 @@ +package index + +import ( + "bytes" + "strings" + "time" + + . "gopkg.in/check.v1" + "gopkg.in/src-d/go-git.v4/core" +) + +func (s *IdxfileSuite) TestEncode(c *C) { + idx := &Index{ + Version: 2, + Entries: []Entry{{ + CreatedAt: time.Now(), + ModifiedAt: time.Now(), + Dev: 4242, + Inode: 424242, + UID: 84, + GID: 8484, + Size: 42, + Stage: TheirMode, + Hash: core.NewHash("e25b29c8946e0e192fae2edc1dabf7be71e8ecf3"), + Name: "foo", + }, { + CreatedAt: time.Now(), + ModifiedAt: time.Now(), + Name: strings.Repeat(" ", 20), + Size: 82, + }}, + } + + buf := bytes.NewBuffer(nil) + e := NewEncoder(buf) + err := e.Encode(idx) + c.Assert(err, IsNil) + + output := &Index{} + d := NewDecoder(buf) + err = d.Decode(output) + c.Assert(err, IsNil) + + c.Assert(idx, DeepEquals, output) +} + +func (s *IdxfileSuite) TestEncodeUnsuportedVersion(c *C) { + idx := &Index{Version: 3} + + buf := bytes.NewBuffer(nil) + e := NewEncoder(buf) + err := e.Encode(idx) + c.Assert(err, Equals, ErrUnsupportedVersion) +} + +func (s *IdxfileSuite) TestEncodeWithIntentToAddUnsuportedVersion(c *C) { + idx := &Index{ + Version: 2, + Entries: []Entry{{IntentToAdd: true}}, + } + + buf := bytes.NewBuffer(nil) + e := NewEncoder(buf) + err := e.Encode(idx) + c.Assert(err, Equals, ErrUnsupportedVersion) +} + +func (s *IdxfileSuite) TestEncodeWithSkipWorktreeUnsuportedVersion(c *C) { + idx := &Index{ + Version: 2, + Entries: []Entry{{SkipWorktree: true}}, + } + + buf := bytes.NewBuffer(nil) + e := NewEncoder(buf) + err := e.Encode(idx) + c.Assert(err, Equals, ErrUnsupportedVersion) +} |