guide_test.go 981 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package guide
  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 TestGuide(t *testing.T) {
  28. Convey("get guide data", t, WithService(func(s *Service) {
  29. res := s.Interest("iphone", "", time.Now())
  30. result, _ := json.Marshal(res)
  31. fmt.Printf("test guide (%v) \n", string(result))
  32. So(res, ShouldNotBeEmpty)
  33. }))
  34. }
  35. func Test_Guide2(t *testing.T) {
  36. Convey("Guide2", t, WithService(func(s *Service) {
  37. res := s.Interest2("ssss11", "ssss11", "ssss11", "ssss11", 1, time.Now())
  38. result, _ := json.Marshal(res)
  39. Printf("test guide (%v) \n", string(result))
  40. So(res, ShouldNotBeEmpty)
  41. }))
  42. }