util_test.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. package util
  2. import (
  3. "fmt"
  4. "testing"
  5. "github.com/stretchr/testify/assert"
  6. )
  7. func TestConvertParseLocalUnix(t *testing.T) {
  8. type args struct {
  9. unix int64
  10. }
  11. tests := []struct {
  12. Name string
  13. Args args
  14. }{
  15. {
  16. Name: "08:00:00",
  17. Args: args{
  18. unix: 1727049600,
  19. },
  20. },
  21. {
  22. Name: "09:00:00",
  23. Args: args{
  24. unix: 1727053200,
  25. },
  26. },
  27. }
  28. for _, tt := range tests {
  29. t.Run(tt.Name, func(t *testing.T) {
  30. got, err := ConvertParseLocalUnix(tt.Name)
  31. assert.Nil(t, err)
  32. assert.Equal(t, tt.Args.unix, got)
  33. })
  34. }
  35. }
  36. func TestGetLastDayOfMonth(t *testing.T) {
  37. tests := []struct {
  38. month string
  39. got string
  40. }{
  41. {
  42. month: "2022-02",
  43. got: "2022-02-28",
  44. },
  45. {
  46. month: "2023-02",
  47. got: "2023-02-28",
  48. },
  49. {
  50. month: "2024-02",
  51. got: "2024-02-29",
  52. },
  53. {
  54. month: "2024-10",
  55. got: "2024-10-31",
  56. }, {
  57. month: "2024-09",
  58. got: "2024-09-30",
  59. },
  60. }
  61. for _, tt := range tests {
  62. t.Run(tt.month, func(t *testing.T) {
  63. got, err := GetLastDayOfMonth(tt.month)
  64. assert.Nil(t, err)
  65. assert.Equal(t, tt.got, got)
  66. })
  67. }
  68. }
  69. func TestGetMonthsInRange(t *testing.T) {
  70. tests := []struct {
  71. startMonth string
  72. endMonth string
  73. got []string
  74. }{
  75. {
  76. startMonth: "2023-01",
  77. endMonth: "2023-03",
  78. got: []string{
  79. "2023-01",
  80. "2023-02",
  81. "2023-03",
  82. },
  83. },
  84. {
  85. startMonth: "2023-01",
  86. endMonth: "2023-12",
  87. got: []string{
  88. "2023-01",
  89. "2023-02",
  90. "2023-03",
  91. "2023-04",
  92. "2023-05",
  93. "2023-06",
  94. "2023-07",
  95. "2023-08",
  96. "2023-09",
  97. "2023-10",
  98. "2023-11",
  99. "2023-12",
  100. },
  101. },
  102. {
  103. startMonth: "2023-01",
  104. endMonth: "2023-01",
  105. got: []string{
  106. "2023-01",
  107. },
  108. },
  109. {
  110. startMonth: "2023-01",
  111. endMonth: "2023-01",
  112. got: []string{
  113. "2023-01",
  114. },
  115. },
  116. }
  117. for _, tt := range tests {
  118. t.Run(tt.startMonth, func(t *testing.T) {
  119. got, err := GetMonthsInRange(tt.startMonth, tt.endMonth)
  120. assert.Nil(t, err)
  121. assert.Equal(t, tt.got, got)
  122. })
  123. }
  124. }
  125. func TestRoundToTwoDecimals(t *testing.T) {
  126. tests := []struct {
  127. exp float64
  128. got float64
  129. }{
  130. {
  131. exp: 123.456,
  132. got: 123.46,
  133. },
  134. {
  135. exp: 123.455,
  136. got: 123.46,
  137. },
  138. {
  139. exp: 123.444,
  140. got: 123.44,
  141. },
  142. {
  143. exp: 123.4551,
  144. got: 123.46,
  145. },
  146. {
  147. exp: 123.4449,
  148. got: 123.44,
  149. },
  150. {
  151. exp: 0,
  152. got: 0,
  153. },
  154. {
  155. exp: 0.2,
  156. got: 0.2,
  157. },
  158. }
  159. for _, tt := range tests {
  160. t.Run("TestRoundToTwoDecimals", func(t *testing.T) {
  161. got := RoundToTwoDecimals(tt.exp)
  162. assert.Equal(t, tt.got, got)
  163. })
  164. }
  165. }
  166. func TestGet21DayPeriods(t *testing.T) {
  167. tests := []struct {
  168. startDay string
  169. endDay string
  170. got struct {
  171. DateRange [][]string
  172. Day int32
  173. MiddleDayString []string
  174. }
  175. }{
  176. {
  177. startDay: "2023-01-01",
  178. endDay: "2023-01-02",
  179. got: struct {
  180. DateRange [][]string
  181. Day int32
  182. MiddleDayString []string
  183. }{
  184. DateRange: [][]string{
  185. {"2022-12-13", "2023-01-02"},
  186. },
  187. Day: 11,
  188. MiddleDayString: []string{"2022-12-23"},
  189. },
  190. },
  191. {
  192. startDay: "2024-10-23",
  193. endDay: "2024-10-24",
  194. got: struct {
  195. DateRange [][]string
  196. Day int32
  197. MiddleDayString []string
  198. }{
  199. DateRange: [][]string{
  200. {"2024-10-04", "2024-10-24"},
  201. },
  202. Day: 11,
  203. MiddleDayString: []string{"2024-10-14"},
  204. },
  205. },
  206. {
  207. startDay: "2024-06-22",
  208. endDay: "2024-10-24",
  209. got: struct {
  210. DateRange [][]string
  211. Day int32
  212. MiddleDayString []string
  213. }{
  214. DateRange: [][]string{
  215. {"2024-06-21", "2024-07-11"},
  216. {"2024-07-12", "2024-08-01"},
  217. {"2024-08-02", "2024-08-22"},
  218. {"2024-08-23", "2024-09-12"},
  219. {"2024-09-13", "2024-10-03"},
  220. {"2024-10-04", "2024-10-24"},
  221. }, Day: 11,
  222. MiddleDayString: []string{"2024-07-01", "2024-07-22", "2024-08-12", "2024-09-02", "2024-09-23", "2024-10-14"},
  223. },
  224. },
  225. }
  226. for _, tt := range tests {
  227. t.Run(tt.startDay, func(t *testing.T) {
  228. got, err := Get21DayPeriods(tt.startDay, tt.endDay)
  229. assert.Nil(t, err)
  230. assert.Equal(t, tt.got.DateRange, got)
  231. for i, v := range tt.got.DateRange {
  232. middleDate, err := GetRangeDayMiddleDay(v, tt.got.Day)
  233. assert.Nil(t, err)
  234. assert.Equal(t, tt.got.MiddleDayString[i], middleDate)
  235. }
  236. })
  237. }
  238. }
  239. func TestGetRangeDayByDays(t *testing.T) {
  240. tests := []struct {
  241. startDay string
  242. endDay string
  243. days int32
  244. got [][]string
  245. }{
  246. {
  247. startDay: "2024-10-23",
  248. endDay: "2024-10-24",
  249. days: 5,
  250. got: [][]string{
  251. {"2024-10-23", "2024-10-24"},
  252. },
  253. },
  254. {
  255. startDay: "2024-10-23",
  256. endDay: "2024-10-24",
  257. days: 1,
  258. got: [][]string{
  259. {"2024-10-23", "2024-10-23"},
  260. {"2024-10-24", "2024-10-24"},
  261. },
  262. },
  263. {
  264. startDay: "2024-10-01",
  265. endDay: "2024-10-31",
  266. days: 7,
  267. got: [][]string{
  268. {"2024-10-01", "2024-10-07"},
  269. {"2024-10-08", "2024-10-14"},
  270. {"2024-10-15", "2024-10-21"},
  271. {"2024-10-22", "2024-10-28"},
  272. {"2024-10-29", "2024-10-31"},
  273. },
  274. },
  275. {
  276. startDay: "2024-10-01",
  277. endDay: "2024-10-31",
  278. days: 5,
  279. got: [][]string{
  280. {"2024-10-01", "2024-10-05"},
  281. {"2024-10-06", "2024-10-10"},
  282. {"2024-10-11", "2024-10-15"},
  283. {"2024-10-16", "2024-10-20"},
  284. {"2024-10-21", "2024-10-25"},
  285. {"2024-10-26", "2024-10-30"},
  286. {"2024-10-31", "2024-10-31"},
  287. },
  288. },
  289. }
  290. for _, tt := range tests {
  291. t.Run(tt.startDay, func(t *testing.T) {
  292. got, err := GetRangeDayByDays(tt.startDay, tt.endDay, tt.days)
  293. assert.Nil(t, err)
  294. assert.Equal(t, tt.got, got)
  295. })
  296. }
  297. }
  298. func TestConfidenceInterval2(t *testing.T) {
  299. tests := []struct {
  300. p float64
  301. total float64
  302. min float64
  303. max float64
  304. }{
  305. {
  306. p: 0.38,
  307. total: 114,
  308. min: 29,
  309. max: 47,
  310. },
  311. {
  312. p: 0.49,
  313. total: 142,
  314. min: 40,
  315. max: 58,
  316. },
  317. {
  318. p: 0.41,
  319. total: 125,
  320. min: 32,
  321. max: 50,
  322. },
  323. {
  324. p: 0,
  325. total: 0,
  326. min: 0,
  327. max: 0,
  328. },
  329. }
  330. for _, tt := range tests {
  331. min, max := ConfidenceInterval2(tt.p, tt.total)
  332. assert.Equal(t, tt.min, min)
  333. assert.Equal(t, tt.max, max)
  334. }
  335. }
  336. func TestRemoveDuplicates(t *testing.T) {
  337. tests := []struct {
  338. actual []string
  339. got []string
  340. }{
  341. {
  342. actual: []string{
  343. "1", "1",
  344. },
  345. got: []string{
  346. "1",
  347. },
  348. },
  349. {
  350. actual: []string{
  351. "1", "1", "2",
  352. },
  353. got: []string{
  354. "1", "2",
  355. },
  356. },
  357. {
  358. actual: []string{
  359. "1",
  360. },
  361. got: []string{
  362. "1",
  363. },
  364. },
  365. {
  366. actual: []string{},
  367. got: []string{},
  368. },
  369. }
  370. for _, tt := range tests {
  371. got := RemoveDuplicates(tt.actual)
  372. assert.Equal(t, tt.got, got)
  373. }
  374. }
  375. func TestDaysBetween(t *testing.T) {
  376. tests := []struct {
  377. actual []int64
  378. got int64
  379. }{
  380. {
  381. actual: []int64{
  382. 1730772000,
  383. 1730908800,
  384. },
  385. got: 2,
  386. },
  387. }
  388. for _, v := range tests {
  389. got := DaysBetween(v.actual[0], v.actual[1])
  390. assert.Equal(t, got, v.got)
  391. }
  392. }
  393. func Test_demo(t *testing.T) {
  394. ids := make([]int64, 0)
  395. defer func() {
  396. fmt.Println(ids)
  397. }()
  398. for i := 0; i < 10; i++ {
  399. ids = append(ids, int64(i))
  400. }
  401. for _, v := range ids {
  402. fmt.Println("===v==", v)
  403. }
  404. }