forked from jbowens/codenames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store_test.go
93 lines (81 loc) · 1.89 KB
/
store_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package codenames
import (
"io/ioutil"
"reflect"
"testing"
"github.com/cockroachdb/pebble"
"github.com/jbowens/dictionary"
"github.com/kr/pretty"
)
var gameIDs, words []string
func init() {
dictGameIDs, err := dictionary.Load("assets/game-id-words.txt")
if err != nil {
panic(err)
}
dictWords, err := dictionary.Load("assets/original.txt")
if err != nil {
panic(err)
}
gameIDs = dictGameIDs.Words()
words = dictWords.Words()
}
func randomGames(n int) map[string]*Game {
games := make(map[string]*Game)
for _, w := range gameIDs[:n] {
games[w] = newGame(w, randomState(words), GameOptions{})
}
return games
}
func TestPersist(t *testing.T) {
dir, err := ioutil.TempDir("", "test-persist-*")
if err != nil {
t.Fatal(err)
}
t.Logf("pebble store dir: %s\n", dir)
var ps PebbleStore
ps.DB, err = pebble.Open(dir, nil)
if err != nil {
t.Fatal(err)
}
games := randomGames(5)
for _, g := range games {
if err := ps.Save(g); err != nil {
t.Fatal(err)
}
}
if err := ps.DB.Close(); err != nil {
t.Fatal(err)
}
// Re-open the DB.
ps.DB, err = pebble.Open(dir, nil)
if err != nil {
t.Fatal(err)
}
restoredGames, err := ps.Restore()
if err != nil {
t.Fatal(err)
}
if err := ps.DB.Close(); err != nil {
t.Fatal(err)
}
// Verify the game states are the same.
for id, g := range games {
got, ok := restoredGames[id]
if !ok {
t.Fatalf("restoredGames[%q] doesn't exist", id)
}
if !reflect.DeepEqual(got.GameState, g.GameState) {
t.Fatalf("%s: GameStates don't match: %s, %s",
id, pretty.Sprint(got.GameState), pretty.Sprint(g.GameState))
}
if !reflect.DeepEqual(got.Words, g.Words) {
t.Fatalf("%s: Words don't match: %s, %s",
id, pretty.Sprint(got.Words), pretty.Sprint(g.Words))
}
if !reflect.DeepEqual(got.Layout, g.Layout) {
t.Fatalf("%s: Layout don't match: %s, %s",
id, pretty.Sprint(got.Layout), pretty.Sprint(g.Layout))
}
}
}