瀏覽代碼

Fixed ExpireScores, wrote test for ExpireScores.

Fixed Hand per day.
Steve Thielemann 3 年之前
父節點
當前提交
9d24559fcd
共有 3 個文件被更改,包括 107 次插入7 次删除
  1. 7 5
      db.go
  2. 97 0
      db_test.go
  3. 3 2
      playcards.go

+ 7 - 5
db.go

@@ -243,14 +243,13 @@ func (db *DBData) ExpireScores(month_first_unix int64) {
 
 	l := db.Lock(5)
 
-	if l {
-		// log.Println("Locked")
-		defer db.Unlock()
-	} else {
+	if !l {
 		log.Println("Lock failed")
 		return
 	}
 
+	defer db.Unlock()
+
 	var Monthly map[MonthUser]MonthStats = make(map[MonthUser]MonthStats)
 	rows, err := db.DB.Query("SELECT date, username, SUM(score), SUM(won) FROM scores WHERE date < ? GROUP BY date, username ORDER BY date, SUM(score) DESC;",
 		month_first_unix)
@@ -288,6 +287,8 @@ func (db *DBData) ExpireScores(month_first_unix int64) {
 		}
 	}
 
+	rows.Close()
+
 	if len(Monthly) == 0 {
 		// Nothing to do
 		return
@@ -305,7 +306,7 @@ func (db *DBData) ExpireScores(month_first_unix int64) {
 		month_first_unix)
 
 	for mu, ms := range Monthly {
-		_, err := db.DB.Exec("INSERT INTO monthly(month, username, days, hands_won, score) VALUES(?,?,?,?,?);",
+		_, err := tx.Exec("INSERT INTO monthly(month, username, days, hands_won, score) VALUES(?,?,?,?,?);",
 			mu.Date, mu.Username, ms.Days, ms.Hands_Won, ms.Score)
 		if err != nil {
 			log.Println("ExpireScores Insert", err)
@@ -319,6 +320,7 @@ func (db *DBData) ExpireScores(month_first_unix int64) {
 	if err != nil {
 		log.Println("ExpireScores Commit", err)
 	}
+
 }
 
 type ScoresDetails struct {

+ 97 - 0
db_test.go

@@ -0,0 +1,97 @@
+package main
+
+import (
+	"os"
+	"testing"
+	"time"
+)
+
+// Test the db.ExpireScores
+func TestExpireScores(t *testing.T) {
+	const testdb = ".space-test.db"
+
+	db := DBData{}
+	os.Remove(testdb)
+	db.Open(testdb)
+	defer db.Close()
+	defer os.Remove(testdb)
+
+	db.User = "Testing"
+	// stuff score data into database
+	// SaveScore(when int64, date int64, hand int, won int, score int)
+	type TData struct {
+		when  int64
+		date  int64
+		hand  int
+		won   int
+		score int
+	}
+
+	var data []TData = []TData{
+		{when: 1645929178, date: 1645858800, hand: 1, won: 1, score: 1115},
+		{1645929274, 1645858800, 2, 0, 955},
+		{1645929373, 1645858800, 3, 0, 700},
+		{1645931772, 1643698800, 1, 0, 660},
+		{1645931841, 1643698800, 2, 0, 645},
+		{1645931942, 1643698800, 3, 0, 695},
+		{1645988653, 1645945200, 1, 0, 645},
+		{1645988739, 1645945200, 2, 0, 750},
+		{1645988820, 1645945200, 3, 0, 530},
+		{1645993583, 1643785200, 1, 1, 1045},
+		{1646004744, 1643785200, 2, 0, 700},
+		{1646004825, 1643785200, 3, 0, 600},
+	}
+	for idx := range data {
+		db.SaveScore(data[idx].when, data[idx].date, data[idx].hand,
+			data[idx].won, data[idx].score)
+	}
+
+	// Data loaded .. call Expire!
+	var next_month time.Time = time.Unix(1645929274, 0)
+	next_month = next_month.AddDate(0, 1, 0)
+	FirstOfMonthDate(&next_month)
+
+	var next_unix int64 = next_month.Unix()
+	db.ExpireScores(next_unix)
+
+	// 1. Verify the scores table is empty.
+	scores := db.GetScores(5)
+
+	if len(scores) != 0 {
+		t.Errorf("Scores not empty after ExpireScores got %d expected 0.\n", len(scores))
+	}
+	// 2. Verify the months table is correct.
+	monthly := db.GetMonthlyScores(5)
+
+	/*
+		type MonthlyData struct {
+			Date      int64
+			User      string
+			Days      int
+			Hands_Won int
+			Score     int
+		}
+	*/
+	if len(monthly) != 1 {
+		t.Errorf("Monthly Scores: got %d, expected 1.\n", len(monthly))
+	} else {
+		var md MonthlyData = MonthlyData{1643698800, "Testing", 4, 2, 9040}
+
+		if monthly[0].Date != md.Date {
+			t.Errorf("Date %d, expected %d.\n", monthly[0].Date, md.Date)
+		}
+		if monthly[0].User != md.User {
+			t.Errorf("User %s, expected %s.\n", monthly[0].User, md.User)
+		}
+		if monthly[0].Days != md.Days {
+			t.Errorf("Days %d, expected %d.\n", monthly[0].Days, md.Days)
+		}
+		if monthly[0].Hands_Won != md.Hands_Won {
+			t.Errorf("Hands %d, expected %d.\n", monthly[0].Hands_Won, md.Hands_Won)
+		}
+		if monthly[0].Score != md.Score {
+			t.Errorf("Score %d, expected %d.\n", monthly[0].Score, md.Score)
+		}
+	}
+
+}

+ 3 - 2
playcards.go

@@ -148,7 +148,6 @@ func (pc *PlayCards) Init() {
 	}
 
 	pc.Hand = 0
-	pc.Total_hands = 0
 
 	// spaceAceTriPeaks = make_tripeaks();
 	{
@@ -578,6 +577,8 @@ CALENDAR_UPDATE:
 		if played >= month_t {
 			// Ok, it is within the range
 			var played_day int = time.Unix(played, 0).Day()
+			log.Printf("update: month_unix %d, played %d, hands %d (total %d)\n",
+				month_t, played_day, hands, pc.Total_hands)
 			if hands < pc.Total_hands {
 				pc.Calendar_day_status[played_day-1] = 1
 			} else {
@@ -586,7 +587,7 @@ CALENDAR_UPDATE:
 		}
 	}
 
-	log.Printf("%#v\n", pc.Calendar)
+	// log.Printf("%#v\n", pc.Calendar)
 	log.Println("Calendar.Update()")
 	pc.Calendar.Update()