Skip to content

Commit

Permalink
media: Add some more relevant MIME types
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Mar 27, 2017
1 parent 4923273 commit f2fbf0b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 25 deletions.
13 changes: 8 additions & 5 deletions media/mediaType.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,14 @@ func (m Type) String() string {
}

var (
CalendarType = Type{"text", "calendar", "ics"}
CSSType = Type{"text", "css", "css"}
HTMLType = Type{"text", "html", "html"}
JSONType = Type{"application", "json", "json"}
RSSType = Type{"application", "rss", "xml"}
CalendarType = Type{"text", "calendar", "ics"}
CSSType = Type{"text", "css", "css"}
HTMLType = Type{"text", "html", "html"}
JavascriptType = Type{"application", "javascript", "js"}
JSONType = Type{"application", "json", "json"}
RSSType = Type{"application", "rss", "xml"}
XMLType = Type{"application", "xml", "xml"}
TextType = Type{"text", "plain", "txt"}
)

// TODO(bep) output mime.AddExtensionType
44 changes: 24 additions & 20 deletions media/mediaType_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,29 @@ import (
)

func TestDefaultTypes(t *testing.T) {
require.Equal(t, "text", CalendarType.MainType)
require.Equal(t, "calendar", CalendarType.SubType)
require.Equal(t, "ics", CalendarType.Suffix)

require.Equal(t, "text/calendar+ics", CalendarType.String())
require.Equal(t, "text/calendar", CalendarType.Type())

require.Equal(t, "text", HTMLType.MainType)
require.Equal(t, "html", HTMLType.SubType)
require.Equal(t, "html", HTMLType.Suffix)

require.Equal(t, "text/html", HTMLType.Type())
require.Equal(t, "text/html+html", HTMLType.String())

require.Equal(t, "application", RSSType.MainType)
require.Equal(t, "rss", RSSType.SubType)
require.Equal(t, "xml", RSSType.Suffix)

require.Equal(t, "application/rss", RSSType.Type())
require.Equal(t, "application/rss+xml", RSSType.String())
for _, test := range []struct {
tp Type
expectedMainType string
expectedSubType string
expectedSuffix string
expectedType string
expectedString string
}{
{CalendarType, "text", "calendar", "ics", "text/calendar", "text/calendar+ics"},
{CSSType, "text", "css", "css", "text/css", "text/css+css"},
{HTMLType, "text", "html", "html", "text/html", "text/html+html"},
{JavascriptType, "application", "javascript", "js", "application/javascript", "application/javascript+js"},
{JSONType, "application", "json", "json", "application/json", "application/json+json"},
{RSSType, "application", "rss", "xml", "application/rss", "application/rss+xml"},
{TextType, "text", "plain", "txt", "text/plain", "text/plain+txt"},
} {
require.Equal(t, test.expectedMainType, test.tp.MainType)
require.Equal(t, test.expectedSubType, test.tp.SubType)
require.Equal(t, test.expectedSuffix, test.tp.Suffix)

require.Equal(t, test.expectedType, test.tp.Type())
require.Equal(t, test.expectedString, test.tp.String())

}

}

0 comments on commit f2fbf0b

Please sign in to comment.