123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package dao
- import (
- "context"
- "testing"
- "go-common/app/interface/main/space/model"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDaokeyUpArt(t *testing.T) {
- convey.Convey("keyUpArt", t, func(ctx convey.C) {
- var (
- mid = int64(0)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := keyUpArt(mid)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaokeyUpArc(t *testing.T) {
- convey.Convey("keyUpArc", t, func(ctx convey.C) {
- var (
- mid = int64(0)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := keyUpArc(mid)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoSetUpArtCache(t *testing.T) {
- convey.Convey("SetUpArtCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- data = &model.UpArtStat{View: 2222, Reply: 2222}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.SetUpArtCache(c, mid, data)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoUpArtCache(t *testing.T) {
- convey.Convey("UpArtCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- data, err := d.UpArtCache(c, mid)
- ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(data, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoSetUpArcCache(t *testing.T) {
- convey.Convey("SetUpArcCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- data = &model.UpArcStat{View: 2222, Reply: 2222}
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.SetUpArcCache(c, mid, data)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoUpArcCache(t *testing.T) {
- convey.Convey("UpArcCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- data, err := d.UpArcCache(c, mid)
- ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(data, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaosetKvCache(t *testing.T) {
- convey.Convey("setKvCache", t, func(ctx convey.C) {
- var (
- conn = d.redis.Get(context.Background())
- key = ""
- value = []byte("")
- expire = int32(0)
- )
- defer conn.Close()
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := setKvCache(conn, key, value, expire)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|