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/reply",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = [
"//app/interface/main/creative/conf:go_default_library",
"//app/interface/main/creative/model/reply:go_default_library",
"//library/ecode:go_default_library",
"//library/log:go_default_library",
"//library/net/http/blademaster:go_default_library",
"//library/xstr: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/interface/main/creative/model/reply:go_default_library",
"//vendor/github.com/smartystreets/goconvey/convey:go_default_library",
"//vendor/gopkg.in/h2non/gock.v1:go_default_library",
],
)

View File

@@ -0,0 +1,85 @@
package reply
import (
"context"
"go-common/app/interface/main/creative/conf"
"go-common/app/interface/main/creative/model/reply"
"go-common/library/ecode"
"go-common/library/log"
httpx "go-common/library/net/http/blademaster"
"go-common/library/xstr"
"net/url"
"strconv"
)
const (
_replyMinfo = "/x/internal/v2/reply/minfo"
_replyRecover = "/x/internal/v2/reply/recover"
)
// Dao define
type Dao struct {
c *conf.Config
// http
client *httpx.Client
// uri
replyMinfoURI string
replyRecoverURI string
}
// New init dao
func New(c *conf.Config) (d *Dao) {
d = &Dao{
c: c,
client: httpx.NewClient(c.HTTPClient.Slow),
replyMinfoURI: c.Host.API + _replyMinfo,
replyRecoverURI: c.Host.API + _replyRecover,
}
return
}
// ReplyRecover recover reply
func (d *Dao) ReplyRecover(c context.Context, mid, oid, rpid int64, ip string) (err error) {
params := url.Values{}
params.Set("type", "1")
params.Set("remark", "up主撤销协管员操作")
params.Set("adid", strconv.FormatInt(mid, 10))
params.Set("oid", strconv.FormatInt(oid, 10))
params.Set("rpid", strconv.FormatInt(rpid, 10))
var res struct {
Code int `json:"code"`
}
if err = d.client.Post(c, d.replyRecoverURI, ip, params, &res); err != nil {
log.Error("replyRecoverURI url(%s) response(%+v) error(%v)", d.replyRecoverURI+"?"+params.Encode(), res, err)
return
}
if res.Code != 0 {
err = ecode.Int(res.Code)
log.Error("replyRecoverURI url(%s) error(%v)", d.replyRecoverURI+"?"+params.Encode(), err)
return
}
return
}
// ReplyMinfo get multi reply info
func (d *Dao) ReplyMinfo(c context.Context, ak, ck string, mid, tp int64, DeriveIds, DeriveOids []int64, ip string) (ReplyMinfo map[int64]*reply.Reply, err error) {
params := url.Values{}
params.Set("type", strconv.FormatInt(tp, 10))
params.Set("oid", xstr.JoinInts(DeriveOids))
params.Set("rpid", xstr.JoinInts(DeriveIds))
var res struct {
Code int `json:"code"`
Data map[int64]*reply.Reply `json:"data"`
}
if err = d.client.Get(c, d.replyMinfoURI, ip, params, &res); err != nil {
log.Error("replyMinfoURI url(%s) response(%+v) error(%v)", d.replyMinfoURI+"?"+params.Encode(), res, err)
return
}
if res.Code != 0 {
log.Error("replyMinfoURI url(%s) res(%v)", d.replyMinfoURI+"?"+params.Encode(), res)
err = ecode.Int(res.Code)
return
}
ReplyMinfo = res.Data
return
}

View File

@@ -0,0 +1,134 @@
package reply
import (
"context"
"encoding/json"
"flag"
"go-common/app/interface/main/creative/conf"
"go-common/app/interface/main/creative/model/reply"
"os"
"strings"
"testing"
"github.com/smartystreets/goconvey/convey"
gock "gopkg.in/h2non/gock.v1"
)
var (
d *Dao
)
func httpMock(method, url string) *gock.Request {
r := gock.New(url)
r.Method = strings.ToUpper(method)
d.client.SetTransport(gock.DefaultTransport)
return r
}
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 TestReplyMinfo(t *testing.T) {
var (
c = context.TODO()
err error
ak, ck string
mid, tp int64
DeriveIds, DeriveOids []int64
ip string
data = make(map[int64]*reply.Reply)
res = &struct {
Code int `json:"code"`
Data map[int64]*reply.Reply `json:"data"`
}{}
)
convey.Convey("1", t, func(ctx convey.C) {
defer gock.OffAll()
httpMock("Get", d.replyMinfoURI).Reply(-502)
data, err = d.ReplyMinfo(c, ak, ck, mid, tp, DeriveIds, DeriveOids, ip)
ctx.Convey("1", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
ctx.So(data, convey.ShouldBeNil)
})
})
convey.Convey("2", t, func(ctx convey.C) {
defer gock.OffAll()
js, _ := json.Marshal(res)
httpMock("Get", d.replyMinfoURI).Reply(200).JSON(string(js))
data, err = d.ReplyMinfo(c, ak, ck, mid, tp, DeriveIds, DeriveOids, ip)
ctx.Convey("2", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(data, convey.ShouldBeNil)
})
})
convey.Convey("3", t, func(ctx convey.C) {
defer gock.OffAll()
res.Code = 20001
js, _ := json.Marshal(res)
httpMock("Get", d.replyMinfoURI).Reply(200).JSON(string(js))
data, err = d.ReplyMinfo(c, ak, ck, mid, tp, DeriveIds, DeriveOids, ip)
ctx.Convey("3", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
ctx.So(data, convey.ShouldBeNil)
})
})
}
func TestReplyRecover(t *testing.T) {
var (
c = context.TODO()
err error
mid, oid, rpid int64
ip string
res = &struct {
Code int `json:"code"`
}{}
)
convey.Convey("1", t, func(ctx convey.C) {
defer gock.OffAll()
httpMock("Post", d.replyRecoverURI).Reply(-502)
err = d.ReplyRecover(c, mid, oid, rpid, ip)
ctx.Convey("1", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
})
})
convey.Convey("2", t, func(ctx convey.C) {
defer gock.OffAll()
js, _ := json.Marshal(res)
httpMock("Post", d.replyRecoverURI).Reply(200).JSON(string(js))
err = d.ReplyRecover(c, mid, oid, rpid, ip)
ctx.Convey("2", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
})
})
convey.Convey("3", t, func(ctx convey.C) {
defer gock.OffAll()
res.Code = 20001
js, _ := json.Marshal(res)
httpMock("Post", d.replyRecoverURI).Reply(200).JSON(string(js))
err = d.ReplyRecover(c, mid, oid, rpid, ip)
ctx.Convey("3", func(ctx convey.C) {
ctx.So(err, convey.ShouldNotBeNil)
})
})
}