123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package test
- import (
- "github.com/goflyfox/gtoken/gtoken"
- "github.com/gogf/gf/encoding/gjson"
- "github.com/gogf/gf/frame/g"
- "github.com/gogf/gf/os/gcache"
- "github.com/gogf/gf/util/gconv"
- "testing"
- "time"
- )
- func TestGCache(t *testing.T) {
- t.Log("gcache test ")
- userKey := "123123"
- gcache.Set(userKey, "1", 10000)
- value, err := gcache.Get(userKey)
- if err != nil {
- t.Error("cache set error," + err.Error())
- }
- if value.(string) == userKey {
- t.Error("cache get error")
- }
- gcache.Remove(userKey)
- value, err = gcache.Get(userKey)
- if err != nil {
- t.Error("cache set error," + err.Error())
- }
- if value != nil {
- t.Error("cache remove error")
- }
- }
- func TestRedisCache(t *testing.T) {
- if g.Config().GetInt8("gtoken.cache-mode") != gtoken.CacheModeRedis {
- t.Log("redis cache not test ")
- return
- }
- t.Log("redis cache test ")
- userKey := "test:a"
- _, err := g.Redis().Do("SETEX", userKey, 10000, "1")
- if err != nil {
- t.Error("cache set error," + err.Error())
- }
- time.Sleep(1 * time.Second)
- ttl, err2 := g.Redis().Do("TTL", userKey)
- if err2 != nil {
- t.Error("cache ttl error," + err.Error())
- }
- t.Log("ttl:" + gconv.String(ttl))
- if gconv.Int(ttl) >= 10000 || gconv.Int(ttl) < 9000 {
- t.Error("cache ttl error, ttl:" + gconv.String(ttl))
- }
- data, err3 := g.Redis().Do("GET", userKey)
- if err3 != nil {
- t.Error("cache get error," + err.Error())
- }
- t.Log("data:" + gconv.String(data))
- if gconv.String(data) != "1" {
- t.Error("cache get error, data:" + gconv.String(data))
- }
- g.Redis().Do("DEL", userKey)
- data, err4 := g.Redis().Do("GET", userKey)
- if err4 != nil {
- t.Error("cache del get error," + err.Error())
- }
- if gconv.String(data) != "" {
- t.Error("cache del error, data:" + gconv.String(data))
- }
- }
- func TestJson(t *testing.T) {
- t.Log("json test ")
- cacheValue := g.Map{
- "userKey": "123",
- "uuid": "abc",
- "data": "",
- }
- cacheValueJson, err1 := gjson.Encode(cacheValue)
- if err1 != nil {
- t.Error("cache json encode error:" + err1.Error())
- }
- var userCache g.Map
- err2 := gjson.DecodeTo(cacheValueJson, &userCache)
- if err2 != nil {
- t.Error("cache get json error:" + err2.Error())
- }
- if gconv.Map(userCache)["userKey"] != "123" {
- t.Error("cache get json data error:" + gconv.String(userCache))
- }
- }
|