1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
package ristretto
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestSketch(t *testing.T) {
defer func() {
require.NotNil(t, recover())
}()
s := newCmSketch(5)
require.Equal(t, uint64(7), s.mask)
newCmSketch(0)
}
func TestSketchIncrement(t *testing.T) {
s := newCmSketch(16)
s.Increment(1)
s.Increment(5)
s.Increment(9)
for i := 0; i < cmDepth; i++ {
if s.rows[i].string() != s.rows[0].string() {
break
}
require.False(t, i == cmDepth-1, "identical rows, bad seeding")
}
}
func TestSketchEstimate(t *testing.T) {
s := newCmSketch(16)
s.Increment(1)
s.Increment(1)
require.Equal(t, int64(2), s.Estimate(1))
require.Equal(t, int64(0), s.Estimate(0))
}
func TestSketchReset(t *testing.T) {
s := newCmSketch(16)
s.Increment(1)
s.Increment(1)
s.Increment(1)
s.Increment(1)
s.Reset()
require.Equal(t, int64(2), s.Estimate(1))
}
func TestSketchClear(t *testing.T) {
s := newCmSketch(16)
for i := 0; i < 16; i++ {
s.Increment(uint64(i))
}
s.Clear()
for i := 0; i < 16; i++ {
require.Equal(t, int64(0), s.Estimate(uint64(i)))
}
}
func BenchmarkSketchIncrement(b *testing.B) {
s := newCmSketch(16)
b.SetBytes(1)
for n := 0; n < b.N; n++ {
s.Increment(1)
}
}
func BenchmarkSketchEstimate(b *testing.B) {
s := newCmSketch(16)
s.Increment(1)
b.SetBytes(1)
for n := 0; n < b.N; n++ {
s.Estimate(1)
}
}
|