-
Notifications
You must be signed in to change notification settings - Fork 1
/
file_internal_test.go
270 lines (263 loc) · 6.47 KB
/
file_internal_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
268
269
270
package fdk
import (
"fmt"
"testing"
"time"
)
func TestNormalizeFile(t *testing.T) {
var start = time.Time{}.UTC().Add(time.Hour)
tests := []struct {
name string
nowFn func() time.Time
in File
want File
}{
{
name: "file with all values set should remain the same",
in: File{
ContentType: "application/json",
Encoding: "gzip",
Filename: "test.json",
},
want: File{
ContentType: "application/json",
Encoding: "gzip",
Filename: "test.json",
},
},
{
name: "file missing encoding should remain the same",
in: File{
ContentType: "application/json",
Filename: "test.json",
},
want: File{
ContentType: "application/json",
Filename: "test.json",
},
},
{
name: "file missing content type for filename with json extension should add content type to application/ld+json",
in: File{
Filename: "test.jsonld",
},
want: File{
ContentType: "application/ld+json",
Filename: "test.jsonld",
},
},
{
name: "file missing content type for filename with jsonld extension should add content type to application/json",
in: File{
Filename: "test.json",
},
want: File{
ContentType: "application/json",
Filename: "test.json",
},
},
{
name: "file missing content type for filename with jsonld extension should add content type to application/json",
in: File{
Filename: "test.js",
},
want: File{
ContentType: "text/javascript; charset=utf-8",
Filename: "test.js",
},
},
{
name: "file missing content type for filename with xml extension should add content type to application/xml",
in: File{
Filename: "test.xml",
},
want: File{
ContentType: "application/xml",
Filename: "test.xml",
},
},
{
name: "file missing content type for filename with tar extension should add content type to application/x-tar",
in: File{
Filename: "test.tar",
},
want: File{
ContentType: "application/x-tar",
Filename: "test.tar",
},
},
{
name: "file missing content type for filename with zip extension should add content type to application/zip",
in: File{
Filename: "test.zip",
},
want: File{
ContentType: "application/zip",
Filename: "test.zip",
},
},
{
name: "file missing content type for filename with html extension should add content type to text/html",
in: File{
Filename: "test.html",
},
want: File{
ContentType: "text/html; charset=utf-8",
Filename: "test.html",
},
},
{
name: "file missing content type for filename with yaml extension should add content type to text/yaml",
in: File{
Filename: "test.yaml",
},
want: File{
ContentType: "text/yaml; charset=utf-8",
Filename: "test.yaml",
},
},
{
name: "file missing content type for filename with yml extension should add content type to text/yaml",
in: File{
Filename: "test.yml",
},
want: File{
ContentType: "text/yaml; charset=utf-8",
Filename: "test.yml",
},
},
{
name: "file missing content type for filename with txt extension should add content type to text/plain",
in: File{
Filename: "test.txt",
},
want: File{
ContentType: "text/plain; charset=utf-8",
Filename: "test.txt",
},
},
{
name: "file missing content encoding for gzipped json filename should add content type and encoding",
in: File{
Filename: "test.json.gz",
},
want: File{
ContentType: "application/json",
Encoding: "gzip",
Filename: "test.json.gz",
},
},
{
name: "file missing content encoding for gzipped yaml filename should add content type and encoding",
in: File{
Filename: "test.yaml.gz",
},
want: File{
ContentType: "text/yaml; charset=utf-8",
Encoding: "gzip",
Filename: "test.yaml.gz",
},
},
{
name: "file missing content type and filename should set filename to timestamp",
nowFn: func() time.Time {
return start
},
in: File{},
want: File{
ContentType: "application/octet-stream",
Filename: "upload_" + start.Format(time.RFC3339),
},
},
{
name: "file missing filename with content type json set filename to timestamp.json file",
nowFn: func() time.Time {
return start
},
in: File{
ContentType: "application/json",
},
want: File{
ContentType: "application/json",
Filename: "upload_" + start.Format(time.RFC3339) + ".json",
},
},
{
name: "file missing filename with content type json and gz encoding set filename to timestamp.json.gz file",
nowFn: func() time.Time {
return start
},
in: File{
ContentType: "application/json",
Encoding: "gzip",
},
want: File{
ContentType: "application/json",
Encoding: "gzip",
Filename: "upload_" + start.Format(time.RFC3339) + ".json.gz",
},
},
{
name: "file missing filename with content type json and gz zstd encodings set filename to timestamp.json.gz file",
nowFn: func() time.Time {
return start
},
in: File{
ContentType: "application/json",
Encoding: "zstd, gzip",
},
want: File{
ContentType: "application/json",
Encoding: "zstd, gzip",
Filename: "upload_" + start.Format(time.RFC3339) + ".json.zst.gz",
},
},
{
name: "file missing filename with content type plain/javascript and gz zstd encodings set filename to timestamp.json.gz file",
nowFn: func() time.Time {
return start
},
in: File{
ContentType: "text/javascript; charset=utf-8",
Encoding: "zstd, gzip",
},
want: File{
ContentType: "text/javascript; charset=utf-8",
Encoding: "zstd, gzip",
Filename: "upload_" + start.Format(time.RFC3339) + ".js.zst.gz",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.nowFn != nil {
old := nowFn
nowFn = tt.nowFn
t.Cleanup(func() { nowFn = old })
}
got := NormalizeFile(tt.in)
EqualVals(t, tt.want.Filename, got.Filename)
EqualVals(t, tt.want.ContentType, got.ContentType)
EqualVals(t, tt.want.Encoding, got.Encoding)
})
}
}
func EqualVals[T comparable](t testing.TB, want, got T, args ...any) bool {
t.Helper()
var errMsg string
if len(args) > 0 {
format, ok := args[0].(string)
if ok {
errMsg = fmt.Sprintf(format, args[1:]...)
}
}
match := want == got
if !match {
msg := "values not equal:\n\twant:\t%#v\n\tgot:\t%#v"
if errMsg != "" {
msg += "\n\n\t" + errMsg
}
t.Errorf(msg, want, got)
}
return match
}