123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- package article
- import (
- "context"
- artMdl "go-common/app/interface/main/creative/model/article"
- "testing"
- "go-common/app/interface/openplatform/article/model"
- "go-common/app/interface/openplatform/article/rpc/client"
- "go-common/library/ecode"
- "reflect"
- "github.com/bouk/monkey"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestArticleArticles(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(1)
- pn = int(0)
- ps = int(0)
- sort = int(0)
- group = int(0)
- category = int(0)
- ip = ""
- )
- convey.Convey("Articles", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CreationUpperArticles",
- func(_ *client.Service, _ context.Context, _ *model.ArgCreationArts) (res *model.CreationArts, err error) {
- return nil, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.Articles(c, mid, pn, ps, sort, group, category, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldBeNil)
- })
- })
- }
- func TestArticleCategories(t *testing.T) {
- var (
- c = context.TODO()
- ip = ""
- )
- convey.Convey("Categories", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "Categories",
- func(_ *client.Service, _ context.Context, _ *model.ArgIP) (res *model.Categories, err error) {
- return nil, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.Categories(c, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldBeNil)
- })
- })
- }
- func TestArticleCategoriesMap(t *testing.T) {
- var (
- c = context.TODO()
- ip = ""
- )
- convey.Convey("CategoriesMap", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CategoriesMap",
- func(_ *client.Service, _ context.Context, _ *model.ArgIP) (res map[int64]*model.Category, err error) {
- return nil, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.CategoriesMap(c, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldEqual, 20017)
- ctx.So(len(res), convey.ShouldEqual, 0)
- })
- })
- }
- func TestArticleArticle(t *testing.T) {
- var (
- c = context.TODO()
- aid = int64(1198)
- mid = int64(0)
- ip = ""
- )
- convey.Convey("Article", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CreationArticle",
- func(_ *client.Service, _ context.Context, _ *model.ArgAidMid) (res *model.Article, err error) {
- return nil, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.Article(c, aid, mid, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldBeNil)
- })
- })
- }
- func TestArticleAddArticle(t *testing.T) {
- var (
- c = context.TODO()
- art = &artMdl.ArtParam{}
- )
- convey.Convey("AddArticle", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "AddArticle",
- func(_ *client.Service, _ context.Context, _ *model.ArgArticle) (id int64, err error) {
- return 0, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- id, err := d.AddArticle(c, art)
- ctx.Convey("Then err should be nil.id should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(id, convey.ShouldEqual, 0)
- })
- })
- }
- func TestArticleUpdateArticle(t *testing.T) {
- var (
- c = context.TODO()
- art = &artMdl.ArtParam{}
- )
- convey.Convey("UpdateArticle", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "UpdateArticle",
- func(_ *client.Service, _ context.Context, _ *model.ArgArticle) (err error) {
- return ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- err := d.UpdateArticle(c, art)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
- func TestArticleDelArticle(t *testing.T) {
- var (
- c = context.TODO()
- aid = int64(0)
- mid = int64(0)
- ip = ""
- )
- convey.Convey("DelArticle", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "DelArticle",
- func(_ *client.Service, _ context.Context, _ *model.ArgAidMid) (err error) {
- return ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- err := d.DelArticle(c, aid, mid, ip)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
- func TestArticleWithDrawArticle(t *testing.T) {
- var (
- c = context.TODO()
- aid = int64(0)
- mid = int64(0)
- ip = ""
- )
- convey.Convey("WithDrawArticle", t, func(ctx convey.C) {
- err := d.WithDrawArticle(c, aid, mid, ip)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
- func TestArticleIsAuthor(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ip = ""
- )
- convey.Convey("IsAuthor", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "IsAuthor",
- func(_ *client.Service, _ context.Context, _ *model.ArgMid) (res bool, err error) {
- return false, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.IsAuthor(c, mid, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldEqual, false)
- })
- })
- }
- func TestArticleRemainCount(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ip = ""
- )
- convey.Convey("ArticleRemainCount", t, func(ctx convey.C) {
- // mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "ArticleRemainCount",
- func(_ *client.Service, _ context.Context, _ *model.ArgMid) (res int, err error) {
- return 0, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.RemainCount(c, mid, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldEqual, 0)
- })
- })
- }
- func TestArticleArticleStat(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(2333)
- ip = ""
- )
- convey.Convey("ArticleStat", t, func(ctx convey.C) {
- // mock
- //mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "CreationUpStat",
- // func(_ *client.Service, _ context.Context, _ *model.ArgMid) (res model.UpStat, err error) {
- // return new(model.UpStat), ecode.CreativeArticleRPCErr
- // })
- //defer mock.Unpatch()
- res, err := d.ArticleStat(c, mid, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldNotBeNil)
- })
- })
- }
- func TestArticleThirtyDayArticle(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ip = ""
- )
- convey.Convey("ThirtyDayArticle", t, func(ctx convey.C) {
- res, err := d.ThirtyDayArticle(c, mid, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldBeNil)
- })
- })
- }
- func TestArticleArticleMetas(t *testing.T) {
- var (
- c = context.TODO()
- aids = []int64{233}
- ip = ""
- )
- convey.Convey("ArticleMetas", t, func(ctx convey.C) {
- //mock
- mock := monkey.PatchInstanceMethod(reflect.TypeOf(d.art), "ArticleMetas",
- func(_ *client.Service, _ context.Context, _ *model.ArgAids) (res map[int64]*model.Meta, err error) {
- return nil, ecode.CreativeArticleRPCErr
- })
- defer mock.Unpatch()
- res, err := d.ArticleMetas(c, aids, ip)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- ctx.So(res, convey.ShouldBeNil)
- })
- })
- }
|