Files
cgrates/cache/lruttl_test.go
2016-10-07 18:35:48 +02:00

174 lines
4.2 KiB
Go

/*
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
Copyright (C) ITsysCOM GmbH
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
package cache
import (
"fmt"
"sync"
"testing"
"time"
)
type myStruct struct {
data string
}
func TestCache(t *testing.T) {
cache := NewLRUTTL(0, time.Second)
a := &myStruct{data: "mama are mere"}
cache.Set("mama", a)
b, ok := cache.Get("mama")
if !ok || b == nil || b != a {
t.Error("Error retriving data from cache", b)
}
}
func TestCacheExpire(t *testing.T) {
cache := NewLRUTTL(0, 5*time.Millisecond)
a := &myStruct{data: "mama are mere"}
cache.Set("mama", a)
b, ok := cache.Get("mama")
if !ok || b == nil || b != a {
t.Error("Error retriving data from cache", b)
}
time.Sleep(20 * time.Millisecond)
b, ok = cache.Get("mama")
if ok || b != nil {
t.Error("Error expiring data from cache", b)
}
}
func TestLRU(t *testing.T) {
cache := NewLRUTTL(32, 0)
for i := 0; i < 100000; i++ {
cache.Set(fmt.Sprintf("%d", i), i)
}
if cache.Len() != 32 {
t.Error("error dicarding least recently used entry: ", cache.Len())
}
last := cache.lruIndex.Back().Value.(*entry).value.(int)
if last != 99968 {
t.Error("error dicarding least recently used entry: ", last)
}
}
/*
func TestLRUandExpire(t *testing.T) {
cache := NewLRUTTL(32, 5*time.Millisecond)
for i := 0; i < 100000; i++ {
cache.Set(fmt.Sprintf("%d", i), i)
}
if cache.Len() != 32 {
t.Error("error dicarding least recently used entries: ", cache.Len())
}
last := cache.lruIndex.Back().Value.(*entry).value.(int)
if last != 99968 {
t.Error("error dicarding least recently used entry: ", last)
}
time.Sleep(10 * time.Millisecond)
if cache.Len() != 0 {
t.Error("error dicarding expired entries: ", cache.Len())
}
for i := 0; i < 100000; i++ {
cache.Set(fmt.Sprintf("%d", i), i)
}
if cache.Len() != 32 {
t.Error("error dicarding least recently used entries: ", cache.Len())
}
}
*/
func TestLRUParallel(t *testing.T) {
cache := NewLRUTTL(32, 0)
wg := sync.WaitGroup{}
for i := 0; i < 40; i++ {
wg.Add(1)
go func(x int) {
defer wg.Done()
cache.Set(fmt.Sprintf("%d", x), x)
}(i)
}
wg.Wait()
if cache.Len() != 32 {
t.Error("error dicarding least recently used entry: ", cache.Len())
}
}
func TestFlush(t *testing.T) {
cache := NewLRUTTL(0, 5*time.Millisecond)
a := &myStruct{data: "mama are mere"}
cache.Set("mama", a)
time.Sleep(5 * time.Millisecond)
cache.Flush()
b, ok := cache.Get("mama")
if ok || b != nil {
t.Error("Error expiring data")
}
}
func TestRemoveElementTTLIndex(t *testing.T) {
cache := NewLRUTTL(32, 10*time.Hour)
wg := sync.WaitGroup{}
for i := 0; i < 40; i++ {
wg.Add(1)
go func(x int) {
defer wg.Done()
cache.Set(fmt.Sprintf("%d", x), x)
}(i)
}
wg.Wait()
if cache.Len() != 32 {
t.Error("error dicarding least recently used entry: ", cache.Len())
}
}
func TestFlushNoTimeout(t *testing.T) {
cache := NewLRUTTL(0, 5*time.Millisecond)
a := &myStruct{data: "mama are mere"}
cache.Set("mama", a)
cache.Flush()
b, ok := cache.Get("mama")
if ok || b != nil {
t.Error("Error expiring data")
}
}
func TestRemDumpedKey(t *testing.T) {
cache := NewLRUTTL(10, 0)
cache.Set("t11_mm", "test")
if t1, ok := cache.Get("t11_mm"); !ok || t1 != "test" {
t.Error("Error setting cache")
}
cache.Remove("t11_mm")
if t1, ok := cache.Get("t11_mm"); ok || t1 == "test" {
t.Error("Error removing cached key")
}
}
func TestCount(t *testing.T) {
cache := NewLRUTTL(0, 10*time.Millisecond)
cache.Set("dst_A1", "1")
cache.Set("dst_A2", "2")
cache.Set("rpf_A3", "3")
cache.Set("dst_A4", "4")
cache.Set("dst_A5", "5")
if cache.Len() != 5 {
t.Error("Error countiong entries: ", cache.Len())
}
}