dm_history_test.go 707 B

1234567891011121314151617181920212223242526272829
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSearchDMHisIndex(t *testing.T) {
  9. Convey("test dm history date index", t, func() {
  10. res, err := svr.SearchDMHisIndex(context.TODO(), 1, 10109227, "2018-04")
  11. So(err, ShouldBeNil)
  12. So(res, ShouldNotBeEmpty)
  13. t.Log(res)
  14. })
  15. }
  16. func TestSearchDMHistory(t *testing.T) {
  17. Convey("", t, func() {
  18. date, _ := time.Parse("2006-01-02", "2018-04-24")
  19. // convert 2006-01-02-->2016-01-02 23:59:59
  20. tm := time.Date(date.Year(), date.Month(), date.Day(), 23, 59, 59, 0, time.Local)
  21. xml, err := svr.SearchDMHistory(context.TODO(), 1, 10109227, tm.Unix())
  22. So(err, ShouldBeNil)
  23. t.Log(xml)
  24. })
  25. }