-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource_test.go
104 lines (83 loc) · 2.29 KB
/
source_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
package splitter
import (
"errors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"net/http"
"net/url"
"testing"
)
var (
GetDoFunc func(req *http.Request) (*http.Response, error)
GetGetFunc func(url string) (resp *http.Response, err error)
)
type mockClient struct {
mock.Mock
}
func (m *mockClient) Do(req *http.Request) (*http.Response, error) {
return GetDoFunc(req)
}
func (m *mockClient) Get(url string) (resp *http.Response, err error) {
return GetGetFunc(url)
}
func TestNewSource(t *testing.T) {
httpClient := &mockClient{}
testUrl, _ := url.Parse("http://test-url.com/image/source.jpg")
GetGetFunc = func(url string) (resp *http.Response, err error) {
return &http.Response{
StatusCode: 200,
Header: http.Header{"Content-Type": []string{"image/jpeg"}},
ContentLength: 100,
}, nil
}
s, err := NewSource(testUrl, httpClient)
assert.Nil(t, err)
assert.Equal(t, 100, s.Size)
assert.Equal(t, testUrl, s.Path)
assert.Contains(t, []string{".jpeg", ".jpg"}, s.Ext)
}
func TestNewSourceRequestError(t *testing.T) {
httpClient := &mockClient{}
testUrl, _ := url.Parse("http://test-url.com/image/source.jpg")
GetGetFunc = func(url string) (*http.Response, error) {
return nil, errors.New("request failed")
}
_, err := NewSource(testUrl, httpClient)
assert.EqualError(
t,
err,
"splitter: source: cannot fetch source info: request failed",
)
}
func TestNewSourceContentLengthError(t *testing.T) {
httpClient := &mockClient{}
testUrl, _ := url.Parse("http://test-url.com/image/source.jpg")
GetGetFunc = func(url string) (*http.Response, error) {
return &http.Response{
StatusCode: 200,
Header: http.Header{"Content-Type": []string{"image/jpeg"}},
}, nil
}
_, err := NewSource(testUrl, httpClient)
assert.EqualError(
t,
err,
"splitter: source: cannot fetch content length: <nil>",
)
}
func TestNewSourceContentTypeError(t *testing.T) {
httpClient := &mockClient{}
testUrl, _ := url.Parse("http://test-url.com/image/source.jpg")
GetGetFunc = func(url string) (*http.Response, error) {
return &http.Response{
StatusCode: 200,
ContentLength: 100,
}, nil
}
_, err := NewSource(testUrl, httpClient)
assert.EqualError(
t,
err,
"splitter: source: cannot fetch content type: mime: no media type",
)
}