diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-09-18 12:18:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-18 12:18:00 +0200 |
commit | f69f5304328165153e452382f44aa2b41df36d0f (patch) | |
tree | 58a7fb3508e0f7dd637a1e4f62984bfcaa7cb84b /plumbing/cache/object_test.go | |
parent | 2fb32d2a8601213b6db109d3e9028c6b64af1874 (diff) | |
parent | edfc16e3ea6b0ce2533bacb5f370d042042b4784 (diff) | |
download | go-git-f69f5304328165153e452382f44aa2b41df36d0f.tar.gz |
Merge pull request #958 from kuba--/fix-cachesize
Fix potential LRU cache size issue.
Diffstat (limited to 'plumbing/cache/object_test.go')
-rw-r--r-- | plumbing/cache/object_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plumbing/cache/object_test.go b/plumbing/cache/object_test.go index ac3f0a3..b3e5f79 100644 --- a/plumbing/cache/object_test.go +++ b/plumbing/cache/object_test.go @@ -45,6 +45,25 @@ func (s *ObjectSuite) TestPutSameObject(c *C) { } } +func (s *ObjectSuite) TestPutSameObjectWithDifferentSize(c *C) { + const hash = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" + + cache := NewObjectLRU(7 * Byte) + cache.Put(newObject(hash, 1*Byte)) + cache.Put(newObject(hash, 3*Byte)) + cache.Put(newObject(hash, 5*Byte)) + cache.Put(newObject(hash, 7*Byte)) + + c.Assert(cache.MaxSize, Equals, 7*Byte) + c.Assert(cache.actualSize, Equals, 7*Byte) + c.Assert(cache.ll.Len(), Equals, 1) + + obj, ok := cache.Get(plumbing.NewHash(hash)) + c.Assert(obj.Hash(), Equals, plumbing.NewHash(hash)) + c.Assert(FileSize(obj.Size()), Equals, 7*Byte) + c.Assert(ok, Equals, true) +} + func (s *ObjectSuite) TestPutBigObject(c *C) { for _, o := range s.c { o.Put(s.bObject) |