You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
package bplus |
|
|
|
import ( |
|
"context" |
|
"testing" |
|
|
|
"go-common/app/interface/main/app-interface/model" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
// TestKeyContributeAttr dao ut. |
|
func TestKeyContributeAttr(t *testing.T) { |
|
Convey("keyContributeAttr", t, func(ctx C) { |
|
key := keyContributeAttr(int64(123456)) |
|
ctx.Convey("key should not be equal to 123456", func(ctx C) { |
|
ctx.So(key, ShouldEqual, "cba_123456") |
|
}) |
|
}) |
|
} |
|
|
|
// TestKeyContribute dao ut. |
|
func TestKeyContribute(t *testing.T) { |
|
Convey("keyContribute", t, func(ctx C) { |
|
key := keyContribute(int64(123456)) |
|
ctx.Convey("key should not be equal to 123456", func(ctx C) { |
|
ctx.So(key, ShouldEqual, "cb_123456") |
|
}) |
|
}) |
|
} |
|
|
|
// TestRangeContributeCache dao ut. |
|
func TestRangeContributeCache(t *testing.T) { |
|
Convey("RangeContributeCache", t, func(ctx C) { |
|
_, err := dao.RangeContributeCache(context.Background(), 123456, 1, 20) |
|
ctx.Convey("Then err should not be nil.", func(ctx C) { |
|
ctx.So(err, ShouldNotBeNil) |
|
}) |
|
}) |
|
} |
|
|
|
// TestRangeContributionCache dao ut. |
|
func TestRangeContributionCache(t *testing.T) { |
|
Convey("RangeContributionCache", t, func(ctx C) { |
|
var cursor = &model.Cursor{} |
|
_, err := dao.RangeContributionCache(context.Background(), 123456, cursor) |
|
ctx.Convey("Then err should not be nil.", func(ctx C) { |
|
ctx.So(err, ShouldNotBeNil) |
|
}) |
|
}) |
|
}
|
|
|