92 lines
2.4 KiB
Go
92 lines
2.4 KiB
Go
package items_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"go_dreamfactory/comm"
|
|
"go_dreamfactory/lego"
|
|
"go_dreamfactory/lego/base/rpcx"
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/lego/sys/log"
|
|
"go_dreamfactory/modules/equipment"
|
|
"go_dreamfactory/modules/hero"
|
|
"go_dreamfactory/modules/items"
|
|
"go_dreamfactory/modules/user"
|
|
"go_dreamfactory/pb"
|
|
"go_dreamfactory/services"
|
|
"go_dreamfactory/sys/configure"
|
|
"go_dreamfactory/sys/db"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/golang/protobuf/ptypes"
|
|
)
|
|
|
|
func newService(ops ...rpcx.Option) core.IService {
|
|
s := new(TestService)
|
|
s.Configure(ops...)
|
|
return s
|
|
}
|
|
|
|
//梦工厂基础服务对象
|
|
type TestService struct {
|
|
rpcx.RPCXService
|
|
}
|
|
|
|
//初始化相关系统
|
|
func (this *TestService) InitSys() {
|
|
this.RPCXService.InitSys()
|
|
if err := db.OnInit(this.GetSettings().Sys["db"]); err != nil {
|
|
panic(fmt.Sprintf("init sys.db err: %s", err.Error()))
|
|
} else {
|
|
log.Infof("init sys.db success!")
|
|
}
|
|
if err := configure.OnInit(this.GetSettings().Sys["configure"], configure.SetConfigPath("F:/work/go/go_dreamfactory/bin/json")); err != nil {
|
|
panic(fmt.Sprintf("init sys.configure err: %s", err.Error()))
|
|
} else {
|
|
log.Infof("init sys.configure success!")
|
|
}
|
|
}
|
|
|
|
var service core.IService
|
|
var s_gateComp comm.ISC_GateRouteComp = services.NewGateRouteComp()
|
|
var module = new(items.Items)
|
|
|
|
//测试环境下初始化db和cache 系统
|
|
func TestMain(m *testing.M) {
|
|
service = newService(
|
|
rpcx.SetConfPath("../../bin/conf/worker_1.yaml"),
|
|
rpcx.SetVersion("1.0.0.0"),
|
|
)
|
|
service.OnInstallComp( //装备组件
|
|
s_gateComp, //此服务需要接受用户的消息 需要装备网关组件
|
|
)
|
|
go func() {
|
|
lego.Run(service, //运行模块
|
|
module,
|
|
hero.NewModule(),
|
|
user.NewModule(),
|
|
equipment.NewModule(),
|
|
)
|
|
}()
|
|
time.Sleep(time.Second * 3)
|
|
defer os.Exit(m.Run())
|
|
}
|
|
|
|
func Test_Modules(t *testing.T) {
|
|
data, _ := ptypes.MarshalAny(&pb.ItemsGetlistReq{IType: 9})
|
|
reply := &pb.RPCMessageReply{}
|
|
s_gateComp.ReceiveMsg(context.Background(), &pb.AgentMessage{UserId: "0_62c259916d8cf3e4e06311a8", MainType: "items", SubType: "getlist", Message: data}, reply)
|
|
log.Debugf("reply:%v", reply)
|
|
}
|
|
|
|
func Test_Modules_AddItems(t *testing.T) {
|
|
// code := module.AddItems(&comm.ModuleCallSource{
|
|
// Module: "Test",
|
|
// FuncName: "Test_Modules_AddItems",
|
|
// Describe: "测试模块接口",
|
|
// }, "0_62c259916d8cf3e4e06311a8", map[int32]int32{10001: 1000}, true)
|
|
// log.Debugf("Test_Modules_AddItems code:%v", code)
|
|
}
|