-
Notifications
You must be signed in to change notification settings - Fork 0
/
id3v1_test.go
41 lines (35 loc) · 1.33 KB
/
id3v1_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
// This file is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
// license. Its contents can be found at:
// http://creativecommons.org/publicdomain/zero/1.0
package yurit
import (
"bytes"
"testing"
"github.com/slotheroo/yurit/internal/id3v1_test"
)
//go:generate go-bindata -o internal/id3v1_test/id3v1_testdata.go -pkg id3v1_test -ignore .txt -ignore .go internal/id3v1_test
func TestReadID3v1Tags(t *testing.T) {
for _, name := range []string{
"internal/id3v1_test/sample_usascii_v1.mp3",
"internal/id3v1_test/sample_ms932_v1.mp3",
"internal/id3v1_test/sample_utf8_v1.mp3"} {
doTest(name, 0, 30, t)
}
for _, name := range []string{
"internal/id3v1_test/sample_usascii_v1.1.mp3",
"internal/id3v1_test/sample_ms932_v1.1.mp3",
"internal/id3v1_test/sample_utf8_v1.1.mp3"} {
doTest(name, 1, 28, t)
}
}
func doTest(name string, track int, length int, t *testing.T) {
mp3 := id3v1_test.MustAsset(name)
metadata, _ := ReadID3v1Tags(bytes.NewReader(mp3))
if actual, total := metadata.Track(); actual != track || total != 0 {
t.Errorf("Track number for %s is (%d, %d) where (%d, 0) is expected.", name, actual, total, track)
}
comment := metadata.Raw()["comment"].(string)
if actual := len(comment); actual != length {
t.Errorf("Comment length for %s is %d where %d is expected", name, actual, length)
}
}