hbase_test.go 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaohbaseMd5Key(t *testing.T) {
  8. convey.Convey("hbaseMd5Key", t, func(ctx convey.C) {
  9. var (
  10. aid = int64(1000)
  11. )
  12. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  13. p1 := hbaseMd5Key(aid)
  14. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  15. ctx.So(p1, convey.ShouldNotBeNil)
  16. })
  17. })
  18. })
  19. }
  20. func TestDaoBaseUpStat(t *testing.T) {
  21. convey.Convey("BaseUpStat", t, func(ctx convey.C) {
  22. var (
  23. c = context.Background()
  24. mid = int64(1000)
  25. date = "2018-06-01"
  26. )
  27. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  28. _, err := d.BaseUpStat(c, mid, date)
  29. ctx.Convey("Then err should be nil.stat should not be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }