-
Notifications
You must be signed in to change notification settings - Fork 36
/
http_downloader_test.go
267 lines (217 loc) · 8.03 KB
/
http_downloader_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
256
257
258
259
260
261
262
263
264
265
266
267
package main
import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
"testing"
"time"
"io/ioutil"
"net/http"
"net/http/httptest"
"os"
)
var (
testFilename = "testfile.txt"
testText = []byte("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ac condimentum velit, a hendrerit felis.")
testFilenameHash = "testfile.txt.md5"
testMD5 = "7b20fda6af27c1b59ebdd8c09a93e770"
testEmptyChecksumUrl = ""
testChecksumUrlPath = "custom.txt.md5"
testHashlessFilename = "nohash.txt"
testHashlessText = []byte("Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.")
testBasicAuthChecksum = []byte("bb651e9638be48e76bbbe936b9651083")
testBasicAuthFilename = "basicauth.txt"
testBasicAuthFilenameHash = "basicauth.txt.md5"
testBasicAuthText = []byte("Morbi pulvinar dui sit amet metus imperdiet lobortis sed at urna.")
testBasicAuthUser = "foo-user"
testBasicAuthPass = "bar&r6j6ehw5:qae^^%#$as45"
)
// Register the below test suite
func TestHttpDownloaderTestSuite(t *testing.T) {
suite.Run(t, new(HttpDownloaderTestSuite))
}
type HttpDownloaderTestSuite struct {
suite.Suite
testServer *httptest.Server
}
func (s *HttpDownloaderTestSuite) SetupTest() {
s.testServer = httptest.NewServer(
http.HandlerFunc(
func(rw http.ResponseWriter, req *http.Request) {
user, pass, ok := req.BasicAuth()
if ok {
if user != testBasicAuthUser || pass != testBasicAuthPass {
rw.WriteHeader(http.StatusUnauthorized)
return
}
switch req.URL.String() {
case "/" + testBasicAuthFilename:
rw.Write(testBasicAuthText)
case "/" + testBasicAuthFilenameHash:
rw.Write(testBasicAuthChecksum)
default:
rw.WriteHeader(404)
}
return
}
switch req.URL.String() {
case "/" + testFilename:
rw.Write(testText)
case "/" + testFilenameHash:
rw.Write([]byte(testMD5))
case "/" + testChecksumUrlPath:
rw.Write([]byte(testMD5))
case "/" + testHashlessFilename:
rw.Write(testHashlessText)
default:
rw.WriteHeader(404)
}
}))
}
func (s *HttpDownloaderTestSuite) TearDownTest() {
s.testServer.Close()
os.RemoveAll(testFilename)
os.RemoveAll(testHashlessFilename)
os.RemoveAll(testBasicAuthFilename)
}
func (s *HttpDownloaderTestSuite) TestDownloadFile() {
downloader := httpDownloader{
username: "",
password: "",
}
err := downloader.Download(s.testServer.URL+"/"+testFilename, testFilename)
assert.Nil(s.T(), err)
text, err := ioutil.ReadFile(testFilename)
assert.Nil(s.T(), err)
assert.Equal(s.T(), text, testText)
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadWhenNoFileExists() {
downloader := httpDownloader{
username: "",
password: "",
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testFilename, testEmptyChecksumUrl, testFilename)
assert.Nil(s.T(), err)
text, err := ioutil.ReadFile(testFilename)
assert.Nil(s.T(), err)
assert.Equal(s.T(), text, testText)
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadWhenCurrentFileExists() {
downloader := httpDownloader{
username: "",
password: "",
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testFilename, testEmptyChecksumUrl, testFilename)
assert.Nil(s.T(), err)
text, err := ioutil.ReadFile(testFilename)
assert.Nil(s.T(), err)
assert.Equal(s.T(), text, testText, "file should download correctly")
// Get original file info
finfo, err := os.Stat(testFilename)
assert.Nil(s.T(), err)
modtime := finfo.ModTime()
// Idempotent Download
err = idempotentFileDownload(downloader, s.testServer.URL+"/"+testFilename, testEmptyChecksumUrl, testFilename)
assert.Nil(s.T(), err)
newFinfo, err := os.Stat(testFilename)
newModtime := newFinfo.ModTime()
// Make sure the file didn't change
assert.Equal(s.T(), modtime, newModtime, "modification time should not change")
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadWhenOldFileExists() {
downloader := httpDownloader{
username: "",
password: "",
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testHashlessFilename, testEmptyChecksumUrl, testFilename)
assert.Nil(s.T(), err)
_, err = ioutil.ReadFile(testFilename)
assert.Nil(s.T(), err)
// Get original file info
finfo, err := os.Stat(testFilename)
assert.Nil(s.T(), err)
modtime := finfo.ModTime()
// on linux time is in seconds, so we needs to wait at least one
time.Sleep(1 * time.Second)
// Idempotent Download
err = idempotentFileDownload(downloader, s.testServer.URL+"/"+testFilename, testEmptyChecksumUrl, testFilename)
assert.Nil(s.T(), err)
newFinfo, err := os.Stat(testFilename)
newModtime := newFinfo.ModTime()
// Make sure the file changed
assert.NotEqual(s.T(), modtime, newModtime, "modification time should change")
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadWhenCurrentFileExistsUsingChecksumUrl() {
downloader := httpDownloader{
username: "",
password: "",
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testFilename, s.testServer.URL+"/"+testChecksumUrlPath, testFilename)
assert.Nil(s.T(), err)
text, err := ioutil.ReadFile(testFilename)
assert.Nil(s.T(), err)
assert.Equal(s.T(), text, testText, "file should download correctly")
// Get original file info
finfo, err := os.Stat(testFilename)
assert.Nil(s.T(), err)
modtime := finfo.ModTime()
// Idempotent Download
err = idempotentFileDownload(downloader, s.testServer.URL+"/"+testFilename, testEmptyChecksumUrl, testFilename)
assert.Nil(s.T(), err)
newFinfo, err := os.Stat(testFilename)
newModtime := newFinfo.ModTime()
// Make sure the file didn't change
assert.Equal(s.T(), modtime, newModtime, "modification time should not change")
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadNoRemoteHash() {
downloader := httpDownloader{
username: "",
password: "",
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testHashlessFilename, testEmptyChecksumUrl, testHashlessFilename)
assert.Nil(s.T(), err)
text, err := ioutil.ReadFile(testHashlessFilename)
assert.Nil(s.T(), err)
assert.Equal(s.T(), testHashlessText, text)
// Get original file info
finfo, err := os.Stat(testHashlessFilename)
assert.Nil(s.T(), err)
modtime := finfo.ModTime()
// on linux time is in seconds, so we needs to wait at least one
time.Sleep(1 * time.Second)
// Idempotent Download
err = idempotentFileDownload(downloader, s.testServer.URL+"/"+testHashlessFilename, testEmptyChecksumUrl, testHashlessFilename)
assert.Nil(s.T(), err)
newFinfo, err := os.Stat(testHashlessFilename)
newModtime := newFinfo.ModTime()
// Make sure the file changed
assert.NotEqual(s.T(), modtime, newModtime, "new file should be downloaded")
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadBasicAuth() {
downloader := httpDownloader{
username: testBasicAuthUser,
password: testBasicAuthPass,
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testBasicAuthFilename, testEmptyChecksumUrl, testBasicAuthFilename)
assert.Nil(s.T(), err)
text, err := ioutil.ReadFile(testBasicAuthFilename)
assert.Nil(s.T(), err)
assert.Equal(s.T(), testBasicAuthText, text, "text should be equal")
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadBasicAuthFailure() {
downloader := httpDownloader{
username: "nottherightuser",
password: "nottherightpass",
}
err := idempotentFileDownload(downloader, s.testServer.URL+"/"+testBasicAuthFilename, testEmptyChecksumUrl, testBasicAuthFilename)
assert.NotNil(s.T(), err)
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadFailureFromInvalidURL() {
downloader := httpDownloader{}
err := idempotentFileDownload(downloader, "http://192.168.0.%31/invalid-url", testEmptyChecksumUrl, testFilename)
assert.NotNil(s.T(), err)
}
func (s *HttpDownloaderTestSuite) TestIdempotentDownloadFailureFromUnresponsiveServer() {
downloader := httpDownloader{}
err := idempotentFileDownload(downloader, "http://0.0.0.0/unresponsive/"+testFilename, testEmptyChecksumUrl, testFilename)
assert.NotNil(s.T(), err)
}