123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package dao
- import (
- "context"
- "testing"
- "go-common/app/interface/main/web/model"
- artmdl "go-common/app/interface/openplatform/article/model"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDaokeyArtList(t *testing.T) {
- convey.Convey("keyArtList", t, func(ctx convey.C) {
- var (
- rid = int64(0)
- sort = int(0)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := keyArtList(rid, sort)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoArticleListCache(t *testing.T) {
- convey.Convey("ArticleListCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- rid = int64(0)
- sort = int(0)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.ArticleListCache(c, rid, sort)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- convey.Printf("%+v", res)
- })
- })
- })
- }
- func TestDaoSetArticleListCache(t *testing.T) {
- convey.Convey("SetArticleListCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- rid = int64(0)
- sort = int(0)
- list = []*artmdl.Meta{}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.SetArticleListCache(c, rid, sort, list)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoArticleUpListCache(t *testing.T) {
- convey.Convey("ArticleUpListCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- res, err := d.ArticleUpListCache(c)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.Printf("%+v", res)
- })
- })
- })
- }
- func TestDaoSetArticleUpListCache(t *testing.T) {
- convey.Convey("SetArticleUpListCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- list = []*model.Info{}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.SetArticleUpListCache(c, list)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|