output: Identify extension-less text types as text
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 20 Jun 2017 15:20:08 +0000 (17:20 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 20 Jun 2017 15:21:31 +0000 (17:21 +0200)
See #3614

output/outputFormat.go
output/outputFormat_test.go

index 6e5f429308d5ed2c51a4c05788a1d2cbe396d23c..2b75120f58d26647ab51196b3f6278da0e00ed53 100644 (file)
@@ -219,7 +219,12 @@ func (formats Formats) FromFilename(filename string) (f Format, found bool) {
        }
 
        if ext != "" {
-               return formats.GetBySuffix(ext)
+               f, found = formats.GetBySuffix(ext)
+               if !found && len(parts) == 2 {
+                       // For extensionless output formats (e.g. Netlify's _redirects)
+                       // we must fall back to using the extension as format lookup.
+                       f, found = formats.GetByName(ext)
+               }
        }
        return
 }
index 0540eac0861f4b47b9db60560670a24bbdb65edc..18b84a0fade2826893228c829960f4aed634bc02 100644 (file)
@@ -91,6 +91,47 @@ func TestGetFormatByExt(t *testing.T) {
        require.False(t, found)
 }
 
+func TestGetFormatByFilename(t *testing.T) {
+       noExtNoDelimMediaType := media.TextType
+       noExtNoDelimMediaType.Suffix = ""
+       noExtNoDelimMediaType.Delimiter = ""
+
+       noExtMediaType := media.TextType
+       noExtMediaType.Suffix = ""
+
+       var (
+               noExtDelimFormat = Format{
+                       Name:      "NEM",
+                       MediaType: noExtNoDelimMediaType,
+                       BaseName:  "_redirects",
+               }
+               noExt = Format{
+                       Name:      "NEX",
+                       MediaType: noExtMediaType,
+                       BaseName:  "next",
+               }
+       )
+
+       formats := Formats{AMPFormat, HTMLFormat, noExtDelimFormat, noExt, CalendarFormat}
+       f, found := formats.FromFilename("my.amp.html")
+       require.True(t, found)
+       require.Equal(t, AMPFormat, f)
+       f, found = formats.FromFilename("my.ics")
+       require.True(t, found)
+       f, found = formats.FromFilename("my.html")
+       require.True(t, found)
+       require.Equal(t, HTMLFormat, f)
+       f, found = formats.FromFilename("my.nem")
+       require.True(t, found)
+       require.Equal(t, noExtDelimFormat, f)
+       f, found = formats.FromFilename("my.nex")
+       require.True(t, found)
+       require.Equal(t, noExt, f)
+       f, found = formats.FromFilename("my.css")
+       require.False(t, found)
+
+}
+
 func TestDecodeFormats(t *testing.T) {
 
        mediaTypes := media.Types{media.JSONType, media.XMLType}