db_test.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package main
  2. import (
  3. "os"
  4. "testing"
  5. "time"
  6. )
  7. // Test the db.ExpireScores
  8. func TestExpireScores(t *testing.T) {
  9. const testdb = ".space-test.db"
  10. db := DBData{}
  11. os.Remove(testdb)
  12. db.Open(testdb)
  13. defer db.Close()
  14. defer os.Remove(testdb)
  15. db.User = "Testing"
  16. // stuff score data into database
  17. // SaveScore(when int64, date int64, hand int, won int, score int)
  18. type TData struct {
  19. when int64
  20. date int64
  21. hand int
  22. won int
  23. score int
  24. }
  25. var data []TData = []TData{
  26. {when: 1645929178, date: 1645858800, hand: 1, won: 1, score: 1115},
  27. {1645929274, 1645858800, 2, 0, 955},
  28. {1645929373, 1645858800, 3, 0, 700},
  29. {1645931772, 1643698800, 1, 0, 660},
  30. {1645931841, 1643698800, 2, 0, 645},
  31. {1645931942, 1643698800, 3, 0, 695},
  32. {1645988653, 1645945200, 1, 0, 645},
  33. {1645988739, 1645945200, 2, 0, 750},
  34. {1645988820, 1645945200, 3, 0, 530},
  35. {1645993583, 1643785200, 1, 1, 1045},
  36. {1646004744, 1643785200, 2, 0, 700},
  37. {1646004825, 1643785200, 3, 0, 600},
  38. }
  39. for idx := range data {
  40. db.SaveScore(data[idx].when, data[idx].date, data[idx].hand,
  41. data[idx].won, data[idx].score)
  42. }
  43. // Data loaded .. call Expire!
  44. var next_month time.Time = time.Unix(1645929274, 0)
  45. next_month = next_month.AddDate(0, 1, 0)
  46. FirstOfMonthDate(&next_month)
  47. var next_unix int64 = next_month.Unix()
  48. db.ExpireScores(next_unix)
  49. // 1. Verify the scores table is empty.
  50. scores := db.GetScores(5)
  51. if len(scores) != 0 {
  52. t.Errorf("Scores not empty after ExpireScores got %d expected 0.\n", len(scores))
  53. }
  54. // 2. Verify the months table is correct.
  55. monthly := db.GetMonthlyScores(5)
  56. /*
  57. type MonthlyData struct {
  58. Date int64
  59. User string
  60. Days int
  61. Hands_Won int
  62. Score int
  63. }
  64. */
  65. if len(monthly) != 1 {
  66. t.Errorf("Monthly Scores: got %d, expected 1.\n", len(monthly))
  67. } else {
  68. var md MonthlyData = MonthlyData{1643698800, "Testing", 4, 2, 9040}
  69. if monthly[0].Date != md.Date {
  70. t.Errorf("Date %d, expected %d.\n", monthly[0].Date, md.Date)
  71. }
  72. if monthly[0].User != md.User {
  73. t.Errorf("User %s, expected %s.\n", monthly[0].User, md.User)
  74. }
  75. if monthly[0].Days != md.Days {
  76. t.Errorf("Days %d, expected %d.\n", monthly[0].Days, md.Days)
  77. }
  78. if monthly[0].Hands_Won != md.Hands_Won {
  79. t.Errorf("Hands %d, expected %d.\n", monthly[0].Hands_Won, md.Hands_Won)
  80. }
  81. if monthly[0].Score != md.Score {
  82. t.Errorf("Score %d, expected %d.\n", monthly[0].Score, md.Score)
  83. }
  84. }
  85. }