123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- package account
- import (
- "context"
- "go-common/library/cache/memcache"
- "reflect"
- "testing"
- "github.com/bouk/monkey"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestAccountlimitMidHafMin(t *testing.T) {
- convey.Convey("limitMidHafMin", t, func(ctx convey.C) {
- var (
- mid = int64(2089809)
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := limitMidHafMin(mid)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestAccountlimitMidSameTitle(t *testing.T) {
- convey.Convey("limitMidSameTitle", t, func(ctx convey.C) {
- var (
- mid = int64(2089809)
- title = "iamtitle"
- )
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- p1 := limitMidSameTitle(mid, title)
- ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
- ctx.So(p1, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestAccountHalfMin(t *testing.T) {
- convey.Convey("HalfMin", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2089809)
- )
- ctx.Convey("When everything goes positive", 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()
- exist, ts, err := d.HalfMin(c, mid)
- ctx.Convey("Then err should be nil.exist,ts should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(ts, convey.ShouldNotBeNil)
- ctx.So(exist, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestAccountAddHalfMin(t *testing.T) {
- convey.Convey("AddHalfMin", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2089809)
- )
- ctx.Convey("When everything goes positive", 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.AddHalfMin(c, mid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestAccountDelHalfMin(t *testing.T) {
- convey.Convey("DelHalfMin", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2089809)
- )
- ctx.Convey("When everything goes positive", 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.DelHalfMin(c, mid)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestAccountSubmitCache(t *testing.T) {
- convey.Convey("SubmitCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2089809)
- title = "iamtitle"
- )
- ctx.Convey("When everything goes positive", 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()
- exist, err := d.SubmitCache(c, mid, title)
- ctx.Convey("Then err should be nil.exist should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- ctx.So(exist, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestAccountAddSubmitCache(t *testing.T) {
- convey.Convey("AddSubmitCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2089809)
- title = "iamtitle"
- )
- ctx.Convey("When everything goes positive", 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.AddSubmitCache(c, mid, title)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- })
- }
- func TestAccountDelSubmitCache(t *testing.T) {
- convey.Convey("DelSubmitCache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- mid = int64(2089809)
- title = "iamtitle"
- )
- ctx.Convey("When everything goes positive", 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.DelSubmitCache(c, mid, title)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- })
- }
- func TestAccountpingMemcache(t *testing.T) {
- convey.Convey("pingMemcache", t, func(ctx convey.C) {
- var (
- c = context.Background()
- err error
- )
- ctx.Convey("When everything goes positive", 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.pingMemcache(c)
- ctx.Convey("Then err should be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- })
- }
|