mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:40:56 +00:00
108 lines
2.2 KiB
Go
108 lines
2.2 KiB
Go
// Beego (http://beego.me/)
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
|
// @authors astaxie
|
|
|
|
package cache
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestCache(t *testing.T) {
|
|
bm, err := NewCache("memory", `{"interval":20}`)
|
|
if err != nil {
|
|
t.Error("init err")
|
|
}
|
|
if err = bm.Put("astaxie", 1, 10); err != nil {
|
|
t.Error("set Error", err)
|
|
}
|
|
if !bm.IsExist("astaxie") {
|
|
t.Error("check err")
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(int) != 1 {
|
|
t.Error("get err")
|
|
}
|
|
|
|
time.Sleep(30 * time.Second)
|
|
|
|
if bm.IsExist("astaxie") {
|
|
t.Error("check err")
|
|
}
|
|
|
|
if err = bm.Put("astaxie", 1, 10); err != nil {
|
|
t.Error("set Error", err)
|
|
}
|
|
|
|
if err = bm.Incr("astaxie"); err != nil {
|
|
t.Error("Incr Error", err)
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(int) != 2 {
|
|
t.Error("get err")
|
|
}
|
|
|
|
if err = bm.Decr("astaxie"); err != nil {
|
|
t.Error("Decr Error", err)
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(int) != 1 {
|
|
t.Error("get err")
|
|
}
|
|
bm.Delete("astaxie")
|
|
if bm.IsExist("astaxie") {
|
|
t.Error("delete err")
|
|
}
|
|
}
|
|
|
|
func TestFileCache(t *testing.T) {
|
|
bm, err := NewCache("file", `{"CachePath":"/cache","FileSuffix":".bin","DirectoryLevel":2,"EmbedExpiry":0}`)
|
|
if err != nil {
|
|
t.Error("init err")
|
|
}
|
|
if err = bm.Put("astaxie", 1, 10); err != nil {
|
|
t.Error("set Error", err)
|
|
}
|
|
if !bm.IsExist("astaxie") {
|
|
t.Error("check err")
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(int) != 1 {
|
|
t.Error("get err")
|
|
}
|
|
|
|
if err = bm.Incr("astaxie"); err != nil {
|
|
t.Error("Incr Error", err)
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(int) != 2 {
|
|
t.Error("get err")
|
|
}
|
|
|
|
if err = bm.Decr("astaxie"); err != nil {
|
|
t.Error("Decr Error", err)
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(int) != 1 {
|
|
t.Error("get err")
|
|
}
|
|
bm.Delete("astaxie")
|
|
if bm.IsExist("astaxie") {
|
|
t.Error("delete err")
|
|
}
|
|
//test string
|
|
if err = bm.Put("astaxie", "author", 10); err != nil {
|
|
t.Error("set Error", err)
|
|
}
|
|
if !bm.IsExist("astaxie") {
|
|
t.Error("check err")
|
|
}
|
|
|
|
if v := bm.Get("astaxie"); v.(string) != "author" {
|
|
t.Error("get err")
|
|
}
|
|
}
|