service_test.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package appeal
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "path/filepath"
  7. "testing"
  8. "time"
  9. "go-common/app/interface/main/creative/conf"
  10. "go-common/app/interface/main/creative/model/appeal"
  11. "go-common/app/interface/main/creative/service"
  12. . "github.com/smartystreets/goconvey/convey"
  13. )
  14. var (
  15. s *Service
  16. )
  17. func init() {
  18. dir, _ := filepath.Abs("../../cmd/creative.toml")
  19. flag.Set("conf", dir)
  20. conf.Init()
  21. rpcdaos := service.NewRPCDaos(conf.Conf)
  22. s = New(conf.Conf, rpcdaos)
  23. time.Sleep(time.Second)
  24. }
  25. func WithService(f func(s *Service)) func() {
  26. return func() {
  27. Reset(func() {})
  28. f(s)
  29. }
  30. }
  31. var (
  32. mid = int64(27515256)
  33. cid = int64(123)
  34. aid = int64(10109136)
  35. tp = "open"
  36. ip = "127.0.0.1"
  37. c = context.TODO()
  38. )
  39. func Test_List(t *testing.T) {
  40. Convey("List", t, WithService(func(s *Service) {
  41. all, open, closed, res, err := s.List(c, mid, 1, 10, tp, ip)
  42. So(err, ShouldBeNil)
  43. fmt.Println(all, open, closed, res)
  44. }))
  45. }
  46. func Test_Detail(t *testing.T) {
  47. Convey("Detail", t, WithService(func(s *Service) {
  48. res, err := s.Detail(c, mid, cid, ip)
  49. So(err, ShouldBeNil)
  50. fmt.Println(res)
  51. }))
  52. }
  53. func Test_State(t *testing.T) {
  54. Convey("State", t, WithService(func(s *Service) {
  55. err := s.State(c, mid, cid, 2, ip)
  56. So(err, ShouldBeNil)
  57. }))
  58. }
  59. func Test_Add(t *testing.T) {
  60. Convey("Add", t, WithService(func(s *Service) {
  61. qq := "2322"
  62. phone := "122333"
  63. email := "ddsds@qq.com"
  64. desc := "dedsds"
  65. attachments := "sddds"
  66. ap := &appeal.BusinessAppeal{}
  67. res, err := s.Add(c, mid, aid, qq, phone, email, desc, attachments, ip, ap)
  68. So(err, ShouldBeNil)
  69. fmt.Println(res)
  70. }))
  71. }
  72. func Test_Reply(t *testing.T) {
  73. Convey("Reply", t, WithService(func(s *Service) {
  74. event := int64(2)
  75. content := "122333"
  76. attachments := "sddds"
  77. err := s.Reply(c, mid, cid, event, content, attachments, ip)
  78. So(err, ShouldBeNil)
  79. }))
  80. }
  81. func Test_PhoneEmail(t *testing.T) {
  82. Convey("PhoneEmail", t, WithService(func(s *Service) {
  83. ck := ""
  84. res, err := s.PhoneEmail(c, ck, ip)
  85. So(err, ShouldBeNil)
  86. fmt.Println(res)
  87. }))
  88. }
  89. func Test_Star(t *testing.T) {
  90. Convey("Star", t, WithService(func(s *Service) {
  91. star := int64(2)
  92. err := s.Star(c, mid, cid, star, ip)
  93. So(err, ShouldBeNil)
  94. }))
  95. }