db_test.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package main
  2. import (
  3. "os"
  4. "testing"
  5. )
  6. const DEBUG_DB bool = false
  7. // Test the db.ExpireScores
  8. func TestExpireScores(t *testing.T) {
  9. const testdb = ".space-test.db"
  10. db := DBData{}
  11. // Start with empty database
  12. os.Remove(testdb)
  13. db.Open(testdb)
  14. defer db.Close()
  15. if !DEBUG_DB {
  16. defer os.Remove(testdb)
  17. }
  18. db.User = "Testing"
  19. // stuff score data into database
  20. // SaveScore(when int64, date int64, hand int, won int, best int, score int)
  21. type TData struct {
  22. when YMD
  23. date YMD
  24. hand int
  25. won int
  26. run int
  27. score int
  28. }
  29. var data []TData = []TData{
  30. {20230101, 20230101, 1, 0, 8, 750},
  31. {20230101, 20230101, 2, 0, 8, 780},
  32. {20230101, 20230101, 3, 1, 5, 980},
  33. {20230101, 20230102, 1, 1, 9, 945},
  34. {20230101, 20230102, 2, 1, 6, 985},
  35. {20230101, 20230102, 3, 0, 10, 700},
  36. {20230101, 20230115, 1, 0, 7, 600},
  37. {20230101, 20230115, 2, 0, 7, 730},
  38. {20230101, 20230115, 3, 1, 5, 1000}}
  39. var score, best, won int
  40. for idx := range data {
  41. db.SaveScore(data[idx].when, data[idx].date, data[idx].hand,
  42. data[idx].won, data[idx].run, data[idx].score)
  43. // Calculate the score, best, and won
  44. score += data[idx].score
  45. if data[idx].run > best {
  46. best = data[idx].run
  47. }
  48. won += data[idx].won
  49. }
  50. // Data loaded .. call Expire!
  51. var next_month YMD = 20230202 //time.Time = time.Unix(1645929274, 0)
  52. next_month.SetDay(1)
  53. db.ExpireScores(next_month)
  54. // 1. Verify the scores table is empty.
  55. scores := db.GetScores(5)
  56. if len(scores) != 0 {
  57. t.Errorf("Scores not empty after ExpireScores got %d expected 0.\n", len(scores))
  58. }
  59. // 2. Verify the months table is correct.
  60. monthly := db.GetMonthlyScores(5)
  61. /*
  62. type MonthlyData struct {
  63. Date int64
  64. User string
  65. Days int
  66. Hands_Won int
  67. Best int
  68. Score int
  69. }
  70. */
  71. if len(monthly) != 1 {
  72. t.Errorf("Monthly Scores: got %d, expected 1.\n", len(monthly))
  73. } else {
  74. var md MonthlyData = MonthlyData{202301, "Testing", 3, won, best, score}
  75. if monthly[0].Date != md.Date {
  76. t.Errorf("Date %d, expected %d.\n", monthly[0].Date, md.Date)
  77. }
  78. if monthly[0].User != md.User {
  79. t.Errorf("User %s, expected %s.\n", monthly[0].User, md.User)
  80. }
  81. if monthly[0].Days != md.Days {
  82. t.Errorf("Days %d, expected %d.\n", monthly[0].Days, md.Days)
  83. }
  84. if monthly[0].Hands_Won != md.Hands_Won {
  85. t.Errorf("Hands %d, expected %d.\n", monthly[0].Hands_Won, md.Hands_Won)
  86. }
  87. if monthly[0].Best_Run != md.Best_Run {
  88. t.Errorf("Run %d, expected %d.\n", monthly[0].Best_Run, md.Best_Run)
  89. }
  90. if monthly[0].Score != md.Score {
  91. t.Errorf("Score %d, expected %d.\n", monthly[0].Score, md.Score)
  92. }
  93. }
  94. }