region_test.go 893 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package region
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/app-show/conf"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. func init() {
  12. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  13. flag.Set("conf", dir)
  14. conf.Init()
  15. s = New(conf.Conf)
  16. time.Sleep(time.Second)
  17. }
  18. func TestRegions(t *testing.T) {
  19. Convey("get Regions data", t, WithService(func(s *Service) {
  20. res, ver, err := s.Regions(context.TODO(), 0, 11111, "", "android", "", _initlanguage)
  21. So(res, ShouldNotBeEmpty)
  22. So(ver, ShouldNotBeEmpty)
  23. So(err, ShouldBeNil)
  24. }))
  25. }
  26. func TestRegionsList(t *testing.T) {
  27. Convey("get RegionsList data", t, WithService(func(s *Service) {
  28. res, ver, err := s.RegionsList(context.TODO(), 0, 11111, "", "android", "", _initlanguage, "region")
  29. So(res, ShouldNotBeEmpty)
  30. So(ver, ShouldNotBeEmpty)
  31. So(err, ShouldBeNil)
  32. }))
  33. }