service_test.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package article
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. article "go-common/app/interface/openplatform/article/model"
  7. "path/filepath"
  8. "testing"
  9. "time"
  10. "github.com/davecgh/go-spew/spew"
  11. . "github.com/smartystreets/goconvey/convey"
  12. "go-common/app/interface/main/creative/service"
  13. )
  14. var (
  15. s *Service
  16. )
  17. func init() {
  18. dir, _ := filepath.Abs("../../cmd/creative.toml")
  19. flag.Set("conf", dir)
  20. conf.Init()
  21. rpcdaos := service.NewRPCDaos(conf.Conf)
  22. s = New(conf.Conf, rpcdaos)
  23. time.Sleep(time.Second)
  24. }
  25. func WithService(f func(s *Service)) func() {
  26. return func() {
  27. Reset(func() {})
  28. f(s)
  29. }
  30. }
  31. func Test_Categories(t *testing.T) {
  32. var (
  33. c = context.TODO()
  34. err error
  35. res *article.Categories
  36. )
  37. Convey("Categories", t, WithService(func(s *Service) {
  38. res, err = s.Categories(c)
  39. So(err, ShouldBeNil)
  40. So(res, ShouldNotBeNil)
  41. }))
  42. }
  43. func Test_Article(t *testing.T) {
  44. var (
  45. c = context.TODO()
  46. err error
  47. size int
  48. loc string
  49. url = "https://i0.hdslb.com/bfs/article/8fce42a26ce128140d2ee7dec599a46cd1bccbb6.jpg"
  50. )
  51. Convey("Capture", t, WithService(func(s *Service) {
  52. loc, size, err = s.ArticleCapture(c, url)
  53. So(err, ShouldBeNil)
  54. spew.Dump(loc, size)
  55. }))
  56. }