-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_test.go
188 lines (179 loc) · 4.43 KB
/
file_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
// nolint:TODO https://github.com/jmillerv/go-dj/issues/16
package content
import (
"io"
"os"
"testing"
"github.com/gopxl/beep/v2"
"github.com/stretchr/testify/assert"
)
const (
envCI = "CI"
)
func TestLocalFile_Get(t *testing.T) {
type fields struct {
Name string
Content *os.File
Path string
decodeReader func(r io.Reader) (s beep.StreamSeekCloser, format beep.Format, err error)
decodeReadCloser func(rc io.ReadCloser) (s beep.StreamSeekCloser, format beep.Format, err error)
fileType string
}
tests := []struct {
name string
fields fields
wantErr bool
}{
//nolint:godox // TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
l := &LocalFile{
Name: tt.fields.Name,
Content: tt.fields.Content,
Path: tt.fields.Path,
}
if err := l.Get(); (err != nil) != tt.wantErr {
t.Errorf("Get() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestLocalFile_Play(t *testing.T) {
type fields struct {
Name string
Content *os.File
Path string
decodeReader func(r io.Reader) (s beep.StreamSeekCloser, format beep.Format, err error)
decodeReadCloser func(rc io.ReadCloser) (s beep.StreamSeekCloser, format beep.Format, err error)
fileType string
}
tests := []struct {
name string
fields fields
wantErr bool
}{
//nolint:godox // TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
l := &LocalFile{
Name: tt.fields.Name,
Content: tt.fields.Content,
Path: tt.fields.Path,
}
if err := l.Play(); (err != nil) != tt.wantErr {
t.Errorf("Play() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestLocalFile_Stop(t *testing.T) {
type fields struct {
Name string
Content *os.File
Path string
decodeReader func(r io.Reader) (s beep.StreamSeekCloser, format beep.Format, err error)
decodeReadCloser func(rc io.ReadCloser) (s beep.StreamSeekCloser, format beep.Format, err error)
fileType string
}
tests := []struct {
name string
fields fields
wantErr bool
}{
//nolint:godox // TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
l := &LocalFile{
Name: tt.fields.Name,
Content: tt.fields.Content,
Path: tt.fields.Path,
}
if err := l.Stop(); (err != nil) != tt.wantErr {
t.Errorf("Stop() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestLocalFile_getEstimatedFileDuration(t *testing.T) {
if os.Getenv(envCI) == "true" {
t.Skipf("CI detected, skipping")
}
type fields struct {
File *LocalFile
decodeReader func(r io.Reader) (s beep.StreamSeekCloser, format beep.Format, err error)
decodeReadCloser func(rc io.ReadCloser) (s beep.StreamSeekCloser, format beep.Format, err error)
}
tests := []struct {
name string
fields fields
want string
}{
{
name: "wav file",
fields: fields{
File: &LocalFile{
Name: "CantinaBand3.wav",
Path: "../static/CantinaBand3.wav",
fileType: wavFile,
},
},
want: "library doesn't support estimating wav files.",
},
// Uncomment and add appropriate files for local testing
//{
// name: "mp3 file",
// fields: fields{
// File: &LocalFile{
// Name: "piano_six_seconds.mp3",
// Path: "../static/piano_six_seconds.mp3",
// Content: nil,
// fileType: mp3File,
// },
// },
// want: "6.37",
//},
//{
// name: "ogg file",
// fields: fields{
// File: &LocalFile{
// Name: "Example.ogg",
// Path: "../static/Example.ogg",
// fileType: oggFile,
// },
// },
// want: "6.10",
//},
//{
// name: "FLAC file",
// fields: fields{
// File: &LocalFile{
// Name: "JosefSuk-Meditation.flac",
// Path: "../static/JosefSuk-Meditation.flac",
// Content: nil,
// fileType: flacFile,
// },
// },
// want: "405.45",
//},
{
name: "default",
fields: fields{
File: &LocalFile{fileType: "mp4"},
},
want: "unknown file type: can't determine duration",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
l := &LocalFile{
Name: tt.fields.File.Name,
Path: tt.fields.File.Path,
fileType: tt.fields.File.fileType,
}
assert.Equalf(t, tt.want, l.getEstimatedFileDuration(), "getEstimatedFileDuration()")
})
}
}