123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- package data
- import (
- "context"
- "go-common/app/interface/main/creative/model/data"
- artmdl "go-common/app/interface/openplatform/article/model"
- "go-common/library/cache/memcache"
- "reflect"
- "testing"
- "github.com/bouk/monkey"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDatakeyBase(t *testing.T) {
- var (
- mid = int64(1)
- date = ""
- )
- convey.Convey("keyBase", t, func(ctx convey.C) {
- p1 := keyBase(mid, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyArea(t *testing.T) {
- var (
- mid = int64(0)
- date = ""
- )
- convey.Convey("keyArea", t, func(ctx convey.C) {
- p1 := keyArea(mid, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyTrend(t *testing.T) {
- var (
- mid = int64(1)
- date = ""
- )
- convey.Convey("keyTrend", t, func(ctx convey.C) {
- p1 := keyTrend(mid, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyRfd(t *testing.T) {
- var (
- mid = int64(1)
- date = ""
- )
- convey.Convey("keyRfd", t, func(ctx convey.C) {
- p1 := keyRfd(mid, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyRfm(t *testing.T) {
- var (
- mid = int64(1)
- date = ""
- )
- convey.Convey("keyRfm", t, func(ctx convey.C) {
- p1 := keyRfm(mid, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyAct(t *testing.T) {
- var (
- mid = int64(0)
- date = ""
- )
- convey.Convey("keyAct", t, func(ctx convey.C) {
- p1 := keyAct(mid, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyViewIncr(t *testing.T) {
- var (
- mid = int64(1)
- ty = ""
- date = ""
- )
- convey.Convey("keyViewIncr", t, func(ctx convey.C) {
- p1 := keyViewIncr(mid, ty, date)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyThirtyDayArchive(t *testing.T) {
- var (
- mid = int64(1)
- ty = ""
- )
- convey.Convey("keyThirtyDayArchive", t, func(ctx convey.C) {
- p1 := keyThirtyDayArchive(mid, ty)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDatakeyThirtyDayArticle(t *testing.T) {
- var (
- mid = int64(1)
- )
- convey.Convey("keyThirtyDayArticle", t, func(ctx convey.C) {
- p1 := keyThirtyDayArticle(mid)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDataViewerBaseCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(1)
- dt = "dt"
- err error
- )
- convey.Convey("ViewerBaseCache1", t, func(ctx convey.C) {
- connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
- return memcache.MockWith(memcache.ErrExists)
- })
- defer connGuard.Unpatch()
- _, err = d.ViewerBaseCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("ViewerBaseCache2", t, func(ctx convey.C) {
- connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
- return memcache.MockWith(memcache.ErrNotFound)
- })
- defer connGuard.Unpatch()
- _, err = d.ViewerBaseCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddViewerBaseCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(1)
- dt = ""
- res map[string]*data.ViewerBase
- )
- convey.Convey("AddViewerBaseCache", t, func(ctx convey.C) {
- err := d.AddViewerBaseCache(c, mid, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataViewerAreaCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(1)
- dt = "dt"
- )
- convey.Convey("ViewerAreaCache1", t, func(ctx convey.C) {
- connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
- return memcache.MockWith(memcache.ErrExists)
- })
- defer connGuard.Unpatch()
- _, err := d.ViewerAreaCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("ViewerAreaCache2", t, func(ctx convey.C) {
- connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
- return memcache.MockWith(memcache.ErrNotFound)
- })
- defer connGuard.Unpatch()
- _, err := d.ViewerAreaCache(c, mid, dt)
- ctx.Convey("ShouldBeNil", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddViewerAreaCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- res map[string]map[string]int64
- )
- convey.Convey("AddViewerAreaCache", t, func(ctx convey.C) {
- err := d.AddViewerAreaCache(c, mid, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataTrendCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- )
- convey.Convey("TrendCache", t, func(ctx convey.C) {
- _, err := d.TrendCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddTrendCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- res map[string]*data.ViewerTrend
- )
- convey.Convey("AddTrendCache", t, func(ctx convey.C) {
- err := d.AddTrendCache(c, mid, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataRelationFansDayCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- )
- convey.Convey("RelationFansDayCache", t, func(ctx convey.C) {
- _, err := d.RelationFansDayCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddRelationFansDayCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- res map[string]map[string]int
- )
- convey.Convey("AddRelationFansDayCache", t, func(ctx convey.C) {
- err := d.AddRelationFansDayCache(c, mid, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataRelationFansMonthCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(1)
- dt = ""
- )
- convey.Convey("RelationFansMonthCache", t, func(ctx convey.C) {
- _, err := d.RelationFansMonthCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddRelationFansMonthCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- res map[string]map[string]int
- )
- convey.Convey("AddRelationFansMonthCache", t, func(ctx convey.C) {
- err := d.AddRelationFansMonthCache(c, mid, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataViewerActionHourCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- )
- convey.Convey("ViewerActionHourCache", t, func(ctx convey.C) {
- _, err := d.ViewerActionHourCache(c, mid, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddViewerActionHourCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- dt = ""
- res map[string]*data.ViewerActionHour
- )
- convey.Convey("AddViewerActionHourCache", t, func(ctx convey.C) {
- err := d.AddViewerActionHourCache(c, mid, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataViewerIncrCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ty = ""
- dt = ""
- )
- convey.Convey("ViewerIncrCache", t, func(ctx convey.C) {
- _, err := d.ViewerIncrCache(c, mid, ty, dt)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddViewerIncrCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ty = ""
- dt = ""
- res = &data.ViewerIncr{}
- )
- convey.Convey("AddViewerIncrCache", t, func(ctx convey.C) {
- err := d.AddViewerIncrCache(c, mid, ty, dt, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataThirtyDayArchiveCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ty = ""
- )
- convey.Convey("ThirtyDayArchiveCache", t, func(ctx convey.C) {
- _, err := d.ThirtyDayArchiveCache(c, mid, ty)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddThirtyDayArchiveCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ty = ""
- res = []*data.ThirtyDay{}
- )
- convey.Convey("AddThirtyDayArchiveCache", t, func(ctx convey.C) {
- err := d.AddThirtyDayArchiveCache(c, mid, ty, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataThirtyDayArticleCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- )
- convey.Convey("ThirtyDayArticleCache", t, func(ctx convey.C) {
- _, err := d.ThirtyDayArticleCache(c, mid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataAddThirtyDayArticleCache(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- res = []*artmdl.ThirtyDayArticle{}
- )
- convey.Convey("AddThirtyDayArticleCache", t, func(ctx convey.C) {
- err := d.AddThirtyDayArticleCache(c, mid, res)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
|