diff options
author | Antonio Jesus Navarro Perez <antnavper@gmail.com> | 2017-06-01 16:57:18 +0200 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antnavper@gmail.com> | 2017-06-01 16:57:18 +0200 |
commit | f8480053f659120bc3fd33cbf92521cab11b06a6 (patch) | |
tree | b10a9b26c52bd85fdf93676f5613723b3b306e8a /plumbing/format/packfile/delta_test.go | |
parent | 7e249dfcf28765939bde8f38784b3274b522f880 (diff) | |
download | go-git-f8480053f659120bc3fd33cbf92521cab11b06a6.tar.gz |
packfile: A copy operation cannot be bigger than 64kb
More info here: https://github.com/git/git/blob/f7466e94375b3be27f229c78873f0acf8301c0a5/diff-delta.c#L428
Diffstat (limited to 'plumbing/format/packfile/delta_test.go')
-rw-r--r-- | plumbing/format/packfile/delta_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plumbing/format/packfile/delta_test.go b/plumbing/format/packfile/delta_test.go index 43253b0..9ee3499 100644 --- a/plumbing/format/packfile/delta_test.go +++ b/plumbing/format/packfile/delta_test.go @@ -2,6 +2,7 @@ package packfile import ( "fmt" + "math/rand" . "gopkg.in/check.v1" ) @@ -61,9 +62,25 @@ func (s *DeltaSuite) SetUpSuite(c *C) { {"4", 400}, {"5", 23}}, target: []piece{{"1", 30}, {"2", 20}, {"7", 40}, {"4", 400}, {"5", 10}}, + }, { + description: "A copy operation bigger tan 64kb", + base: []piece{{bigRandStr, 1}, {"1", 200}}, + target: []piece{{bigRandStr, 1}}, }} } +var bigRandStr = randStringBytes(100 * 1024) + +const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" + +func randStringBytes(n int) string { + b := make([]byte, n) + for i := range b { + b[i] = letterBytes[rand.Intn(len(letterBytes))] + } + return string(b) +} + func (s *DeltaSuite) TestAddDelta(c *C) { for _, t := range s.testCases { baseBuf := genBytes(t.base) |