sobot_test.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package sobot
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/service/main/workflow/model/sobot"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSobotSobotTicketInfo(t *testing.T) {
  9. var (
  10. c = context.Background()
  11. ticketID = int32(0)
  12. )
  13. convey.Convey("SobotTicketInfo", t, func(ctx convey.C) {
  14. res, err := d.SobotTicketInfo(c, ticketID)
  15. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  16. ctx.So(err, convey.ShouldBeNil)
  17. ctx.So(res, convey.ShouldNotBeNil)
  18. })
  19. })
  20. }
  21. func TestSobotSobotAddTicket(t *testing.T) {
  22. var (
  23. c = context.Background()
  24. tp = &sobot.TicketParam{
  25. TicketTitle: "我是202工单",
  26. TicketID: 202,
  27. TicketContent: "233333333",
  28. CustomerEmail: "1107691251@qq.com",
  29. }
  30. )
  31. convey.Convey("SobotAddTicket", t, func(ctx convey.C) {
  32. err := d.SobotAddTicket(c, tp)
  33. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  34. ctx.So(err.Error(), convey.ShouldEqual, "2000101")
  35. })
  36. })
  37. }
  38. func TestSobotSobotAddReply(t *testing.T) {
  39. var (
  40. c = context.Background()
  41. rp = &sobot.ReplyParam{
  42. TicketID: 202,
  43. ReplyContent: "reply_test",
  44. CustomerEmail: "1107691251@qq.com",
  45. StartType: 1,
  46. ReplyType: 1,
  47. }
  48. )
  49. convey.Convey("SobotAddReply", t, func(ctx convey.C) {
  50. err := d.SobotAddReply(c, rp)
  51. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  52. ctx.So(err, convey.ShouldBeNil)
  53. })
  54. })
  55. }
  56. func TestSobotSobotTicketModify(t *testing.T) {
  57. var (
  58. c = context.Background()
  59. tp = &sobot.TicketParam{
  60. TicketID: 202,
  61. CustomerEmail: "1107691251@qq.com",
  62. StartType: 1,
  63. }
  64. )
  65. convey.Convey("SobotTicketModify", t, func(ctx convey.C) {
  66. err := d.SobotTicketModify(c, tp)
  67. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  68. ctx.So(err, convey.ShouldBeNil)
  69. })
  70. })
  71. }