short_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package service
  2. import (
  3. "testing"
  4. "time"
  5. "context"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestService_ShortCache(t *testing.T) {
  9. Convey("ShortCache", t, WithService(func(s *Service) {
  10. _, err := s.ShortCache(context.TODO(), "http://b23.tv/EbUzmu")
  11. So(err, ShouldBeNil)
  12. }))
  13. }
  14. func TestService_ShortByID(t *testing.T) {
  15. Convey("ShortByID", t, WithService(func(s *Service) {
  16. _, err := s.ShortByID(context.TODO(), 1)
  17. So(err, ShouldBeNil)
  18. }))
  19. }
  20. func TestService_Add(t *testing.T) {
  21. Convey("Add", t, WithService(func(s *Service) {
  22. _, err := s.Add(context.TODO(), 279, "http://www.baidu.com")
  23. So(err, ShouldBeNil)
  24. }))
  25. }
  26. func TestService_ShortUpdate(t *testing.T) {
  27. Convey("ShortUpdate", t, WithService(func(s *Service) {
  28. err := s.ShortUpdate(context.TODO(), 1, 279, "http://www.baidu.com")
  29. So(err, ShouldBeNil)
  30. }))
  31. }
  32. func TestService_ShortDel(t *testing.T) {
  33. Convey("ShortDel", t, WithService(func(s *Service) {
  34. err := s.ShortDel(context.TODO(), 1, 279, time.Now())
  35. So(err, ShouldBeNil)
  36. }))
  37. }
  38. func TestService_ShortCount(t *testing.T) {
  39. Convey("ShortCount", t, WithService(func(s *Service) {
  40. _, err := s.ShortCount(context.TODO(), 279, "http://www.baidu.com")
  41. So(err, ShouldBeNil)
  42. }))
  43. }
  44. func TestService_ShortLimit(t *testing.T) {
  45. Convey("ShortLimit", t, WithService(func(s *Service) {
  46. _, err := s.ShortLimit(context.TODO(), 1, 20, 279, "http://www.baidu.com")
  47. So(err, ShouldBeNil)
  48. }))
  49. }