2020-04-29 11:06:39 +02:00
|
|
|
package packetcache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"math/rand"
|
2020-10-12 14:35:35 +02:00
|
|
|
"reflect"
|
2020-06-03 02:09:22 +02:00
|
|
|
"sync"
|
2020-04-29 11:06:39 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/pion/rtcp"
|
|
|
|
)
|
|
|
|
|
|
|
|
func randomBuf() []byte {
|
|
|
|
length := rand.Int31n(BufSize-1) + 1
|
|
|
|
buf := make([]byte, length)
|
|
|
|
rand.Read(buf)
|
|
|
|
return buf
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCache(t *testing.T) {
|
|
|
|
buf1 := randomBuf()
|
|
|
|
buf2 := randomBuf()
|
|
|
|
cache := New(16)
|
2020-10-11 22:08:03 +02:00
|
|
|
|
2021-08-04 02:25:56 +02:00
|
|
|
_, found := cache.Last()
|
2020-10-11 22:08:03 +02:00
|
|
|
if found {
|
|
|
|
t.Errorf("Found in empty cache")
|
|
|
|
}
|
|
|
|
|
|
|
|
_, i1 := cache.Store(13, 42, false, false, buf1)
|
|
|
|
_, i2 := cache.Store(17, 42, false, false, buf2)
|
|
|
|
|
2021-08-04 02:25:56 +02:00
|
|
|
seqno, found := cache.Last()
|
2020-10-11 22:08:03 +02:00
|
|
|
if !found {
|
|
|
|
t.Errorf("Not found")
|
|
|
|
}
|
2021-08-04 02:25:56 +02:00
|
|
|
if seqno != 17 {
|
|
|
|
t.Errorf("Expected %v, got %v", 17, seqno)
|
2020-10-11 22:08:03 +02:00
|
|
|
}
|
2020-04-29 11:06:39 +02:00
|
|
|
|
2020-05-20 20:32:30 +02:00
|
|
|
buf := make([]byte, BufSize)
|
|
|
|
|
|
|
|
l := cache.Get(13, buf)
|
2020-06-03 11:11:25 +02:00
|
|
|
if !bytes.Equal(buf[:l], buf1) {
|
2020-04-29 11:06:39 +02:00
|
|
|
t.Errorf("Couldn't get 13")
|
|
|
|
}
|
2020-10-12 10:45:59 +02:00
|
|
|
l = cache.Get(13, nil)
|
|
|
|
if l != uint16(len(buf1)) {
|
|
|
|
t.Errorf("Couldn't retrieve length")
|
|
|
|
}
|
2020-05-20 20:37:25 +02:00
|
|
|
l = cache.GetAt(13, i1, buf)
|
2020-06-03 11:11:25 +02:00
|
|
|
if !bytes.Equal(buf[:l], buf1) {
|
2020-05-20 20:37:25 +02:00
|
|
|
t.Errorf("Couldn't get 13 at %v", i1)
|
|
|
|
}
|
2020-05-20 20:32:30 +02:00
|
|
|
l = cache.Get(17, buf)
|
2020-06-03 11:11:25 +02:00
|
|
|
if !bytes.Equal(buf[:l], buf2) {
|
2020-04-29 11:06:39 +02:00
|
|
|
t.Errorf("Couldn't get 17")
|
|
|
|
}
|
2020-05-20 20:37:25 +02:00
|
|
|
l = cache.GetAt(17, i2, buf)
|
2020-06-03 11:11:25 +02:00
|
|
|
if !bytes.Equal(buf[:l], buf2) {
|
2020-05-20 20:37:25 +02:00
|
|
|
t.Errorf("Couldn't get 17 at %v", i2)
|
|
|
|
}
|
2020-05-20 20:32:30 +02:00
|
|
|
|
|
|
|
l = cache.Get(42, buf)
|
|
|
|
if l != 0 {
|
2020-04-29 11:06:39 +02:00
|
|
|
t.Errorf("Creation ex nihilo")
|
|
|
|
}
|
2020-05-20 20:37:25 +02:00
|
|
|
|
|
|
|
l = cache.GetAt(17, i1, buf)
|
|
|
|
if l != 0 {
|
|
|
|
t.Errorf("Got 17 at %v", i1)
|
|
|
|
}
|
|
|
|
|
|
|
|
l = cache.GetAt(42, i2, buf)
|
|
|
|
if l != 0 {
|
|
|
|
t.Errorf("Got 42 at %v", i2)
|
|
|
|
}
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCacheOverflow(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
|
|
|
|
for i := 0; i < 32; i++ {
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < 32; i++ {
|
2020-05-20 20:32:30 +02:00
|
|
|
buf := make([]byte, BufSize)
|
|
|
|
l := cache.Get(uint16(i), buf)
|
2020-04-29 11:06:39 +02:00
|
|
|
if i < 16 {
|
2020-05-20 20:32:30 +02:00
|
|
|
if l > 0 {
|
2020-04-29 11:06:39 +02:00
|
|
|
t.Errorf("Creation ex nihilo: %v", i)
|
|
|
|
}
|
|
|
|
} else {
|
2020-05-20 20:32:30 +02:00
|
|
|
if l != 1 || buf[0] != uint8(i) {
|
|
|
|
t.Errorf("Expected [%v], got %v", i, buf[:l])
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 00:16:21 +02:00
|
|
|
func TestCacheGrow(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
|
|
|
|
for i := 0; i < 24; i++ {
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
2020-06-04 00:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cache.Resize(32)
|
|
|
|
for i := 0; i < 32; i++ {
|
|
|
|
expected := uint16(0)
|
|
|
|
if i < 8 {
|
|
|
|
expected = uint16(i + 16)
|
|
|
|
}
|
|
|
|
if i >= 24 {
|
|
|
|
expected = uint16(i - 16)
|
|
|
|
}
|
|
|
|
if cache.entries[i].seqno != expected {
|
|
|
|
t.Errorf("At %v, got %v, expected %v",
|
|
|
|
i, cache.entries[i].seqno, expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCacheShrink(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
|
|
|
|
for i := 0; i < 24; i++ {
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
2020-06-04 00:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cache.Resize(12)
|
|
|
|
for i := 0; i < 12; i++ {
|
|
|
|
expected := uint16(i + 16)
|
|
|
|
if i >= 8 {
|
|
|
|
expected = uint16(i + 4)
|
|
|
|
}
|
|
|
|
if cache.entries[i].seqno != expected {
|
|
|
|
t.Errorf("At %v, got %v, expected %v",
|
|
|
|
i, cache.entries[i].seqno, expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-09 15:47:33 +02:00
|
|
|
func TestCacheGrowCond(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
if len(cache.entries) != 16 {
|
|
|
|
t.Errorf("Expected 16, got %v", len(cache.entries))
|
|
|
|
}
|
|
|
|
|
|
|
|
done := cache.ResizeCond(17)
|
|
|
|
if done || len(cache.entries) != 16 {
|
|
|
|
t.Errorf("Grew cache by 1")
|
|
|
|
}
|
|
|
|
|
|
|
|
done = cache.ResizeCond(15)
|
|
|
|
if done || len(cache.entries) != 16 {
|
|
|
|
t.Errorf("Shrunk cache by 1")
|
|
|
|
}
|
|
|
|
|
|
|
|
done = cache.ResizeCond(32)
|
|
|
|
if !done || len(cache.entries) != 32 {
|
|
|
|
t.Errorf("Didn't grow cache")
|
|
|
|
}
|
|
|
|
|
|
|
|
done = cache.ResizeCond(16)
|
|
|
|
if !done || len(cache.entries) != 16 {
|
|
|
|
t.Errorf("Didn't shrink cache")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:06:39 +02:00
|
|
|
func TestBitmap(t *testing.T) {
|
|
|
|
value := uint64(0xcdd58f1e035379c0)
|
|
|
|
packet := make([]byte, 1)
|
|
|
|
|
|
|
|
cache := New(16)
|
|
|
|
|
|
|
|
var first uint16
|
|
|
|
for i := 0; i < 64; i++ {
|
|
|
|
if (value & (1 << i)) != 0 {
|
2020-10-08 17:58:58 +02:00
|
|
|
first, _ = cache.Store(uint16(42+i), 0, false, false, packet)
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
value >>= uint16(first - 42)
|
2020-10-04 17:08:42 +02:00
|
|
|
if uint32(value) != cache.bitmap.bitmap {
|
|
|
|
t.Errorf("Got %b, expected %b", cache.bitmap.bitmap, value)
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBitmapWrap(t *testing.T) {
|
|
|
|
value := uint64(0xcdd58f1e035379c0)
|
|
|
|
packet := make([]byte, 1)
|
|
|
|
|
|
|
|
cache := New(16)
|
|
|
|
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(0x7000, 0, false, false, packet)
|
|
|
|
cache.Store(0xA000, 0, false, false, packet)
|
2020-04-29 11:06:39 +02:00
|
|
|
|
|
|
|
var first uint16
|
|
|
|
for i := 0; i < 64; i++ {
|
|
|
|
if (value & (1 << i)) != 0 {
|
2020-10-08 17:58:58 +02:00
|
|
|
first, _ = cache.Store(uint16(42+i), 0, false, false, packet)
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
value >>= uint16(first - 42)
|
2020-10-04 17:08:42 +02:00
|
|
|
if uint32(value) != cache.bitmap.bitmap {
|
|
|
|
t.Errorf("Got %b, expected %b", cache.bitmap.bitmap, value)
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBitmapGet(t *testing.T) {
|
|
|
|
value := uint64(0xcdd58f1e035379c0)
|
|
|
|
packet := make([]byte, 1)
|
|
|
|
|
|
|
|
cache := New(16)
|
|
|
|
|
|
|
|
for i := 0; i < 64; i++ {
|
|
|
|
if (value & (1 << i)) != 0 {
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(uint16(42+i), 0, false, false, packet)
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pos := uint16(42)
|
2020-10-04 17:08:42 +02:00
|
|
|
for cache.bitmap.bitmap != 0 {
|
2020-10-04 12:51:56 +02:00
|
|
|
found, first, bitmap := cache.BitmapGet(42 + 65)
|
2020-04-29 11:06:39 +02:00
|
|
|
if first < pos || first >= pos+64 {
|
|
|
|
t.Errorf("First is %v, pos is %v", first, pos)
|
|
|
|
}
|
2020-05-02 22:26:09 +02:00
|
|
|
if !found {
|
|
|
|
t.Fatalf("Didn't find any 0 bits")
|
|
|
|
}
|
2020-04-29 11:06:39 +02:00
|
|
|
value >>= (first - pos)
|
|
|
|
pos = first
|
|
|
|
if (value & 1) != 0 {
|
|
|
|
t.Errorf("Value is odd")
|
|
|
|
}
|
|
|
|
value >>= 1
|
|
|
|
pos += 1
|
2020-05-02 22:26:09 +02:00
|
|
|
for bitmap != 0 {
|
2020-06-03 02:09:22 +02:00
|
|
|
if uint8(bitmap&1) == uint8(value&1) {
|
2020-05-02 22:26:09 +02:00
|
|
|
t.Errorf("Bitmap mismatch")
|
|
|
|
}
|
|
|
|
bitmap >>= 1
|
|
|
|
value >>= 1
|
|
|
|
pos += 1
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if value != 0 {
|
|
|
|
t.Errorf("Value is %v", value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBitmapPacket(t *testing.T) {
|
|
|
|
value := uint64(0xcdd58f1e035379c0)
|
|
|
|
packet := make([]byte, 1)
|
|
|
|
|
|
|
|
cache := New(16)
|
|
|
|
|
|
|
|
for i := 0; i < 64; i++ {
|
|
|
|
if (value & (1 << i)) != 0 {
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(uint16(42+i), 0, false, false, packet)
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-04 12:51:56 +02:00
|
|
|
found, first, bitmap := cache.BitmapGet(42 + 65)
|
2020-05-02 22:26:09 +02:00
|
|
|
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("Didn't find any 0 bits")
|
|
|
|
}
|
2020-04-29 11:06:39 +02:00
|
|
|
|
2020-05-02 22:26:09 +02:00
|
|
|
p := rtcp.NackPair{first, rtcp.PacketBitmap(bitmap)}
|
2020-12-19 17:38:47 +01:00
|
|
|
p.Range(func(s uint16) bool {
|
2020-04-29 11:06:39 +02:00
|
|
|
if s < 42 || s >= 42+64 {
|
|
|
|
if (value & (1 << (s - 42))) != 0 {
|
|
|
|
t.Errorf("Bit %v unexpectedly set", s-42)
|
|
|
|
}
|
|
|
|
}
|
2020-12-03 23:46:19 +01:00
|
|
|
return true
|
|
|
|
})
|
2020-04-29 11:06:39 +02:00
|
|
|
}
|
2020-06-03 02:09:22 +02:00
|
|
|
|
|
|
|
func BenchmarkCachePutGet(b *testing.B) {
|
|
|
|
n := 10
|
|
|
|
chans := make([]chan uint16, n)
|
|
|
|
for i := range chans {
|
|
|
|
chans[i] = make(chan uint16, 8)
|
|
|
|
}
|
|
|
|
|
|
|
|
cache := New(96)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(len(chans))
|
|
|
|
|
|
|
|
for i := range chans {
|
|
|
|
go func(ch <-chan uint16) {
|
|
|
|
defer wg.Done()
|
|
|
|
buf := make([]byte, BufSize)
|
|
|
|
for {
|
|
|
|
seqno, ok := <-ch
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
l := cache.Get(seqno, buf)
|
|
|
|
if l == 0 {
|
|
|
|
b.Errorf("Couldn't get %v", seqno)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}(chans[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := make([]byte, 1200)
|
|
|
|
|
|
|
|
b.SetBytes(1200)
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
seqno := uint16(i)
|
2020-10-08 17:58:58 +02:00
|
|
|
cache.Store(seqno, 0, false, false, buf)
|
2020-06-03 02:09:22 +02:00
|
|
|
for _, ch := range chans {
|
|
|
|
ch <- seqno
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, ch := range chans {
|
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
|
|
|
type is struct {
|
|
|
|
index, seqno uint16
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkCachePutGetAt(b *testing.B) {
|
|
|
|
n := 10
|
|
|
|
chans := make([]chan is, n)
|
|
|
|
for i := range chans {
|
|
|
|
chans[i] = make(chan is, 8)
|
|
|
|
}
|
|
|
|
|
|
|
|
cache := New(96)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(len(chans))
|
|
|
|
|
|
|
|
for i := range chans {
|
|
|
|
go func(ch <-chan is) {
|
|
|
|
defer wg.Done()
|
|
|
|
buf := make([]byte, BufSize)
|
|
|
|
for {
|
|
|
|
is, ok := <-ch
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
l := cache.GetAt(is.seqno, is.index, buf)
|
|
|
|
if l == 0 {
|
|
|
|
b.Errorf("Couldn't get %v", is)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}(chans[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := make([]byte, 1200)
|
|
|
|
|
|
|
|
b.SetBytes(1200)
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
seqno := uint16(i)
|
2020-10-08 17:58:58 +02:00
|
|
|
_, index := cache.Store(seqno, 0, false, false, buf)
|
2020-06-03 02:09:22 +02:00
|
|
|
for _, ch := range chans {
|
|
|
|
ch <- is{index, seqno}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, ch := range chans {
|
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|
2020-10-12 14:35:35 +02:00
|
|
|
|
|
|
|
func TestToBitmap(t *testing.T) {
|
|
|
|
l := []uint16{18, 19, 32, 38}
|
|
|
|
bb := uint16(1 | 1<<(32-18-1))
|
|
|
|
f, b, r := ToBitmap(l)
|
|
|
|
if f != 18 || b != bb {
|
|
|
|
t.Errorf("Expected %v %v, Got %v %v", 18, bb, f, b)
|
|
|
|
}
|
|
|
|
if len(r) != 1 || r[0] != 38 {
|
|
|
|
t.Errorf("Expected [38], got %v", r)
|
|
|
|
}
|
|
|
|
|
|
|
|
f2, b2, r2 := ToBitmap(r)
|
|
|
|
if f2 != 38 || b2 != 0 || len(r2) != 0 {
|
|
|
|
t.Errorf("Expected 38 0, got %v %v %v", f2, b2, r2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestToBitmapNack(t *testing.T) {
|
|
|
|
l := []uint16{18, 19, 32, 38}
|
|
|
|
var nacks []rtcp.NackPair
|
|
|
|
m := l
|
|
|
|
for len(m) > 0 {
|
|
|
|
var f, b uint16
|
|
|
|
f, b, m = ToBitmap(m)
|
|
|
|
nacks = append(nacks, rtcp.NackPair{f, rtcp.PacketBitmap(b)})
|
|
|
|
}
|
|
|
|
var n []uint16
|
|
|
|
for len(nacks) > 0 {
|
|
|
|
n = append(n, nacks[0].PacketList()...)
|
|
|
|
nacks = nacks[1:]
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(l, n) {
|
|
|
|
t.Errorf("Expected %v, got %v", l, n)
|
|
|
|
}
|
|
|
|
}
|
2021-04-27 14:51:12 +02:00
|
|
|
|
|
|
|
func TestCacheStatsFull(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
for i := 0; i < 32; i++ {
|
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
|
|
|
}
|
2021-04-30 16:26:17 +02:00
|
|
|
stats := cache.GetStats(false)
|
|
|
|
if stats.Received != 32 ||
|
|
|
|
stats.TotalReceived != 32 ||
|
|
|
|
stats.Expected != 32 ||
|
|
|
|
stats.TotalExpected != 32 ||
|
|
|
|
stats.ESeqno != 31 {
|
|
|
|
t.Errorf("Expected 32, 32, 32, 32, 31, got %v", stats)
|
2021-04-27 14:51:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCacheStatsDrop(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
for i := 0; i < 32; i++ {
|
2021-04-28 00:06:32 +02:00
|
|
|
if i != 8 && i != 10 {
|
2021-04-27 14:51:12 +02:00
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
|
|
|
}
|
|
|
|
}
|
2021-04-30 16:26:17 +02:00
|
|
|
stats := cache.GetStats(false)
|
|
|
|
if stats.Received != 30 ||
|
|
|
|
stats.TotalReceived != 30 ||
|
|
|
|
stats.Expected != 32 ||
|
|
|
|
stats.TotalExpected != 32 ||
|
|
|
|
stats.ESeqno != 31 {
|
|
|
|
t.Errorf("Expected 30, 30, 32, 32, 31, got %v", stats)
|
2021-04-27 14:51:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCacheStatsUnordered(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
for i := 0; i < 32; i++ {
|
2021-04-28 00:06:32 +02:00
|
|
|
if i != 8 && i != 10 {
|
2021-04-27 14:51:12 +02:00
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cache.Store(uint16(8), 0, false, false, []byte{8})
|
2021-04-28 00:06:32 +02:00
|
|
|
cache.Store(uint16(10), 0, false, false, []byte{10})
|
2021-04-30 16:26:17 +02:00
|
|
|
stats := cache.GetStats(false)
|
|
|
|
if stats.Received != 32 ||
|
|
|
|
stats.TotalReceived != 32 ||
|
|
|
|
stats.Expected != 32 ||
|
|
|
|
stats.TotalExpected != 32 ||
|
|
|
|
stats.ESeqno != 31 {
|
|
|
|
t.Errorf("Expected 32, 32, 32, 32, 31, got %v", stats)
|
2021-04-27 14:51:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCacheStatsNack(t *testing.T) {
|
|
|
|
cache := New(16)
|
|
|
|
for i := 0; i < 32; i++ {
|
2021-04-28 00:06:32 +02:00
|
|
|
if i != 8 && i != 10 {
|
2021-04-27 14:51:12 +02:00
|
|
|
cache.Store(uint16(i), 0, false, false, []byte{uint8(i)})
|
|
|
|
}
|
|
|
|
}
|
2021-04-28 00:06:32 +02:00
|
|
|
cache.Expect(2)
|
2021-04-27 14:51:12 +02:00
|
|
|
cache.Store(uint16(8), 0, false, false, []byte{8})
|
2021-04-28 00:06:32 +02:00
|
|
|
cache.Store(uint16(10), 0, false, false, []byte{10})
|
2021-04-30 16:26:17 +02:00
|
|
|
stats := cache.GetStats(false)
|
|
|
|
if stats.Received != 32 ||
|
|
|
|
stats.TotalReceived != 32 ||
|
|
|
|
stats.Expected != 34 ||
|
|
|
|
stats.TotalExpected != 34 ||
|
|
|
|
stats.ESeqno != 31 {
|
|
|
|
t.Errorf("Expected 32, 32, 34, 34, 31, got %v", stats)
|
2021-04-27 14:51:12 +02:00
|
|
|
}
|
|
|
|
}
|