Fix lint and format code in adapter/cache dir
This commit is contained in:
parent
fb4c91fd76
commit
79f6cd9c31
@ -50,6 +50,7 @@
|
|||||||
- Init exceptMethod by using reflection. [4583](https://github.com/beego/beego/pull/4583)
|
- Init exceptMethod by using reflection. [4583](https://github.com/beego/beego/pull/4583)
|
||||||
- Deprecated BeeMap and replace all usage with `sync.map` [4616](https://github.com/beego/beego/pull/4616)
|
- Deprecated BeeMap and replace all usage with `sync.map` [4616](https://github.com/beego/beego/pull/4616)
|
||||||
- TaskManager support graceful shutdown [4635](https://github.com/beego/beego/pull/4635)
|
- TaskManager support graceful shutdown [4635](https://github.com/beego/beego/pull/4635)
|
||||||
|
- Fix lint and format code in adapter/cache dir [4645](https://github.com/beego/beego/pull/4645)
|
||||||
|
|
||||||
## Fix Sonar
|
## Fix Sonar
|
||||||
|
|
||||||
|
|||||||
28
adapter/cache/conv_test.go
vendored
28
adapter/cache/conv_test.go
vendored
@ -19,15 +19,15 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestGetString(t *testing.T) {
|
func TestGetString(t *testing.T) {
|
||||||
var t1 = "test1"
|
t1 := "test1"
|
||||||
if "test1" != GetString(t1) {
|
if "test1" != GetString(t1) {
|
||||||
t.Error("get string from string error")
|
t.Error("get string from string error")
|
||||||
}
|
}
|
||||||
var t2 = []byte("test2")
|
t2 := []byte("test2")
|
||||||
if "test2" != GetString(t2) {
|
if "test2" != GetString(t2) {
|
||||||
t.Error("get string from byte array error")
|
t.Error("get string from byte array error")
|
||||||
}
|
}
|
||||||
var t3 = 1
|
t3 := 1
|
||||||
if "1" != GetString(t3) {
|
if "1" != GetString(t3) {
|
||||||
t.Error("get string from int error")
|
t.Error("get string from int error")
|
||||||
}
|
}
|
||||||
@ -35,7 +35,7 @@ func TestGetString(t *testing.T) {
|
|||||||
if "1" != GetString(t4) {
|
if "1" != GetString(t4) {
|
||||||
t.Error("get string from int64 error")
|
t.Error("get string from int64 error")
|
||||||
}
|
}
|
||||||
var t5 = 1.1
|
t5 := 1.1
|
||||||
if "1.1" != GetString(t5) {
|
if "1.1" != GetString(t5) {
|
||||||
t.Error("get string from float64 error")
|
t.Error("get string from float64 error")
|
||||||
}
|
}
|
||||||
@ -46,7 +46,7 @@ func TestGetString(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestGetInt(t *testing.T) {
|
func TestGetInt(t *testing.T) {
|
||||||
var t1 = 1
|
t1 := 1
|
||||||
if 1 != GetInt(t1) {
|
if 1 != GetInt(t1) {
|
||||||
t.Error("get int from int error")
|
t.Error("get int from int error")
|
||||||
}
|
}
|
||||||
@ -58,7 +58,7 @@ func TestGetInt(t *testing.T) {
|
|||||||
if 64 != GetInt(t3) {
|
if 64 != GetInt(t3) {
|
||||||
t.Error("get int from int64 error")
|
t.Error("get int from int64 error")
|
||||||
}
|
}
|
||||||
var t4 = "128"
|
t4 := "128"
|
||||||
if 128 != GetInt(t4) {
|
if 128 != GetInt(t4) {
|
||||||
t.Error("get int from num string error")
|
t.Error("get int from num string error")
|
||||||
}
|
}
|
||||||
@ -69,7 +69,7 @@ func TestGetInt(t *testing.T) {
|
|||||||
|
|
||||||
func TestGetInt64(t *testing.T) {
|
func TestGetInt64(t *testing.T) {
|
||||||
var i int64 = 1
|
var i int64 = 1
|
||||||
var t1 = 1
|
t1 := 1
|
||||||
if i != GetInt64(t1) {
|
if i != GetInt64(t1) {
|
||||||
t.Error("get int64 from int error")
|
t.Error("get int64 from int error")
|
||||||
}
|
}
|
||||||
@ -81,7 +81,7 @@ func TestGetInt64(t *testing.T) {
|
|||||||
if i != GetInt64(t3) {
|
if i != GetInt64(t3) {
|
||||||
t.Error("get int64 from int64 error")
|
t.Error("get int64 from int64 error")
|
||||||
}
|
}
|
||||||
var t4 = "1"
|
t4 := "1"
|
||||||
if i != GetInt64(t4) {
|
if i != GetInt64(t4) {
|
||||||
t.Error("get int64 from num string error")
|
t.Error("get int64 from num string error")
|
||||||
}
|
}
|
||||||
@ -91,22 +91,22 @@ func TestGetInt64(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestGetFloat64(t *testing.T) {
|
func TestGetFloat64(t *testing.T) {
|
||||||
var f = 1.11
|
f := 1.11
|
||||||
var t1 float32 = 1.11
|
var t1 float32 = 1.11
|
||||||
if f != GetFloat64(t1) {
|
if f != GetFloat64(t1) {
|
||||||
t.Error("get float64 from float32 error")
|
t.Error("get float64 from float32 error")
|
||||||
}
|
}
|
||||||
var t2 = 1.11
|
t2 := 1.11
|
||||||
if f != GetFloat64(t2) {
|
if f != GetFloat64(t2) {
|
||||||
t.Error("get float64 from float64 error")
|
t.Error("get float64 from float64 error")
|
||||||
}
|
}
|
||||||
var t3 = "1.11"
|
t3 := "1.11"
|
||||||
if f != GetFloat64(t3) {
|
if f != GetFloat64(t3) {
|
||||||
t.Error("get float64 from string error")
|
t.Error("get float64 from string error")
|
||||||
}
|
}
|
||||||
|
|
||||||
var f2 float64 = 1
|
var f2 float64 = 1
|
||||||
var t4 = 1
|
t4 := 1
|
||||||
if f2 != GetFloat64(t4) {
|
if f2 != GetFloat64(t4) {
|
||||||
t.Error("get float64 from int error")
|
t.Error("get float64 from int error")
|
||||||
}
|
}
|
||||||
@ -117,11 +117,11 @@ func TestGetFloat64(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestGetBool(t *testing.T) {
|
func TestGetBool(t *testing.T) {
|
||||||
var t1 = true
|
t1 := true
|
||||||
if !GetBool(t1) {
|
if !GetBool(t1) {
|
||||||
t.Error("get bool from bool error")
|
t.Error("get bool from bool error")
|
||||||
}
|
}
|
||||||
var t2 = "true"
|
t2 := "true"
|
||||||
if !GetBool(t2) {
|
if !GetBool(t2) {
|
||||||
t.Error("get bool from string error")
|
t.Error("get bool from string error")
|
||||||
}
|
}
|
||||||
|
|||||||
4
adapter/cache/redis/redis.go
vendored
4
adapter/cache/redis/redis.go
vendored
@ -34,10 +34,8 @@ import (
|
|||||||
redis2 "github.com/beego/beego/v2/client/cache/redis"
|
redis2 "github.com/beego/beego/v2/client/cache/redis"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
// DefaultKey the collection name of redis for cache adapter.
|
// DefaultKey the collection name of redis for cache adapter.
|
||||||
DefaultKey = "beecacheRedis"
|
var DefaultKey = "beecacheRedis"
|
||||||
)
|
|
||||||
|
|
||||||
// NewRedisCache create new redis cache with default collection name.
|
// NewRedisCache create new redis cache with default collection name.
|
||||||
func NewRedisCache() cache.Cache {
|
func NewRedisCache() cache.Cache {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user