Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
name = "go_default_library",
srcs = ["dao.go"],
importpath = "go-common/app/interface/main/creative/dao/resource",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = [
"//app/interface/main/creative/conf:go_default_library",
"//app/service/main/resource/model:go_default_library",
"//app/service/main/resource/rpc/client:go_default_library",
"//library/log:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["dao_test.go"],
embed = [":go_default_library"],
rundir = ".",
tags = ["automanaged"],
deps = [
"//app/interface/main/creative/conf:go_default_library",
"//app/service/main/resource/model:go_default_library",
"//app/service/main/resource/rpc/client:go_default_library",
"//library/ecode:go_default_library",
"//vendor/github.com/bouk/monkey:go_default_library",
"//vendor/github.com/smartystreets/goconvey/convey:go_default_library",
],
)

View File

@@ -0,0 +1,85 @@
package resource
import (
"context"
"go-common/app/interface/main/creative/conf"
resmdl "go-common/app/service/main/resource/model"
resrpc "go-common/app/service/main/resource/rpc/client"
"go-common/library/log"
"strconv"
)
// Dao str
type Dao struct {
c *conf.Config
// rpc
resRPC *resrpc.Service
}
// New str
func New(c *conf.Config) (d *Dao) {
d = &Dao{
c: c,
resRPC: resrpc.New(c.ResourceRPC),
}
return
}
// Banner get search banner
func (d *Dao) Banner(c context.Context, mobiApp, device, network, channel, ip, buvid, adExtra, resIDStr string, build int, plat int8, mid int64, isAd bool) (res map[int][]*resmdl.Banner, err error) {
var bs *resmdl.Banners
arg := &resmdl.ArgBanner{
MobiApp: mobiApp,
Device: device,
Network: network,
Channel: channel,
IP: ip,
Buvid: buvid,
AdExtra: adExtra,
ResIDs: resIDStr,
Build: build,
Plat: plat,
MID: mid,
IsAd: isAd,
}
if bs, err = d.resRPC.Banners(c, arg); err != nil || bs == nil {
log.Error("d.resRPC.Banners(%v) error(%v) or bs is nil", arg, err)
return
}
if bs == nil {
return
}
if len(bs.Banner) > 0 {
res = bs.Banner
}
return
}
// SimpleResource simple resource
func (d *Dao) SimpleResource(c context.Context, resID int) (res *resmdl.Resource, err error) {
arg := &resmdl.ArgRes{ResID: resID}
if res, err = d.resRPC.Resource(c, arg); err != nil || res == nil {
log.Error("d.resRPC.Resource(%v) error(%v) or bs is nil", arg, err)
return
}
return
}
// Resource get resource
func (d *Dao) Resource(c context.Context, resID int) (aidMap map[int64]struct{}, err error) {
var rs *resmdl.Resource
arg := &resmdl.ArgRes{ResID: resID}
if rs, err = d.resRPC.Resource(c, arg); err != nil || rs == nil {
log.Error("d.resRPC.Resource(%v) error(%v) or bs is nil", arg, err)
return
}
aidMap = make(map[int64]struct{})
for _, ass := range rs.Assignments {
aid, _ := strconv.ParseInt(ass.URL, 10, 64)
if aid > 0 {
aidMap[aid] = struct{}{}
}
}
return
}

View File

@@ -0,0 +1,107 @@
package resource
import (
"context"
"flag"
"go-common/app/interface/main/creative/conf"
"go-common/app/service/main/resource/model"
"go-common/app/service/main/resource/rpc/client"
"go-common/library/ecode"
"os"
"reflect"
"testing"
"github.com/bouk/monkey"
"github.com/smartystreets/goconvey/convey"
)
var (
d *Dao
)
func TestMain(m *testing.M) {
if os.Getenv("DEPLOY_ENV") != "" {
flag.Set("app_id", "main.archive.creative")
flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
flag.Set("tree_id", "2305")
flag.Set("conf_version", "docker-1")
flag.Set("deploy_env", "uat")
flag.Set("conf_host", "config.bilibili.co")
flag.Set("conf_path", "/tmp")
flag.Set("region", "sh")
flag.Set("zone", "sh001")
} else {
flag.Set("conf", "../../cmd/creative.toml")
}
flag.Parse()
if err := conf.Init(); err != nil {
panic(err)
}
d = New(conf.Conf)
m.Run()
os.Exit(0)
}
func TestResource(t *testing.T) {
var (
c = context.TODO()
rid = int(1)
)
convey.Convey("Resource", t, func(ctx convey.C) {
// mock
mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.resRPC), "Resource",
func(_ *client.Service, _ context.Context, _ *model.ArgRes) (res *model.Resource, err error) {
return nil, ecode.CreativeArticleRPCErr
})
defer mock.Unpatch()
_, err := d.Resource(c, rid)
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
})
})
}
func TestSimpleResource(t *testing.T) {
var (
c = context.TODO()
rid = int(1)
)
convey.Convey("SimpleResource", t, func(ctx convey.C) {
// mock
mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.resRPC), "Resource",
func(_ *client.Service, _ context.Context, _ *model.ArgRes) (res *model.Resource, err error) {
return nil, ecode.CreativeArticleRPCErr
})
defer mock.Unpatch()
_, err := d.SimpleResource(c, rid)
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
})
})
}
func TestBanner(t *testing.T) {
var (
c = context.TODO()
mobiApp, device, network, channel, ip, buvid, adExtra string
build int
plat int8
mid int64
isAd bool
)
convey.Convey("Banner", t, func(ctx convey.C) {
// mock
mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.resRPC), "Banners",
func(_ *client.Service, _ context.Context, _ *model.ArgBanner) (res *model.Banners, err error) {
return nil, ecode.CreativeArticleRPCErr
})
defer mock.Unpatch()
_, err := d.Banner(c, mobiApp, device, network, channel, ip, buvid, adExtra, "1", build, plat, mid, isAd)
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
})
})
}