92 lines
2.1 KiB
Go
92 lines
2.1 KiB
Go
package ttlcache
|
|
|
|
import (
|
|
"container/heap"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var _ heap.Interface = (*entryHeap)(nil)
|
|
|
|
func TestExpiryHeap(t *testing.T) {
|
|
h := NewExpiryHeap()
|
|
ch := h.NotifyCh
|
|
var entry, entry2, entry3 *Entry
|
|
|
|
// Init, shouldn't trigger anything
|
|
testNoMessage(t, ch)
|
|
|
|
runStep(t, "add an entry", func(t *testing.T) {
|
|
entry = h.Add("foo", 100*time.Millisecond)
|
|
assert.Equal(t, 0, entry.heapIndex)
|
|
testMessage(t, ch)
|
|
testNoMessage(t, ch) // exactly one asserted above
|
|
})
|
|
|
|
runStep(t, "add a second entry in front", func(t *testing.T) {
|
|
entry2 = h.Add("bar", 50*time.Millisecond)
|
|
assert.Equal(t, 0, entry2.heapIndex)
|
|
assert.Equal(t, 1, entry.heapIndex)
|
|
testMessage(t, ch)
|
|
testNoMessage(t, ch) // exactly one asserted above
|
|
})
|
|
|
|
runStep(t, "add a third entry at the end", func(t *testing.T) {
|
|
entry3 = h.Add("baz", 1000*time.Millisecond)
|
|
assert.Equal(t, 2, entry3.heapIndex)
|
|
testNoMessage(t, ch) // no notify cause index 0 stayed the same
|
|
})
|
|
|
|
runStep(t, "remove the first entry", func(t *testing.T) {
|
|
h.Remove(0)
|
|
assert.Equal(t, 0, entry.heapIndex)
|
|
assert.Equal(t, 1, entry3.heapIndex)
|
|
testMessage(t, ch)
|
|
testNoMessage(t, ch)
|
|
})
|
|
|
|
runStep(t, "update entry3 to expire first", func(t *testing.T) {
|
|
h.Update(entry3.heapIndex, 10*time.Millisecond)
|
|
assert.Equal(t, 1, entry.heapIndex)
|
|
assert.Equal(t, 0, entry3.heapIndex)
|
|
testMessage(t, ch)
|
|
testNoMessage(t, ch)
|
|
})
|
|
|
|
runStep(t, "0th element change triggers a notify", func(t *testing.T) {
|
|
h.Update(entry3.heapIndex, 20)
|
|
assert.Equal(t, 1, entry.heapIndex) // no move
|
|
assert.Equal(t, 0, entry3.heapIndex)
|
|
testMessage(t, ch)
|
|
testNoMessage(t, ch) // one message
|
|
})
|
|
}
|
|
|
|
func testNoMessage(t *testing.T, ch <-chan struct{}) {
|
|
t.Helper()
|
|
|
|
select {
|
|
case <-ch:
|
|
t.Fatal("should not have a message")
|
|
default:
|
|
}
|
|
}
|
|
|
|
func testMessage(t *testing.T, ch <-chan struct{}) {
|
|
t.Helper()
|
|
|
|
select {
|
|
case <-ch:
|
|
default:
|
|
t.Fatal("should have a message")
|
|
}
|
|
}
|
|
|
|
func runStep(t *testing.T, name string, fn func(t *testing.T)) {
|
|
if !t.Run(name, fn) {
|
|
t.FailNow()
|
|
}
|
|
}
|