media, output: Add CSV type and format
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 1 Apr 2017 13:12:31 +0000 (15:12 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 1 Apr 2017 13:12:31 +0000 (15:12 +0200)
And make CSS correclty behave as plain text.

media/mediaType.go
media/mediaType_test.go
output/outputFormat.go
output/outputFormat_test.go

index f6597fdb67934f7a74a7cfd51a47a7ff88f33795..a6ba873eb3c4e36033d10255b7e496882edf76d6 100644 (file)
@@ -49,6 +49,7 @@ func (m Type) String() string {
 var (
        CalendarType   = Type{"text", "calendar", "ics"}
        CSSType        = Type{"text", "css", "css"}
+       CSVType        = Type{"text", "csv", "csv"}
        HTMLType       = Type{"text", "html", "html"}
        JavascriptType = Type{"application", "javascript", "js"}
        JSONType       = Type{"application", "json", "json"}
index 7636af59cff2a2458558f8437fb5a2211e4eaf0a..e918b9393b3c2a62a0c7bddbc62d3b39084a02c4 100644 (file)
@@ -30,6 +30,7 @@ func TestDefaultTypes(t *testing.T) {
        }{
                {CalendarType, "text", "calendar", "ics", "text/calendar", "text/calendar+ics"},
                {CSSType, "text", "css", "css", "text/css", "text/css+css"},
+               {CSVType, "text", "csv", "csv", "text/csv", "text/csv+csv"},
                {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"},
index 797c7ae2dc7b3d87e0f42e7992c721df940c3363..76329a9360f0056681a8ae30be05c3eabb45274a 100644 (file)
@@ -43,10 +43,18 @@ var (
        }
 
        CSSFormat = Format{
-               Name:      "CSS",
-               MediaType: media.CSSType,
-               BaseName:  "styles",
-               Rel:       "stylesheet",
+               Name:        "CSS",
+               MediaType:   media.CSSType,
+               BaseName:    "styles",
+               IsPlainText: true,
+               Rel:         "stylesheet",
+       }
+       CSVFormat = Format{
+               Name:        "CSV",
+               MediaType:   media.CSVType,
+               BaseName:    "index",
+               IsPlainText: true,
+               Rel:         "alternate",
        }
 
        HTMLFormat = Format{
index 1d3700f4b75e574d1224076a9dde7edb696f7f72..e742012ba84e289583b6ac6856cd97e273536ac1 100644 (file)
@@ -28,17 +28,31 @@ func TestDefaultTypes(t *testing.T) {
        require.True(t, CalendarFormat.IsPlainText)
        require.False(t, CalendarFormat.IsHTML)
 
+       require.Equal(t, "CSS", CSSFormat.Name)
+       require.Equal(t, media.CSSType, CSSFormat.MediaType)
+       require.Empty(t, CSSFormat.Path)
+       require.Empty(t, CSSFormat.Protocol) // Will inherit the BaseURL protocol.
+       require.True(t, CSSFormat.IsPlainText)
+       require.False(t, CSSFormat.IsHTML)
+
+       require.Equal(t, "CSV", CSVFormat.Name)
+       require.Equal(t, media.CSVType, CSVFormat.MediaType)
+       require.Empty(t, CSVFormat.Path)
+       require.Empty(t, CSVFormat.Protocol)
+       require.True(t, CSVFormat.IsPlainText)
+       require.False(t, CSVFormat.IsHTML)
+
        require.Equal(t, "HTML", HTMLFormat.Name)
        require.Equal(t, media.HTMLType, HTMLFormat.MediaType)
        require.Empty(t, HTMLFormat.Path)
-       require.Empty(t, HTMLFormat.Protocol) // Will inherit the BaseURL protocol.
+       require.Empty(t, HTMLFormat.Protocol)
        require.False(t, HTMLFormat.IsPlainText)
        require.True(t, HTMLFormat.IsHTML)
 
        require.Equal(t, "AMP", AMPFormat.Name)
        require.Equal(t, media.HTMLType, AMPFormat.MediaType)
        require.Equal(t, "amp", AMPFormat.Path)
-       require.Empty(t, AMPFormat.Protocol) // Will inherit the BaseURL protocol.
+       require.Empty(t, AMPFormat.Protocol)
        require.False(t, AMPFormat.IsPlainText)
        require.True(t, AMPFormat.IsHTML)