123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package like
- import (
- "context"
- "flag"
- "path/filepath"
- "testing"
- "time"
- "go-common/app/interface/main/activity/conf"
- "go-common/app/interface/main/activity/model/like"
- "fmt"
- . "github.com/smartystreets/goconvey/convey"
- )
- var svf *Service
- func init() {
- dir, _ := filepath.Abs("../../cmd/activity-test.toml")
- flag.Set("conf", dir)
- if err := conf.Init(); err != nil {
- panic(err)
- }
- if svf == nil {
- svf = New(conf.Conf)
- }
- time.Sleep(time.Second)
- }
- func WithService(f func(s *Service)) func() {
- return func() {
- f(svf)
- }
- }
- func TestService_Subject(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.Subject(context.Background(), 1)
- So(err, ShouldBeNil)
- So(res, ShouldNotBeEmpty)
- }))
- }
- func TestService_LikeAct(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.LikeAct(context.Background(), &like.ParamAddLikeAct{Sid: 10296, Lid: 13513, Score: 1}, 27515615)
- So(err, ShouldBeNil)
- So(res, ShouldNotBeEmpty)
- }))
- }
- func TestService_LikeActList(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.LikeActList(context.Background(), 10296, 2089809, []int64{13510, 13511, 13514, 13513})
- So(err, ShouldBeNil)
- So(res, ShouldNotBeEmpty)
- fmt.Printf("res %v", res)
- }))
- }
- func TestService_StoryKingAct(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.StoryKingAct(context.Background(), &like.ParamStoryKingAct{Sid: 10365, Lid: 2357, Score: 1}, 27515615)
- So(err, ShouldBeNil)
- fmt.Printf("%v", res)
- }))
- }
- func TestService_StoryKingLeftTime(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.StoryKingLeftTime(context.Background(), 10296, 55555)
- So(err, ShouldBeNil)
- fmt.Printf("%d", res)
- }))
- }
- func TestService_storyEachUsed(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.storyEachUsed(context.Background(), 10296, 216761, 13538)
- So(err, ShouldBeNil)
- fmt.Printf("%d", res)
- }))
- }
- func TestService_StoryKingList(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.StoryKingList(context.Background(), &like.ParamList{Sid: 1, Pn: 1, Ps: 100, Type: "random"}, 27515257)
- So(err, ShouldBeNil)
- fmt.Printf("%v", res)
- }))
- }
- func TestService_UpList(t *testing.T) {
- Convey("should return without err", t, WithService(func(svf *Service) {
- res, err := svf.UpList(context.Background(), &like.ParamList{Sid: 10259, Pn: 1, Ps: 100, Type: "random"}, 27515257)
- So(err, ShouldBeNil)
- if res != nil {
- if len(res.List) > 0 {
- for _, v := range res.List {
- fmt.Printf("%v %v", v.Item, v.Object)
- }
- }
- }
- }))
- }
|