favorite_test.go 886 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package service
  2. // import (
  3. // "context"
  4. // "testing"
  5. // . "github.com/smartystreets/goconvey/convey"
  6. // )
  7. // func Test_Favorite(t *testing.T) {
  8. // var (
  9. // aid = int64(9999999)
  10. // mid = int64(88888929)
  11. // fid = int64(0)
  12. // pn = 1
  13. // ps = 10
  14. // )
  15. // Convey("AddFavorite", t, WithService(func(s *Service) {
  16. // err := s.AddFavorite(context.TODO(), mid, aid, fid, "")
  17. // // 11201 means you have added it before.
  18. // So(err, ShouldBeNil)
  19. // Convey("Favorites", func() {
  20. // res, page, err := s.Favs(context.TODO(), mid, fid, pn, ps, "")
  21. // So(err, ShouldBeNil)
  22. // So(res, ShouldNotBeEmpty)
  23. // So(page, ShouldNotBeEmpty)
  24. // // t.Logf("result: %+v", res)
  25. // // t.Logf("page: %+v", page)
  26. // Convey("DelFavorite", func() {
  27. // err := s.DelFavorite(context.TODO(), mid, aid, fid, "")
  28. // So(err, ShouldBeNil)
  29. // })
  30. // })
  31. // }))
  32. // }