go-common/app/interface/main/activity/dao/like/lottery_test.go

46 lines
1.0 KiB
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package like
import (
"context"
"testing"
"fmt"
"github.com/smartystreets/goconvey/convey"
)
func TestLikeLotteryIndex(t *testing.T) {
convey.Convey("LotteryIndex", t, func(ctx convey.C) {
var (
c = context.Background()
actID = int64(1)
platform = int64(1)
source = int64(1)
mid = int64(77)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
res, err := d.LotteryIndex(c, actID, platform, source, mid)
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
fmt.Printf("%+v", err)
fmt.Printf("%+v", res)
})
})
})
}
func TestAddLotteryTimes(t *testing.T) {
convey.Convey("LotteryIndex", t, func(ctx convey.C) {
var (
c = context.Background()
sid = int64(1)
mid = int64(1)
)
ctx.Convey("When everything goes positive", func(ctx convey.C) {
err := d.AddLotteryTimes(c, sid, mid)
ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
fmt.Printf("%+v", err)
})
})
})
}