You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
629 B
28 lines
629 B
4 years ago
|
package httputil
|
||
4 years ago
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestContentSubtype(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
contentType string
|
||
|
want string
|
||
|
}{
|
||
|
{"text/html; charset=utf-8", "html"},
|
||
|
{"multipart/form-data; boundary=something", "form-data"},
|
||
|
{"application/json; charset=utf-8", "json"},
|
||
|
{"application/json", "json"},
|
||
|
{"application/xml", "xml"},
|
||
|
{"text/xml", "xml"},
|
||
|
{";text/xml", ""},
|
||
|
{"application", ""},
|
||
|
}
|
||
|
for _, test := range tests {
|
||
|
t.Run(test.contentType, func(t *testing.T) {
|
||
|
got := ContentSubtype(test.contentType)
|
||
|
if got != test.want {
|
||
|
t.Fatalf("want %v got %v", test.want, got)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|