You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
package mgo
|
|
|
|
import (
|
|
"context"
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func Result[V any](val V, err error) V {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return val
|
|
}
|
|
|
|
func Mongodb() *mongo.Database {
|
|
return Result(
|
|
mongo.Connect(context.Background(),
|
|
options.Client().
|
|
ApplyURI("mongodb://openIM:openIM123@172.16.8.48:37017/openim_v3?maxPoolSize=100").
|
|
SetConnectTimeout(5*time.Second)),
|
|
).Database("openim_v3")
|
|
}
|
|
|
|
func TestUserSeq(t *testing.T) {
|
|
uSeq := Result(NewSeqUserMongo(Mongodb())).(*seqUserMongo)
|
|
t.Log(uSeq.SetUserMinSeq(context.Background(), "1000", "2000", 4))
|
|
}
|
|
|
|
func TestConversationSeq(t *testing.T) {
|
|
cSeq := Result(NewSeqConversationMongo(Mongodb())).(*seqConversationMongo)
|
|
t.Log(cSeq.SetMaxSeq(context.Background(), "2000", 10))
|
|
t.Log(cSeq.Malloc(context.Background(), "2000", 10))
|
|
t.Log(cSeq.GetMaxSeq(context.Background(), "2000"))
|
|
}
|
|
|
|
func TestUserGetUserReadSeqs(t *testing.T) {
|
|
uSeq := Result(NewSeqUserMongo(Mongodb())).(*seqUserMongo)
|
|
t.Log(uSeq.GetUserReadSeqs(context.Background(), "2110910952", []string{"sg_345762580", "2000", "3000"}))
|
|
}
|