Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
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/lottery",
tags = ["automanaged"],
visibility = ["//visibility:public"],
deps = [
"//app/interface/main/creative/conf:go_default_library",
"//app/interface/main/creative/model/lottery:go_default_library",
"//library/ecode:go_default_library",
"//library/log:go_default_library",
"//library/net/http/blademaster: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"],
tags = ["automanaged"],
deps = [
"//app/interface/main/creative/conf:go_default_library",
"//app/interface/main/creative/model/lottery: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,91 @@
package lottery
import (
"context"
"go-common/app/interface/main/creative/conf"
"go-common/app/interface/main/creative/model/lottery"
"go-common/library/ecode"
"go-common/library/log"
bm "go-common/library/net/http/blademaster"
"net/url"
"strconv"
)
const (
_userCheckURI = "/lottery_svr/v0/lottery_svr/user_check"
_noticeURI = "/lottery_svr/v0/lottery_svr/lottery_notice"
)
// Dao define
type Dao struct {
c *conf.Config
client *bm.Client
UserCheckURL, NoticeURL string
}
// New init dao
func New(c *conf.Config) (d *Dao) {
d = &Dao{
c: c,
client: bm.NewClient(c.HTTPClient.Normal),
UserCheckURL: c.Host.Dynamic + _userCheckURI,
NoticeURL: c.Host.Dynamic + _noticeURI,
}
return
}
// UserCheck fn
func (d *Dao) UserCheck(c context.Context, mid int64, ip string) (ret int, err error) {
params := url.Values{}
params.Set("sender_uid", strconv.FormatInt(mid, 10))
params.Set("business_type", "8")
var res struct {
Code int `json:"code"`
Data struct {
Result int `json:"result"`
} `json:"data"`
}
if err = d.client.Get(c, d.UserCheckURL, ip, params, &res); err != nil {
log.Error("UserCheck url(%s) response(%v) error(%v)", d.UserCheckURL+"?"+params.Encode(), res, err)
err = ecode.CreativeLotteryAPIErr
return
}
log.Info("UserCheck d.UserCheckURL url(%s) code(%d)", d.UserCheckURL+"?"+params.Encode(), res.Code)
if res.Code != 0 {
log.Error("UserCheck url(%s) res(%v)", d.UserCheckURL, res)
err = ecode.CreativeLotteryAPIErr
return
}
ret = res.Data.Result
return
}
// Notice fn
func (d *Dao) Notice(c context.Context, aid, mid int64, ip string) (ret *lottery.Notice, err error) {
ret = &lottery.Notice{}
params := url.Values{}
params.Set("sender_uid", strconv.FormatInt(mid, 10))
params.Set("business_type", "8")
params.Set("business_id", strconv.FormatInt(aid, 10))
var res struct {
Code int `json:"code"`
Data *lottery.Notice `json:"data"`
}
if err = d.client.Get(c, d.NoticeURL, ip, params, &res); err != nil {
log.Error("Notice url(%s) response(%v) error(%v)", d.NoticeURL+"?"+params.Encode(), res, err)
err = ecode.CreativeLotteryAPIErr
return
}
log.Info("Notice d.NoticeURL url(%s) code(%d)", d.NoticeURL+"?"+params.Encode(), res.Code)
if res.Code != 0 {
log.Error("Notice url(%s) res(%v)", d.NoticeURL, res)
if res.Code == -9999 {
err = ecode.NothingFound
} else {
err = ecode.CreativeLotteryAPIErr
}
return
}
ret = res.Data
return
}

View File

@@ -0,0 +1,107 @@
package lottery
import (
"context"
"flag"
"go-common/app/interface/main/creative/model/lottery"
"gopkg.in/h2non/gock.v1"
"os"
"strings"
"testing"
"github.com/smartystreets/goconvey/convey"
"go-common/app/interface/main/creative/conf"
)
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)
os.Exit(m.Run())
}
func httpMock(method, url string) *gock.Request {
r := gock.New(url)
r.Method = strings.ToUpper(method)
d.client.SetTransport(gock.DefaultTransport)
d.client.SetTransport(gock.DefaultTransport)
return r
}
func TestLotteryUserCheck(t *testing.T) {
convey.Convey("UserCheck", t, func(ctx convey.C) {
var (
c = context.Background()
mid = int64(0)
ip = ""
res = struct {
Code int `json:"code"`
Data struct {
Result int `json:"result"`
} `json:"data"`
}{
Code: 0,
Data: struct {
Result int `json:"result"`
}{Result: 100},
}
)
ctx.Convey("When everything gose positive", func(ctx convey.C) {
httpMock("GET", d.UserCheckURL).Reply(200).JSON(res)
ret, err := d.UserCheck(c, mid, ip)
ctx.Convey("Then err should be nil.ret should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(ret, convey.ShouldNotBeNil)
})
})
})
}
func TestLotteryNotice(t *testing.T) {
convey.Convey("Notice", t, func(ctx convey.C) {
var (
c = context.Background()
aid = int64(0)
mid = int64(0)
ip = ""
res = struct {
Code int `json:"code"`
Data *lottery.Notice `json:"data"`
}{
Code: 0,
Data: &lottery.Notice{
BizID: 0,
Status: 0,
},
}
)
ctx.Convey("When everything gose positive", func(ctx convey.C) {
httpMock("GET", d.NoticeURL).Reply(200).JSON(res)
ret, err := d.Notice(c, aid, mid, ip)
ctx.Convey("Then err should be nil.ret should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
ctx.So(ret, convey.ShouldNotBeNil)
})
})
})
}