fzf/src/cache_test.go

40 lines
859 B
Go
Raw Normal View History

2015-01-10 17:20:54 +00:00
package fzf
import "testing"
func TestChunkCache(t *testing.T) {
cache := NewChunkCache()
chunk1p := &Chunk{}
2017-08-14 16:10:41 +00:00
chunk2p := &Chunk{count: chunkSize}
2021-02-28 09:28:21 +00:00
items1 := []Result{{}}
items2 := []Result{{}, {}}
2015-01-10 17:20:54 +00:00
cache.Add(chunk1p, "foo", items1)
cache.Add(chunk2p, "foo", items1)
cache.Add(chunk2p, "bar", items2)
{ // chunk1 is not full
2017-07-16 14:31:19 +00:00
cached := cache.Lookup(chunk1p, "foo")
if cached != nil {
t.Error("Cached disabled for non-empty chunks", cached)
2015-01-10 17:20:54 +00:00
}
}
{
2017-07-16 14:31:19 +00:00
cached := cache.Lookup(chunk2p, "foo")
if cached == nil || len(cached) != 1 {
t.Error("Expected 1 item cached", cached)
2015-01-10 17:20:54 +00:00
}
}
{
2017-07-16 14:31:19 +00:00
cached := cache.Lookup(chunk2p, "bar")
if cached == nil || len(cached) != 2 {
t.Error("Expected 2 items cached", cached)
2015-01-10 17:20:54 +00:00
}
}
{
2017-07-16 14:31:19 +00:00
cached := cache.Lookup(chunk1p, "foobar")
if cached != nil {
t.Error("Expected 0 item cached", cached)
2015-01-10 17:20:54 +00:00
}
}
}