-
Notifications
You must be signed in to change notification settings - Fork 0
/
note_test.go
255 lines (244 loc) · 7.13 KB
/
note_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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
package ultrastar
import (
"bytes"
"encoding/gob"
"fmt"
"testing"
)
func TestNoteType_IsValid(t *testing.T) {
cases := map[string]struct {
nType NoteType
expected bool
}{
"regular note": {':', true},
"golden note": {'*', true},
"rap note": {'R', true},
"golden rap note": {'G', true},
"freestyle note": {'F', true},
"line break": {'-', true},
"letter X": {'X', false},
"letter A": {'A', false},
"space": {' ', false},
"number 1": {'1', false},
"dot": {'.', false},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
actual := c.nType.IsValid()
if actual != c.expected {
t.Errorf("NoteType('%c').IsValid() = %t, expected %t", c.nType, actual, c.expected)
}
})
}
}
func TestNoteType_IsSung(t *testing.T) {
cases := map[string]struct {
nType NoteType
expected bool
panic bool
}{
"regular note": {NoteTypeRegular, true, false},
"golden note": {NoteTypeGolden, true, false},
"rap note": {NoteTypeRap, false, false},
"golden rap note": {NoteTypeGoldenRap, false, false},
"freestyle note": {NoteTypeFreestyle, false, false},
"line break": {NoteTypeLineBreak, false, false},
"invalid note": {'#', false, true},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
defer func() {
r := recover()
if r == nil && c.panic {
t.Errorf("NoteType('%c').IsSung() did not panic", c.nType)
} else if r != nil && !c.panic {
t.Errorf("NoteType('%c').IsSung() caused a panic", c.nType)
}
}()
actual := c.nType.IsSung()
if actual != c.expected {
t.Errorf("NoteType('%c').IsSung() = %t, expected %t", c.nType, actual, c.expected)
}
})
}
}
func TestNoteType_IsRap(t *testing.T) {
cases := map[string]struct {
nType NoteType
expected bool
panic bool
}{
"regular note": {NoteTypeRegular, false, false},
"golden note": {NoteTypeGolden, false, false},
"rap note": {NoteTypeRap, true, false},
"golden rap note": {NoteTypeGoldenRap, true, false},
"freestyle note": {NoteTypeFreestyle, false, false},
"line break": {NoteTypeLineBreak, false, false},
"invalid note": {'#', false, true},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
defer func() {
r := recover()
if r == nil && c.panic {
t.Errorf("NoteType('%c').IsRap() did not panic", c.nType)
} else if r != nil && !c.panic {
t.Errorf("NoteType('%c').IsRap() caused a panic", c.nType)
}
}()
actual := c.nType.IsRap()
if actual != c.expected {
t.Errorf("NoteType('%c').IsRap() = %t, expected %t", c.nType, actual, c.expected)
}
})
}
}
func TestNoteType_IsGolden(t *testing.T) {
cases := map[string]struct {
nType NoteType
expected bool
panic bool
}{
"regular note": {NoteTypeRegular, false, false},
"golden note": {NoteTypeGolden, true, false},
"rap note": {NoteTypeRap, false, false},
"golden rap note": {NoteTypeGoldenRap, true, false},
"freestyle note": {NoteTypeFreestyle, false, false},
"line break": {NoteTypeLineBreak, false, false},
"invalid note": {'#', false, true},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
defer func() {
r := recover()
if r == nil && c.panic {
t.Errorf("NoteType('%c').IsGolden() did not panic", c.nType)
} else if r != nil && !c.panic {
t.Errorf("NoteType('%c').IsGolden() caused a panic", c.nType)
}
}()
actual := c.nType.IsGolden()
if actual != c.expected {
t.Errorf("NoteType('%c').IsGolden() = %t, expected %t", c.nType, actual, c.expected)
}
})
}
}
func TestNoteType_IsFreestyle(t *testing.T) {
cases := map[string]struct {
nType NoteType
expected bool
panic bool
}{
"regular note": {NoteTypeRegular, false, false},
"golden note": {NoteTypeGolden, false, false},
"rap note": {NoteTypeRap, false, false},
"golden rap note": {NoteTypeGoldenRap, false, false},
"freestyle note": {NoteTypeFreestyle, true, false},
"line break": {NoteTypeLineBreak, false, false},
"invalid note": {'#', false, true},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
defer func() {
r := recover()
if r == nil && c.panic {
t.Errorf("NoteType('%c').IsFreestyle() did not panic", c.nType)
} else if r != nil && !c.panic {
t.Errorf("NoteType('%c').IsFreestyle() caused a panic", c.nType)
}
}()
actual := c.nType.IsFreestyle()
if actual != c.expected {
t.Errorf("NoteType('%c').IsFreestyle() = %t, expected %t", c.nType, actual, c.expected)
}
})
}
}
func TestNoteType_IsLineBreak(t *testing.T) {
cases := map[string]struct {
nType NoteType
expected bool
panic bool
}{
"regular note": {NoteTypeRegular, false, false},
"golden note": {NoteTypeGolden, false, false},
"rap note": {NoteTypeRap, false, false},
"golden rap note": {NoteTypeGoldenRap, false, false},
"freestyle note": {NoteTypeFreestyle, false, false},
"line break": {NoteTypeLineBreak, true, false},
"invalid note": {'#', false, true},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
defer func() {
r := recover()
if r == nil && c.panic {
t.Errorf("NoteType('%c').IsLineBreak() did not panic", c.nType)
} else if r != nil && !c.panic {
t.Errorf("NoteType('%c').IsLineBreak() caused a panic", c.nType)
}
}()
actual := c.nType.IsLineBreak()
if actual != c.expected {
t.Errorf("NoteType('%c').IsLineBreak() = %t, expected %t", c.nType, actual, c.expected)
}
})
}
}
func TestNote_String(t *testing.T) {
cases := map[string]struct {
note Note
expected string
}{
"regular note": {Note{NoteTypeRegular, 15, 4, 8, "go"}, ": 15 4 8 go"},
"note with spaces in text": {Note{NoteTypeGolden, 7, 1, -2, " hey "}, "* 7 1 -2 hey "},
"line break": {Note{NoteTypeLineBreak, 12, 7, 3, "\n"}, "- 12"},
}
for name, c := range cases {
t.Run(name, func(t *testing.T) {
actual := c.note.String()
if actual != c.expected {
t.Errorf("%v.String() = %q, expected %q", c.note, actual, c.expected)
}
})
}
}
func TestNote_GobEncode(t *testing.T) {
cases := map[string]Note{
"regular note": Note{NoteTypeRegular, 15, 4, 8, "go"},
"note with spaces in text": Note{NoteTypeGolden, 7, 1, -2, " hey "},
"note with high numbers": Note{NoteTypeRap, 550, 20, -40, " hey "},
"line break": Note{NoteTypeLineBreak, 12, 0, 0, "\n"},
}
for name, note := range cases {
t.Run(name, func(t *testing.T) {
buf := &bytes.Buffer{}
e := gob.NewEncoder(buf)
err := e.Encode(note)
if err != nil {
t.Fatalf("GobEncode(%v) caused an unexpected error: %s", note, err)
}
var n Note
d := gob.NewDecoder(buf)
err = d.Decode(&n)
if err != nil {
t.Fatalf("GobDecode() caused an unexpected error: %s", err)
}
if n != note {
t.Fatalf("GobDecode(GobEncode(%v)) = %v, expected %v", note, n, note)
}
})
}
}
func ExampleNote_String() {
n := Note{
Type: NoteTypeGolden,
Start: 15,
Duration: 4,
Pitch: 8,
Text: "Go",
}
fmt.Println(n.String())
// Output: * 15 4 8 Go
}