123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- package dao
- import (
- "context"
- "go-common/app/interface/main/credit/model"
- "math/rand"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestDaoAddBlockedCases(t *testing.T) {
- convey.Convey("AddBlockedCases", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- bc = []*model.ArgJudgeCase{}
- b = &model.ArgJudgeCase{MID: 1}
- )
- bc = append(bc, b)
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.AddBlockedCases(c, bc)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoInsVote(t *testing.T) {
- convey.Convey("InsVote", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = rand.Int63n(99999999)
- cid = rand.Int63n(99999999)
- no = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.InsVote(c, mid, cid, no)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoSetvote(t *testing.T) {
- convey.Convey("Setvote", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- cid = int64(0)
- vote = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.Setvote(c, mid, cid, vote)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoSetVoteTx(t *testing.T) {
- convey.Convey("SetVoteTx", t, func(convCtx convey.C) {
- var (
- tx, _ = d.BeginTran(context.Background())
- mid = rand.Int63n(99999999)
- cid = rand.Int63n(99999999)
- vote = int8(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- affect, err := d.SetVoteTx(tx, mid, cid, vote)
- if err == nil {
- if err = tx.Commit(); err != nil {
- tx.Rollback()
- }
- } else {
- tx.Rollback()
- }
- convCtx.Convey("Then err should be nil.affect should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(affect, convey.ShouldBeGreaterThanOrEqualTo, 0)
- })
- })
- })
- }
- func TestDaoAddCaseReasonApply(t *testing.T) {
- convey.Convey("AddCaseReasonApply", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- cid = int64(0)
- applyType = int8(0)
- originReason = int8(0)
- applyReason = int8(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.AddCaseReasonApply(c, mid, cid, applyType, originReason, applyReason)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoAddCaseVoteTotal(t *testing.T) {
- convey.Convey("AddCaseVoteTotal", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- field = "vote_rule"
- cid = int64(3)
- voteNum = int8(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- err := d.AddCaseVoteTotal(c, field, cid, voteNum)
- convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoCaseInfo(t *testing.T) {
- convey.Convey("CaseInfo", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- cid = int64(3)
- cid1 = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- r, err := d.CaseInfo(c, cid)
- convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(r, convey.ShouldNotBeNil)
- })
- r1, err := d.CaseInfo(c, cid1)
- convCtx.Convey("Then err should be nil.r should be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(r1, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoCountCaseVote(t *testing.T) {
- convey.Convey("CountCaseVote", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- r, err := d.CountCaseVote(c, mid)
- convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(r, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoIsVote(t *testing.T) {
- convey.Convey("IsVote", 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) {
- r, err := d.IsVote(c, mid, cid)
- convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(r, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoVoteInfo(t *testing.T) {
- convey.Convey("VoteInfo", 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) {
- r, err := d.VoteInfo(c, mid, cid)
- convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(r, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoLoadVoteIDsMid(t *testing.T) {
- convey.Convey("LoadVoteIDsMid", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- day = int(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- cases, err := d.LoadVoteIDsMid(c, mid, day)
- convCtx.Convey("Then err should be nil.cases should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(cases, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseVoteIDs(t *testing.T) {
- convey.Convey("CaseVoteIDs", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- ids = []int64{3, 6}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- mbc, err := d.CaseVoteIDs(c, ids)
- convCtx.Convey("Then err should be nil.mbc should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(mbc, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseRelationIDCount(t *testing.T) {
- convey.Convey("CaseRelationIDCount", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- tp = int8(0)
- relationID = ""
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- count, err := d.CaseRelationIDCount(c, tp, relationID)
- convCtx.Convey("Then err should be nil.count should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(count, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseInfoIDs(t *testing.T) {
- convey.Convey("CaseInfoIDs", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- ids = []int64{3}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- cases, err := d.CaseInfoIDs(c, ids)
- convCtx.Convey("Then err should be nil.cases should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(cases, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseVotesMID(t *testing.T) {
- convey.Convey("CaseVotesMID", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- ids = []int64{1, 44}
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- mvo, err := d.CaseVotesMID(c, ids)
- convCtx.Convey("Then err should be nil.mvo should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(mvo, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseVoteIDMID(t *testing.T) {
- convey.Convey("CaseVoteIDMID", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(111001692)
- pn = int64(1)
- ps = int64(1)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- vids, cids, err := d.CaseVoteIDMID(c, mid, pn, ps)
- convCtx.Convey("Then err should be nil.vids,cids should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(cids, convey.ShouldNotBeNil)
- convCtx.So(vids, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoCaseVoteIDTop(t *testing.T) {
- convey.Convey("CaseVoteIDTop", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- mid = int64(0)
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- vids, cids, err := d.CaseVoteIDTop(c, mid)
- convCtx.Convey("Then err should be nil.vids,cids should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(cids, convey.ShouldNotBeNil)
- convCtx.So(vids, convey.ShouldNotBeNil)
- })
- })
- })
- }
|