point_test.go 914 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package point
  2. import (
  3. "context"
  4. "flag"
  5. "testing"
  6. "go-common/app/interface/main/account/conf"
  7. "go-common/app/service/main/point/model"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. s *Service
  12. )
  13. func init() {
  14. flag.Set("conf", "../../cmd/account-interface-example.toml")
  15. var err error
  16. if err = conf.Init(); err != nil {
  17. panic(err)
  18. }
  19. s = New(conf.Conf)
  20. }
  21. // go test -test.v -test.run TestServicePointInfo
  22. func TestServicePointInfo(t *testing.T) {
  23. Convey("TestServicePointInfo", t, func() {
  24. res, err := s.PointInfo(context.TODO(), 110000262)
  25. t.Logf("info: %v", res)
  26. So(err, ShouldBeNil)
  27. })
  28. }
  29. // go test -test.v -test.run TestServicePointPage
  30. func TestServicePointPage(t *testing.T) {
  31. Convey("TestServicePointPage", t, func() {
  32. res, err := s.PointPage(context.TODO(), &model.ArgRPCPointHistory{Mid: 2089809, PN: 1, PS: 10})
  33. t.Logf("res: %v", res)
  34. So(err, ShouldBeNil)
  35. })
  36. }