func TestSsdbcacheCache(t *testing.T) { ssdb, err := cache.NewCache("ssdb", `{"conn": "127.0.0.1:8888"}`) if err != nil { t.Error("init err") } // test put and exist if ssdb.IsExist("ssdb") { t.Error("check err") } timeoutDuration := 10 * time.Second //timeoutDuration := -10*time.Second if timeoutDuration is negtive,it means permanent if err = ssdb.Put("ssdb", "ssdb", timeoutDuration); err != nil { t.Error("set Error", err) } if !ssdb.IsExist("ssdb") { t.Error("check err") } // Get test done if err = ssdb.Put("ssdb", "ssdb", timeoutDuration); err != nil { t.Error("set Error", err) } if v := ssdb.Get("ssdb"); v != "ssdb" { t.Error("get Error") } //inc/dec test done if err = ssdb.Put("ssdb", "2", timeoutDuration); err != nil { t.Error("set Error", err) } if err = ssdb.Incr("ssdb"); err != nil { t.Error("incr Error", err) } if v, err := strconv.Atoi(ssdb.Get("ssdb").(string)); err != nil || v != 3 { t.Error("get err") } if err = ssdb.Decr("ssdb"); err != nil { t.Error("decr error") } // test del if err = ssdb.Put("ssdb", "3", timeoutDuration); err != nil { t.Error("set Error", err) } if v, err := strconv.Atoi(ssdb.Get("ssdb").(string)); err != nil || v != 3 { t.Error("get err") } if err := ssdb.Delete("ssdb"); err == nil { if ssdb.IsExist("ssdb") { t.Error("delete err") } } //test string if err = ssdb.Put("ssdb", "ssdb", -10*time.Second); err != nil { t.Error("set Error", err) } if !ssdb.IsExist("ssdb") { t.Error("check err") } if v := ssdb.Get("ssdb").(string); v != "ssdb" { t.Error("get err") } //test GetMulti done if err = ssdb.Put("ssdb1", "ssdb1", -10*time.Second); err != nil { t.Error("set Error", err) } if !ssdb.IsExist("ssdb1") { t.Error("check err") } vv := ssdb.GetMulti([]string{"ssdb", "ssdb1"}) if len(vv) != 2 { t.Error("getmulti error") } if vv[0].(string) != "ssdb" { t.Error("getmulti error") } if vv[1].(string) != "ssdb1" { t.Error("getmulti error") } // test clear all done if err = ssdb.ClearAll(); err != nil { t.Error("clear all err") } if ssdb.IsExist("ssdb") || ssdb.IsExist("ssdb1") { t.Error("check err") } }
func TestRedisCache(t *testing.T) { bm, err := cache.NewCache("redis", `{"conn": "127.0.0.1:6379"}`) 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") } time.Sleep(11 * 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 v, _ := redis.Int(bm.Get("astaxie"), err); v != 1 { t.Error("get err") } if err = bm.Incr("astaxie"); err != nil { t.Error("Incr Error", err) } if v, _ := redis.Int(bm.Get("astaxie"), err); v != 2 { t.Error("get err") } if err = bm.Decr("astaxie"); err != nil { t.Error("Decr Error", err) } if v, _ := redis.Int(bm.Get("astaxie"), err); v != 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, _ := redis.String(bm.Get("astaxie"), err); v != "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 v, _ := redis.String(vv[0], nil); v != "author" { t.Error("GetMulti ERROR") } if v, _ := redis.String(vv[1], nil); v != "author1" { t.Error("GetMulti ERROR") } // test clear all if err = bm.ClearAll(); err != nil { t.Error("clear all err") } }
func TestMemcacheCache(t *testing.T) { bm, err := cache.NewCache("memcache", `{"conn": "127.0.0.1:11211"}`) 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") } time.Sleep(11 * 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 v, err := strconv.Atoi(string(bm.Get("astaxie").([]byte))); err != nil || v != 1 { t.Error("get err") } if err = bm.Incr("astaxie"); err != nil { t.Error("Incr Error", err) } if v, err := strconv.Atoi(string(bm.Get("astaxie").([]byte))); err != nil || v != 2 { t.Error("get err") } if err = bm.Decr("astaxie"); err != nil { t.Error("Decr Error", err) } if v, err := strconv.Atoi(string(bm.Get("astaxie").([]byte))); err != nil || v != 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").([]byte); string(v) != "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 string(vv[0].([]byte)) != "author" && string(vv[0].([]byte)) != "author1" { t.Error("GetMulti ERROR") } if string(vv[1].([]byte)) != "author1" && string(vv[1].([]byte)) != "author" { t.Error("GetMulti ERROR") } // test clear all if err = bm.ClearAll(); err != nil { t.Error("clear all err") } }