123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- // Copyright 2014 beego Author. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package cache
- import (
- "os"
- "testing"
- "time"
- )
- func TestCache(t *testing.T) {
- bm, err := NewCache("memory", `{"interval":20}`)
- if err != nil {
- t.Error("init err")
- }
- timeoutDuration := 10 * time.Second
- if err = bm.Put("astaxie", 1, timeoutDuration); 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, timeoutDuration); 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")
- }
- //test GetMulti
- if err = bm.Put("astaxie", "author", timeoutDuration); 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")
- }
- if err = bm.Put("astaxie1", "author1", timeoutDuration); err != nil {
- t.Error("set Error", err)
- }
- if !bm.IsExist("astaxie1") {
- t.Error("check err")
- }
- vv := bm.GetMulti([]string{"astaxie", "astaxie1"})
- if len(vv) != 2 {
- t.Error("GetMulti ERROR")
- }
- if vv[0].(string) != "author" {
- t.Error("GetMulti ERROR")
- }
- if vv[1].(string) != "author1" {
- t.Error("GetMulti ERROR")
- }
- }
- func TestFileCache(t *testing.T) {
- bm, err := NewCache("file", `{"CachePath":"cache","FileSuffix":".bin","DirectoryLevel":2,"EmbedExpiry":0}`)
- if err != nil {
- t.Error("init err")
- }
- timeoutDuration := 10 * time.Second
- if err = bm.Put("astaxie", 1, timeoutDuration); 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", timeoutDuration); 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")
- }
- //test GetMulti
- if err = bm.Put("astaxie1", "author1", timeoutDuration); err != nil {
- t.Error("set Error", err)
- }
- if !bm.IsExist("astaxie1") {
- t.Error("check err")
- }
- vv := bm.GetMulti([]string{"astaxie", "astaxie1"})
- if len(vv) != 2 {
- t.Error("GetMulti ERROR")
- }
- if vv[0].(string) != "author" {
- t.Error("GetMulti ERROR")
- }
- if vv[1].(string) != "author1" {
- t.Error("GetMulti ERROR")
- }
- os.RemoveAll("cache")
- }
|