dangbei_test.go 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package thirdp
  2. import (
  3. "fmt"
  4. "testing"
  5. "encoding/json"
  6. "go-common/app/interface/main/tv/dao/thirdp"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestService_PickDBeiPage(t *testing.T) {
  10. Convey("TestService_PickDBeiPage", t, WithService(func(s *Service) {
  11. data, err := s.PickDBeiPage(0, thirdp.DBeiUGC)
  12. So(err, ShouldBeNil)
  13. So(data, ShouldNotBeNil)
  14. fmt.Println(data)
  15. }))
  16. }
  17. func TestService_MangoSns(t *testing.T) {
  18. Convey("TestService_MangoSns", t, WithService(func(s *Service) {
  19. data, err := s.MangoSns(ctx, 7)
  20. So(err, ShouldBeNil)
  21. So(data, ShouldNotBeNil)
  22. str, _ := json.Marshal(data)
  23. fmt.Println(string(str))
  24. }))
  25. }
  26. func TestService_MangoArcs(t *testing.T) {
  27. Convey("TestService_MangoArcs", t, WithService(func(s *Service) {
  28. data, err := s.MangoArcs(ctx, 3)
  29. So(err, ShouldBeNil)
  30. So(data, ShouldNotBeNil)
  31. str, _ := json.Marshal(data)
  32. fmt.Println(string(str))
  33. }))
  34. }