shorturl_test.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package dao
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. model "go-common/app/interface/main/shorturl/model"
  6. xtime "go-common/library/time"
  7. "testing"
  8. "time"
  9. )
  10. func TestDao_Short(t *testing.T) {
  11. Convey("Short", t, WithDao(func(d *Dao) {
  12. _, err := d.Short(context.TODO(), "http://b23.tv/EbUzmu")
  13. So(err, ShouldBeNil)
  14. }))
  15. }
  16. func TestDao_ShortbyID(t *testing.T) {
  17. Convey("ShortbyID", t, WithDao(func(d *Dao) {
  18. _, err := d.ShortbyID(context.TODO(), 1)
  19. So(err, ShouldBeNil)
  20. }))
  21. }
  22. func TestDao_AllShorts(t *testing.T) {
  23. Convey("AllShorts", t, WithDao(func(d *Dao) {
  24. _, err := d.AllShorts(context.TODO())
  25. So(err, ShouldBeNil)
  26. }))
  27. }
  28. func TestDao_ShortCount(t *testing.T) {
  29. Convey("ShortCount", t, WithDao(func(d *Dao) {
  30. _, err := d.ShortCount(context.TODO(), 1, "http://www.baidu.com")
  31. So(err, ShouldBeNil)
  32. }))
  33. }
  34. func TestDao_InShort(t *testing.T) {
  35. Convey("InShort", t, WithDao(func(d *Dao) {
  36. su := &model.ShortUrl{
  37. Long: "http://www.baidu.com",
  38. Mid: 279,
  39. State: model.StateNormal,
  40. CTime: xtime.Time(time.Now().Unix()),
  41. }
  42. _, err := d.InShort(context.TODO(), su)
  43. So(err, ShouldBeNil)
  44. }))
  45. }
  46. func TestDao_ShortUp(t *testing.T) {
  47. Convey("ShortUp", t, WithDao(func(d *Dao) {
  48. _, err := d.ShortUp(context.TODO(), 1, 20, "http://www.baidu.com")
  49. So(err, ShouldBeNil)
  50. }))
  51. }
  52. func TestDao_UpdateState(t *testing.T) {
  53. Convey("UpdateState", t, WithDao(func(d *Dao) {
  54. _, err := d.UpdateState(context.TODO(), 1, 279, 0)
  55. So(err, ShouldBeNil)
  56. }))
  57. }
  58. func TestDao_ShortLimit(t *testing.T) {
  59. Convey("ShortLimit", t, WithDao(func(d *Dao) {
  60. _, err := d.ShortLimit(context.TODO(), 1, 20, 279, "http://www.baidu.com")
  61. So(err, ShouldBeNil)
  62. }))
  63. }