-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
move_test.go
162 lines (130 loc) · 2.4 KB
/
move_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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package gotak
import (
"testing"
)
func TestParseMove(t *testing.T) {
tests := []string{
"a1+",
"1a1+",
"1a1+1",
"a1+1",
"2a2+2",
"3a3+3",
"4a4>121",
"1a4+1C",
"1d2<1",
"1d2<1S",
}
for _, mv := range tests {
t.Run(mv, func(t *testing.T) {
m, err := NewMove(mv)
if err != nil {
t.Errorf("error creating move: %+v", err)
}
if m.Stone == "" {
t.Errorf("stone is empty")
}
if m.Square == "" {
t.Errorf("square is empty")
}
if m.MoveCount == 0 {
t.Errorf("move count is zero")
}
if m.MoveDirection == "" {
t.Errorf("direction is empty")
}
if len(m.MoveDropCounts) < 1 {
t.Errorf("drop counts is empty")
}
})
}
}
func TestParseMoveCapStones(t *testing.T) {
tests := []string{
"1e6+1C",
"1e6+C",
"4e6+1111C",
}
for _, mv := range tests {
t.Run(mv, func(t *testing.T) {
m, err := NewMove(mv)
if err != nil {
t.Errorf("error creating move: %+v", err)
}
if m.Stone != StoneCap {
t.Errorf("stone is wrong")
}
if m.Square == "" {
t.Errorf("square is empty")
}
if m.MoveCount == 0 {
t.Errorf("move count is zero")
}
if m.MoveDirection == "" {
t.Errorf("direction is empty")
}
if len(m.MoveDropCounts) < 1 {
t.Errorf("drop counts is empty")
}
})
}
}
func TestParseDropCapStones(t *testing.T) {
tests := []string{
"Ce6",
}
for _, mv := range tests {
t.Run(mv, func(t *testing.T) {
m, err := NewMove(mv)
if err != nil {
t.Errorf("error creating move: %+v", err)
}
if m.Stone != StoneCap {
t.Errorf("stone is wrong")
}
if m.Square == "" {
t.Errorf("square is empty")
}
})
}
}
func TestParseDropStandingStones(t *testing.T) {
tests := []string{
"Sc3",
}
for _, mv := range tests {
t.Run(mv, func(t *testing.T) {
m, err := NewMove(mv)
if err != nil {
t.Errorf("error creating move: %+v", err)
}
if m.Stone != StoneStanding {
t.Errorf("stone is wrong")
}
if m.Square == "" {
t.Errorf("square is empty")
}
})
}
}
func TestParseDropStones(t *testing.T) {
tests := []string{
"e6",
"Fe6",
"b10",
}
for _, mv := range tests {
t.Run(mv, func(t *testing.T) {
m, err := NewMove(mv)
if err != nil {
t.Errorf("error creating move: %+v", err)
}
if m.Stone != StoneFlat {
t.Errorf("stone is wrong")
}
if m.Square == "" {
t.Errorf("square is empty")
}
})
}
}