reply_test.go 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. model "go-common/app/interface/main/reply/model/reply"
  6. )
  7. func TestRepressEmotion(t *testing.T) {
  8. got := repressEmotion("this is a test[12345]message", "[12345]")
  9. shouldBe := "this is a test【12345】message"
  10. if got != shouldBe {
  11. t.Fatalf("repressEmotion Error, should be: %v, got: %v", shouldBe, got)
  12. }
  13. }
  14. func TestRepressEmotions(t *testing.T) {
  15. got := RepressEmotions("this [8888]is a test[12345]message[4657]", []string{"[12345]", "[8888]", "[4657]"})
  16. shouldBe := "this 【8888】is a test【12345】message【4657】"
  17. if got != shouldBe {
  18. t.Fatalf("RepressEmotions Error, should be: %v, got: %v", shouldBe, got)
  19. }
  20. }
  21. func TestGetReportReply(t *testing.T) {
  22. s := &Service{}
  23. s.ReportReply(context.Background(), 1, 1, 1, int8(2), 3, 4, true)
  24. }
  25. func TestGetReplyByIDs(t *testing.T) {
  26. s := &Service{}
  27. s.GetReplyByIDs(context.Background(), int64(1), int8(1), []int64{1, 2, 3, 4})
  28. }
  29. func TestCheckAssist(t *testing.T) {
  30. s := &Service{}
  31. s.CheckAssist(context.Background(), int64(1), 1)
  32. }
  33. func TestGetRelationMap(t *testing.T) {
  34. s := &Service{}
  35. s.GetRelationMap(context.Background(), 1, []int64{}, "")
  36. }
  37. func TestPing(t *testing.T) {
  38. s := &Service{}
  39. s.Ping(context.Background())
  40. }
  41. func TestClose(t *testing.T) {
  42. s := &Service{}
  43. s.Close()
  44. }
  45. func TestFillRootReplies(t *testing.T) {
  46. s := &Service{}
  47. s.FillRootReplies(context.Background(),
  48. []*model.Reply{},
  49. 22,
  50. "123",
  51. true,
  52. &model.Subject{})
  53. }
  54. func TestGetBlacklist(t *testing.T) {
  55. s := &Service{}
  56. s.GetBlacklist(context.Background(), 56)
  57. }
  58. func TestGetFansMap(t *testing.T) {
  59. s := &Service{}
  60. s.GetFansMap(context.Background(), []int64{}, 11, "")
  61. }
  62. func TestGetReplyCounts(t *testing.T) {
  63. s := &Service{}
  64. s.GetReplyCounts(context.Background(), []int64{}, int8(1))
  65. }
  66. func TestGetAssistMap(t *testing.T) {
  67. s := &Service{}
  68. s.GetAssistMap(context.Background(), 11, "")
  69. }
  70. func TestUserBlockStatus(t *testing.T) {
  71. s := &Service{}
  72. s.UserBlockStatus(context.Background(), 1854)
  73. }
  74. func TestGetRootReplyIDs(t *testing.T) {
  75. s := &Service{}
  76. s.GetRootReplyIDs(context.Background(), 11, int8(1), int8(1), 22, 65)
  77. }
  78. func TestAdminReportRecover(t *testing.T) {
  79. s := &Service{}
  80. s.AdminReportRecover(context.Background(), 11, 12, 13, int8(1), int8(1), "")
  81. }
  82. func TestReplyContent(t *testing.T) {
  83. s := &Service{}
  84. s.ReplyContent(context.Background(), 11, 11, int8(1))
  85. }