-
Notifications
You must be signed in to change notification settings - Fork 2
/
mediatype_test.go
255 lines (203 loc) · 5.2 KB
/
mediatype_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
package mango
import (
"sort"
"testing"
)
func TestNewMediaTypeThrowsNoErrorIfInputIsValid(t *testing.T) {
want := error(nil)
s := "text/html"
_, err := newMediaType(s)
got := err
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeThrowsErrorIfInputIsInvalid(t *testing.T) {
want := "invalid media type: \"application\""
s := "application"
_, err := newMediaType(s)
got := err.Error()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeParsesMainTypeAndSubType(t *testing.T) {
want := "text/html"
s := "text/html"
mt, _ := newMediaType(s)
got := mt.String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeUsesStarSlashStarIfInputIsEmpty(t *testing.T) {
want := "*/*"
s := ""
mt, _ := newMediaType(s)
got := mt.String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeParsesTypeAndSingleParameters(t *testing.T) {
want := "text/plain;format=flowed"
s := "text/plain;format=flowed"
mt, _ := newMediaType(s)
got := mt.String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeParsesTypeAndMultipleParameters(t *testing.T) {
want := "application/xml;format=flowed;charset=utf-8"
s := "application/xml;format=flowed;charset=utf-8"
mt, _ := newMediaType(s)
got := mt.String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeSetsQualityFactorToOneIfNotPresent(t *testing.T) {
want := float32(1)
s := "application/xml;format=flowed;charset=utf-8"
mt, _ := newMediaType(s)
got := mt.q
if got != want {
t.Errorf("Media type = %f, want %f", got, want)
}
}
func TestNewMediaTypeSetsQualityFactorWhenPresent(t *testing.T) {
want := float32(0.3)
s := "application/xml;format=flowed;charset=utf-8;q=0.3"
mt, _ := newMediaType(s)
got := mt.q
if got != want {
t.Errorf("Media type = %f, want %f", got, want)
}
}
func TestNewMediaTypeSetsQualityFactorToZeroIfMalformed(t *testing.T) {
want := float32(0)
s := "application/xml;format=flowed;charset=utf-8;q=awesome"
mt, _ := newMediaType(s)
got := mt.q
if got != want {
t.Errorf("Media type = %f, want %f", got, want)
}
}
func TestNewMediaTypeSetsQualityFactorToZeroIfEmpty(t *testing.T) {
want := float32(0)
s := "application/xml;format=flowed;charset=utf-8;q="
mt, _ := newMediaType(s)
got := mt.q
if got != want {
t.Errorf("Media type = %f, want %f", got, want)
}
}
func TestNewMediaTypeExcludesQualityFactorFromStringRepresentation(t *testing.T) {
want := "application/xml;format=flowed;charset=utf-8"
s := "application/xml;format=flowed;charset=utf-8;q=0.3"
mt, _ := newMediaType(s)
got := mt.String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestNewMediaTypeIgnoresParametersAfterQualityFactor(t *testing.T) {
want := "application/xml;format=flowed;charset=utf-8"
s := "application/xml;format=flowed;charset=utf-8;q=0.3;custard=9"
mt, _ := newMediaType(s)
got := mt.String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestMediaTypesSortsSpecificMainTypeOverAny(t *testing.T) {
want := "*/*"
mts := make(mediaTypes, 3)
s := "text/xml"
mt, _ := newMediaType(s)
mts[0] = *mt
s = "*/*"
mt, _ = newMediaType(s)
mts[1] = *mt
s = "application/json"
mt, _ = newMediaType(s)
mts[2] = *mt
sort.Sort(mts)
got := mts[2].String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestMediaTypesSortsSpecificSubtypeOverAnyWhenMainTypeIsSame(t *testing.T) {
want := "text/*"
mts := make(mediaTypes, 3)
s := "text/xml"
mt, _ := newMediaType(s)
mts[0] = *mt
s = "text/*"
mt, _ = newMediaType(s)
mts[1] = *mt
s = "text/html"
mt, _ = newMediaType(s)
mts[2] = *mt
sort.Sort(mts)
got := mts[2].String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestMediaTypesSortsOnParametersWhenMainAndSubtypeAreSame(t *testing.T) {
want := "text/xml;charset=utf-8"
mts := make(mediaTypes, 3)
s := "text/html"
mt, _ := newMediaType(s)
mts[0] = *mt
s = "text/xml"
mt, _ = newMediaType(s)
mts[1] = *mt
s = "text/xml;charset=utf-8"
mt, _ = newMediaType(s)
mts[2] = *mt
sort.Sort(mts)
got := mts[0].String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestMediaTypesSortsOnParameterLengthWhenMainAndSubtypeAreSame(t *testing.T) {
want := "text/xml;charset=utf-16"
mts := make(mediaTypes, 3)
s := "text/xml;format=flowed"
mt, _ := newMediaType(s)
mts[0] = *mt
s = "text/xml"
mt, _ = newMediaType(s)
mts[1] = *mt
s = "text/xml;charset=utf-16"
mt, _ = newMediaType(s)
mts[2] = *mt
sort.Sort(mts)
got := mts[0].String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}
func TestMediaTypesSortsOnQualityFactorsWhenPresent(t *testing.T) {
want := "text/xml"
mts := make(mediaTypes, 3)
s := "text/html;q=0.7"
mt, _ := newMediaType(s)
mts[0] = *mt
s = "text/xml;q=0.9"
mt, _ = newMediaType(s)
mts[1] = *mt
s = "text/xml;charset=utf-8;q=0.4"
mt, _ = newMediaType(s)
mts[2] = *mt
sort.Sort(mts)
got := mts[0].String()
if got != want {
t.Errorf("Media type = %q, want %q", got, want)
}
}