string_test.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package util
  2. import (
  3. "fmt"
  4. "reflect"
  5. "testing"
  6. "github.com/stretchr/testify/assert"
  7. )
  8. func ExampleIntSliToSQLVarchars() {
  9. fmt.Println(IntSliToSQLVarchars([]int64{1, 2, 3}))
  10. // Output: 1,2,3
  11. }
  12. func ExampleStrToIntSli() {
  13. fmt.Println(StrToIntSli("1,2,3", ","))
  14. // Output: [1 2 3] <nil>
  15. }
  16. func ExampleStrSliToSQLVarchars() {
  17. fmt.Println(StrSliToSQLVarchars([]string{"default", "deleted", "modified"}))
  18. // Output: 'default','deleted','modified'
  19. }
  20. func TestStrSliToSQLVarchars(t *testing.T) {
  21. cases := []struct {
  22. s []string
  23. expected string
  24. }{
  25. {[]string{"foo", "bar"}, "'foo','bar'"},
  26. }
  27. for _, c := range cases {
  28. t.Run(fmt.Sprintf("inputStr(%v)", c.s), func(t *testing.T) {
  29. got := StrSliToSQLVarchars(c.s)
  30. if got != c.expected {
  31. t.Errorf("StrSliToSQLVarchars(%v) = %s, want: %s", c.s, got, c.expected)
  32. }
  33. })
  34. }
  35. }
  36. func TestStrToIntSli(t *testing.T) {
  37. cases := []struct {
  38. s string
  39. delimiter string
  40. expectedSli []int64
  41. expectedErr error
  42. }{
  43. {"1,2,3", ",", []int64{1, 2, 3}, nil},
  44. {"1 2 3", " ", []int64{1, 2, 3}, nil},
  45. {"1|2|3", "|", []int64{1, 2, 3}, nil},
  46. }
  47. for _, c := range cases {
  48. assert := assert.New(t)
  49. t.Run(fmt.Sprintf("inputString(%v) delimiter(%s)", c.s, c.delimiter), func(t *testing.T) {
  50. got, err := StrToIntSli(c.s, c.delimiter)
  51. assert.Equal(c.expectedSli, got, "")
  52. assert.Equal(c.expectedErr, err, "")
  53. })
  54. }
  55. }
  56. func TestIntSliToStr(t *testing.T) {
  57. cases := []struct {
  58. s []int64
  59. delimiter string
  60. expected string
  61. }{
  62. {[]int64{1, 2, 3}, ",", "1,2,3"},
  63. {[]int64{1, 2, 3}, " ", "1 2 3"},
  64. {[]int64{1, 2, 3}, "|", "1|2|3"},
  65. }
  66. for _, c := range cases {
  67. t.Run(fmt.Sprintf("inputSli(%v) delimiter(%s)", c.s, c.delimiter), func(t *testing.T) {
  68. got := intSliToStr(c.s, c.delimiter)
  69. if !reflect.DeepEqual(got, c.expected) {
  70. t.Errorf("IntSliToStr(%v, %s) = %s, want %s", c.s, c.delimiter, got, c.expected)
  71. }
  72. })
  73. }
  74. }
  75. func TestStripPrefix(t *testing.T) {
  76. cases := []struct {
  77. name string
  78. content string
  79. expectedOutput string
  80. }{
  81. {
  82. "need strip prefix",
  83. "回复 @画鸾凰 :我知道 但我的不是正版的 上不了工坊 只能要模型软件 格式是LPK的模型软件 你找一下看看 模型列表下面应该有在哪个文件夹里面 找到可以发我QQ1918882322 如果找不到就算吧",
  84. "我知道 但我的不是正版的 上不了工坊 只能要模型软件 格式是LPK的模型软件 你找一下看看 模型列表下面应该有在哪个文件夹里面 找到可以发我QQ1918882322 如果找不到就算吧",
  85. },
  86. {
  87. "empty reply body",
  88. "回复 @画鸾凰 :",
  89. "",
  90. },
  91. {
  92. "not need strip",
  93. "我知道 但我的不是正版的 上不了工坊 只能要模型软件 格式是LPK的模型软件 你找一下看看 模型列表下面应该有在哪个文件夹里面 找到可以发我QQ1918882322 如果找不到就算吧",
  94. "我知道 但我的不是正版的 上不了工坊 只能要模型软件 格式是LPK的模型软件 你找一下看看 模型列表下面应该有在哪个文件夹里面 找到可以发我QQ1918882322 如果找不到就算吧",
  95. },
  96. }
  97. for _, c := range cases {
  98. t.Run(c.name, func(t *testing.T) {
  99. actual := StripPrefix(c.content, "回复 @", ":")
  100. if actual != c.expectedOutput {
  101. t.Fatalf("Strip Prefix failed, expected %q \t\n got %q", c.expectedOutput, actual)
  102. }
  103. })
  104. }
  105. }
  106. func TestSameChar(t *testing.T) {
  107. cases := []struct {
  108. content string
  109. expectedResult bool
  110. }{
  111. {"~~~~~~~", true},
  112. {"666666666", true},
  113. {"666666666~~~", false},
  114. {"WWWWWWW", true},
  115. {"XXXxxx", true},
  116. }
  117. for _, c := range cases {
  118. t.Run(fmt.Sprintf("content(%s)", c.content), func(t *testing.T) {
  119. if rs := SameChar(c.content); rs != c.expectedResult {
  120. t.Errorf("SameChar(%s) = %v, want %v", c.content, rs, c.expectedResult)
  121. }
  122. })
  123. }
  124. }