123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- package dao
- import (
- "context"
- "go-common/app/interface/main/credit/model"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDaocaseInfoKey(t *testing.T) {
- convey.Convey("caseInfoKey", t, func(convCtx convey.C) {
- var (
- cid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- p1 := caseInfoKey(cid)
- convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
- convCtx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaovoteCaseInfoKey(t *testing.T) {
- convey.Convey("voteCaseInfoKey", t, func(convCtx convey.C) {
- var (
- mid = int64(0)
- cid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- p1 := voteCaseInfoKey(mid, cid)
- convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
- convCtx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaocaseVoteTopKey(t *testing.T) {
- convey.Convey("caseVoteTopKey", t, func(convCtx convey.C) {
- var (
- mid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- p1 := caseVoteTopKey(mid)
- convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
- convCtx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoSetCaseInfoCache(t *testing.T) {
- convey.Convey("SetCaseInfoCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- cid = int64(0)
- bc = &model.BlockedCase{}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.SetCaseInfoCache(c, cid, bc)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoCaseInfoCache(t *testing.T) {
- convey.Convey("CaseInfoCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- cid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- bc, err := d.CaseInfoCache(c, cid)
- convCtx.Convey("Then err should be nil.bc should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(bc, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoSetVoteInfoCache(t *testing.T) {
- convey.Convey("SetVoteInfoCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- cid = int64(0)
- vi = &model.VoteInfo{}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.SetVoteInfoCache(c, mid, cid, vi)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoVoteInfoCache(t *testing.T) {
- convey.Convey("VoteInfoCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- cid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- vi, err := d.VoteInfoCache(c, mid, cid)
- convCtx.Convey("Then err should be nil.vi should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(vi, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseVoteTopCache(t *testing.T) {
- convey.Convey("CaseVoteTopCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(-1)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- bs, err := d.CaseVoteTopCache(c, mid)
- convCtx.Convey("Then err should be nil.bs should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(len(bs), convey.ShouldBeGreaterThanOrEqualTo, 0)
- })
- })
- })
- }
- func TestDaoSetCaseVoteTopCache(t *testing.T) {
- convey.Convey("SetCaseVoteTopCache", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- bs = []*model.BlockedCase{}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.SetCaseVoteTopCache(c, mid, bs)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
|