region_test.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package region
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-show/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func ctx() context.Context {
  15. return context.Background()
  16. }
  17. func init() {
  18. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  19. flag.Set("conf", dir)
  20. conf.Init()
  21. d = New(conf.Conf)
  22. time.Sleep(time.Second)
  23. }
  24. func TestAll(t *testing.T) {
  25. Convey("All", t, func() {
  26. res, err := d.All(ctx())
  27. So(res, ShouldNotBeEmpty)
  28. So(err, ShouldBeNil)
  29. })
  30. }
  31. func TestRegionPlat(t *testing.T) {
  32. Convey("RegionPlat", t, func() {
  33. res, err := d.RegionPlat(ctx())
  34. So(res, ShouldNotBeEmpty)
  35. So(err, ShouldBeNil)
  36. })
  37. }
  38. func TestAllList(t *testing.T) {
  39. Convey("AllList", t, func() {
  40. res, err := d.AllList(ctx())
  41. So(res, ShouldNotBeEmpty)
  42. So(err, ShouldBeNil)
  43. })
  44. }
  45. func TestLimit(t *testing.T) {
  46. Convey("Limit", t, func() {
  47. res, err := d.Limit(ctx())
  48. So(res, ShouldNotBeEmpty)
  49. So(err, ShouldBeNil)
  50. })
  51. }
  52. func TestConfig(t *testing.T) {
  53. Convey("Config", t, func() {
  54. res, err := d.Config(ctx())
  55. So(res, ShouldNotBeEmpty)
  56. So(err, ShouldBeNil)
  57. })
  58. }
  59. func TestClose(t *testing.T) {
  60. Convey("Close", t, func() {
  61. d.Close()
  62. })
  63. }