dao_test.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package favorite
  2. import (
  3. "context"
  4. "encoding/json"
  5. "flag"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/tv/conf"
  10. "fmt"
  11. . "github.com/smartystreets/goconvey/convey"
  12. )
  13. var d *Dao
  14. func init() {
  15. dir, _ := filepath.Abs("../../cmd/tv-interface.toml")
  16. flag.Set("conf", dir)
  17. conf.Init()
  18. d = New(conf.Conf)
  19. time.Sleep(5 * time.Second)
  20. }
  21. func WithDao(f func(d *Dao)) func() {
  22. return func() {
  23. Reset(func() {})
  24. f(d)
  25. }
  26. }
  27. func TestDao_FavoriteV3(t *testing.T) {
  28. Convey("TestDao_FavoriteV3", t, func() {
  29. res, err := d.FavoriteV3(context.Background(), 88894921, 1)
  30. So(err, ShouldBeNil)
  31. data, _ := json.Marshal(res)
  32. Println(string(data))
  33. })
  34. }
  35. func TestDao_FavAdd(t *testing.T) {
  36. Convey("TestDao_FavAdd", t, func() {
  37. err := d.FavAdd(context.Background(), 88894921, 10098813)
  38. So(err, ShouldBeNil)
  39. err = d.FavAdd(context.Background(), 88894921, 28417042)
  40. So(err, ShouldBeNil)
  41. })
  42. }
  43. func TestDao_FavDel(t *testing.T) {
  44. Convey("TestDao_FavDel", t, func() {
  45. err := d.FavDel(context.Background(), 88894921, 28417042)
  46. So(err, ShouldBeNil)
  47. })
  48. }
  49. func TestDao_InDefault(t *testing.T) {
  50. Convey("TestDao_InDefault", t, WithDao(func(d *Dao) {
  51. var mid = int64(27515418)
  52. res, err := d.FavoriteV3(context.Background(), mid, 1)
  53. So(err, ShouldBeNil)
  54. if res == nil || len(res.List) == 0 {
  55. fmt.Println("empty Fav")
  56. return
  57. }
  58. exist, err2 := d.InDefault(context.Background(), mid, res.List[0].Oid)
  59. So(err2, ShouldBeNil)
  60. So(exist, ShouldBeTrue)
  61. exist, err2 = d.InDefault(context.Background(), mid, 888888888888)
  62. So(err2, ShouldBeNil)
  63. So(exist, ShouldBeFalse)
  64. }))
  65. }