domain_test.go 682 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package domain
  2. import (
  3. "encoding/json"
  4. "flag"
  5. "fmt"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/app-resource/conf"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var (
  13. s *Service
  14. )
  15. func WithService(f func(s *Service)) func() {
  16. return func() {
  17. f(s)
  18. }
  19. }
  20. func init() {
  21. dir, _ := filepath.Abs("../../cmd/app-resource-test.toml")
  22. flag.Set("conf", dir)
  23. conf.Init()
  24. s = New(conf.Conf)
  25. time.Sleep(time.Second)
  26. }
  27. func TestDomain(t *testing.T) {
  28. Convey("get Domain data", t, WithService(func(s *Service) {
  29. res := s.Domain()
  30. result, _ := json.Marshal(res)
  31. fmt.Printf("test Domain (%v) \n", string(result))
  32. So(res, ShouldNotBeEmpty)
  33. }))
  34. }