mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-28 04:28:53 -05:00
86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
// Copyright 2016 Attic Labs, Inc. All rights reserved.
|
|
// Licensed under the Apache License, version 2.0:
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
package chunks
|
|
|
|
import (
|
|
"github.com/attic-labs/noms/go/d"
|
|
"github.com/attic-labs/noms/go/hash"
|
|
"github.com/attic-labs/testify/assert"
|
|
)
|
|
|
|
func assertInputInStore(input string, h hash.Hash, s ChunkStore, assert *assert.Assertions) {
|
|
chunk := s.Get(h)
|
|
assert.False(chunk.IsEmpty(), "Shouldn't get empty chunk for %s", h.String())
|
|
assert.Equal(input, string(chunk.Data()))
|
|
}
|
|
|
|
func assertInputNotInStore(input string, h hash.Hash, s ChunkStore, assert *assert.Assertions) {
|
|
chunk := s.Get(h)
|
|
assert.True(chunk.IsEmpty(), "Shouldn't get non-empty chunk for %s: %v", h.String(), chunk)
|
|
}
|
|
|
|
type TestStorage struct {
|
|
MemoryStorage
|
|
}
|
|
|
|
func (t *TestStorage) NewView() *TestStoreView {
|
|
return &TestStoreView{ChunkStore: t.MemoryStorage.NewView()}
|
|
}
|
|
|
|
type TestStoreView struct {
|
|
ChunkStore
|
|
Reads int
|
|
Hases int
|
|
Writes int
|
|
}
|
|
|
|
func (s *TestStoreView) Get(h hash.Hash) Chunk {
|
|
s.Reads++
|
|
return s.ChunkStore.Get(h)
|
|
}
|
|
|
|
func (s *TestStoreView) GetMany(hashes hash.HashSet, foundChunks chan *Chunk) {
|
|
s.Reads += len(hashes)
|
|
s.ChunkStore.GetMany(hashes, foundChunks)
|
|
}
|
|
|
|
func (s *TestStoreView) Has(h hash.Hash) bool {
|
|
s.Hases++
|
|
return s.ChunkStore.Has(h)
|
|
}
|
|
|
|
func (s *TestStoreView) HasMany(hashes hash.HashSet) hash.HashSet {
|
|
s.Hases += len(hashes)
|
|
return s.ChunkStore.HasMany(hashes)
|
|
}
|
|
|
|
func (s *TestStoreView) Put(c Chunk) {
|
|
s.Writes++
|
|
s.ChunkStore.Put(c)
|
|
}
|
|
|
|
type TestStoreFactory struct {
|
|
stores map[string]*TestStorage
|
|
}
|
|
|
|
func NewTestStoreFactory() *TestStoreFactory {
|
|
return &TestStoreFactory{map[string]*TestStorage{}}
|
|
}
|
|
|
|
func (f *TestStoreFactory) CreateStore(ns string) ChunkStore {
|
|
if f.stores == nil {
|
|
d.Panic("Cannot use TestStoreFactory after Shutter().")
|
|
}
|
|
if ts, present := f.stores[ns]; present {
|
|
return ts.NewView()
|
|
}
|
|
f.stores[ns] = &TestStorage{}
|
|
return f.stores[ns].NewView()
|
|
}
|
|
|
|
func (f *TestStoreFactory) Shutter() {
|
|
f.stores = nil
|
|
}
|