123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- package data
- import (
- "context"
- "encoding/binary"
- "reflect"
- "testing"
- "go-common/library/ecode"
- "github.com/bouk/monkey"
- "github.com/smartystreets/goconvey/convey"
- "github.com/tsuna/gohbase/hrpc"
- hbase "go-common/library/database/hbase.v2"
- )
- func TestDataViewerBase(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(2089809)
- dt = "dt"
- err error
- )
- convey.Convey("1", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- return nil, ecode.CreativeDataErr
- })
- defer guard.Unpatch()
- _, err = d.ViewerBase(c, mid, dt)
- ctx.Convey("1", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("2", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- res := &hrpc.Result{}
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerBase(c, mid, dt)
- ctx.Convey("2", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("3", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("f"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerBase(c, mid, dt)
- ctx.Convey("3", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("4", t, func(ctx convey.C) {
- g1 := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("g"),
- Qualifier: []byte("female"),
- Value: bs,
- })
- return res, nil
- })
- defer g1.Unpatch()
- _, err = d.ViewerBase(c, mid, dt)
- ctx.Convey("41", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- g2 := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("g"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer g2.Unpatch()
- _, err = d.ViewerBase(c, mid, dt)
- ctx.Convey("42", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataViewerTrend(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(2089809)
- dt = "dt"
- err error
- )
- convey.Convey("1", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- return nil, ecode.CreativeDataErr
- })
- defer guard.Unpatch()
- _, err = d.ViewerTrend(c, mid, dt)
- ctx.Convey("1", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("2", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- res := &hrpc.Result{}
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerTrend(c, mid, dt)
- ctx.Convey("2", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("3", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("fs"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerTrend(c, mid, dt)
- ctx.Convey("3", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("4", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("gs"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerTrend(c, mid, dt)
- ctx.Convey("4", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataRelationFansDay(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(2089809)
- )
- convey.Convey("RelationFansDay", t, func(ctx convey.C) {
- _, err := d.RelationFansDay(c, mid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDataRelationFansHistory(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- month = ""
- )
- convey.Convey("RelationFansHistory", t, func(ctx convey.C) {
- _, err := d.RelationFansHistory(c, mid, month)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDataRelationFansMonth(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- )
- convey.Convey("RelationFansMonth", t, func(ctx convey.C) {
- _, err := d.RelationFansMonth(c, mid)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
- func TestDataViewerActionHour(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(2089809)
- dt = "dt"
- err error
- )
- convey.Convey("1", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- return nil, ecode.CreativeDataErr
- })
- defer guard.Unpatch()
- _, err = d.ViewerActionHour(c, mid, dt)
- ctx.Convey("1", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("2", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- res := &hrpc.Result{}
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerActionHour(c, mid, dt)
- ctx.Convey("2", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("3", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("fs"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerActionHour(c, mid, dt)
- ctx.Convey("3", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("4", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("gs"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ViewerActionHour(c, mid, dt)
- ctx.Convey("4", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataUpIncr(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ty = int8(2)
- now = ""
- err error
- )
- convey.Convey("1", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- return nil, ecode.CreativeDataErr
- })
- defer guard.Unpatch()
- _, err = d.UpIncr(c, mid, ty, now)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("2", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- res := &hrpc.Result{}
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.UpIncr(c, mid, ty, now)
- ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("3", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- bs := make([]byte, 4)
- binary.LittleEndian.PutUint32(bs, 123)
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("u"),
- Qualifier: []byte("male"),
- Value: bs,
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.UpIncr(c, mid, ty, now)
- ctx.Convey("3", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataThirtyDayArchive(t *testing.T) {
- var (
- c = context.TODO()
- mid = int64(0)
- ty = int8(2)
- err error
- )
- convey.Convey("1", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- return nil, ecode.CreativeDataErr
- })
- defer guard.Unpatch()
- _, err = d.ThirtyDayArchive(c, mid, ty)
- ctx.Convey("1", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- convey.Convey("2", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- res := &hrpc.Result{}
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ThirtyDayArchive(c, mid, ty)
- ctx.Convey("2", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- convey.Convey("3", t, func(ctx convey.C) {
- guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
- res := &hrpc.Result{
- Cells: make([]*hrpc.Cell, 0),
- }
- res.Cells = append(res.Cells, &hrpc.Cell{
- Family: []byte("u"),
- Qualifier: []byte("20181111"),
- Value: []byte("200"),
- })
- return res, nil
- })
- defer guard.Unpatch()
- _, err = d.ThirtyDayArchive(c, mid, ty)
- ctx.Convey("3", func(ctx convey.C) {
- ctx.So(err, convey.ShouldBeNil)
- })
- })
- }
- func TestDataparseKeyValue(t *testing.T) {
- var (
- k = ""
- v = ""
- )
- convey.Convey("parseKeyValue", t, func(ctx convey.C) {
- _, _, err := parseKeyValue(k, v)
- ctx.Convey("Then err should be nil.timestamp,value should not be nil.", func(ctx convey.C) {
- ctx.So(err, convey.ShouldNotBeNil)
- })
- })
- }
|