123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package dao
- import (
- "context"
- "go-common/library/ecode"
- "testing"
- "github.com/smartystreets/goconvey/convey"
- "gopkg.in/h2non/gock.v1"
- )
- func TestDaoArcAppeal(t *testing.T) {
- convey.Convey("ArcAppeal", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- business = int(1)
- )
- data := map[string]string{"tid": "27", "oid": "222", "description": "test111"}
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.ArcAppeal(c, mid, data, business)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoAppealTags(t *testing.T) {
- convey.Convey("AppealTags", t, func(ctx convey.C) {
- var (
- c = context.Background()
- business = int(1)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- rs, err := d.AppealTags(c, business)
- ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(rs, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoRelatedAids(t *testing.T) {
- convey.Convey("RelatedAids", t, func(ctx convey.C) {
- var (
- c = context.Background()
- aid = int64(9912124)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- defer gock.OffAll()
- httpMock("GET", d.relatedURL).Reply(200).JSON(`{"data":[{"key":"33817773","value":"14536406,25731794"}]}`)
- aids, err := d.RelatedAids(c, aid)
- ctx.Convey("Then err should be nil.aids should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(aids, convey.ShouldNotBeNil)
- ctx.Printf("%+v", aids)
- })
- })
- })
- }
- func TestDaokeyArcAppealLimit(t *testing.T) {
- convey.Convey("keyArcAppealLimit", t, func(ctx convey.C) {
- var (
- mid = int64(0)
- aid = int64(0)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := keyArcAppealLimit(mid, aid)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestDaoSetArcAppealCache(t *testing.T) {
- convey.Convey("SetArcAppealCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- aid = int64(2222)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.SetArcAppealCache(c, mid, aid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestDaoArcAppealCache(t *testing.T) {
- convey.Convey("ArcAppealCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2222)
- aid = int64(2222)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- err := d.ArcAppealCache(c, mid, aid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldEqual, ecode.ArcAppealLimit)
- })
- })
- })
- }
- func TestDaoSpecial(t *testing.T) {
- convey.Convey("Special", t, func(convCtx convey.C) {
- var (
- c = context.Background()
- )
- convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
- midsM, err := d.Special(c)
- convCtx.Convey("Then err should be nil.midsM should not be nil.", func(convCtx convey.C) {
- convCtx.So(err, convey.ShouldBeNil)
- convCtx.So(midsM, convey.ShouldNotBeNil)
- })
- })
- })
- }
|