mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
test modify
This commit is contained in:
parent
b02830c891
commit
f18f54afc6
20
pkg/common/db/redisModel_test.go
Normal file
20
pkg/common/db/redisModel_test.go
Normal file
@ -0,0 +1,20 @@
|
||||
package db
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_SetTokenMapByUidPid(t *testing.T) {
|
||||
m := make(map[string]int, 0)
|
||||
m["哈哈"] = 1
|
||||
m["heihei"] = 2
|
||||
_ = DB.SetTokenMapByUidPid("1234", 2, m)
|
||||
|
||||
}
|
||||
func Test_GetTokenMapByUidPid(t *testing.T) {
|
||||
m, err := DB.GetTokenMapByUidPid("1234", "Android")
|
||||
assert.Nil(t, err)
|
||||
fmt.Println(m)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user