2017-03-06 05:20:30 -05:00
|
|
|
// Copyright 2017-present The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package output
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/media"
|
2017-03-07 11:26:22 -05:00
|
|
|
|
2017-03-06 05:20:30 -05:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLayout(t *testing.T) {
|
|
|
|
|
2017-06-20 02:45:52 -04:00
|
|
|
noExtNoDelimMediaType := media.TextType
|
|
|
|
noExtNoDelimMediaType.Suffix = ""
|
|
|
|
noExtNoDelimMediaType.Delimiter = ""
|
|
|
|
|
|
|
|
noExtMediaType := media.TextType
|
|
|
|
noExtMediaType.Suffix = ""
|
|
|
|
|
|
|
|
var (
|
|
|
|
ampType = Format{
|
|
|
|
Name: "AMP",
|
|
|
|
MediaType: media.HTMLType,
|
|
|
|
BaseName: "index",
|
|
|
|
}
|
|
|
|
|
|
|
|
noExtDelimFormat = Format{
|
|
|
|
Name: "NEM",
|
|
|
|
MediaType: noExtNoDelimMediaType,
|
|
|
|
BaseName: "_redirects",
|
|
|
|
}
|
|
|
|
noExt = Format{
|
|
|
|
Name: "NEX",
|
|
|
|
MediaType: noExtMediaType,
|
|
|
|
BaseName: "next",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-03-07 11:26:22 -05:00
|
|
|
for _, this := range []struct {
|
|
|
|
name string
|
2017-03-16 03:58:50 -04:00
|
|
|
d LayoutDescriptor
|
2017-03-06 13:54:46 -05:00
|
|
|
hasTheme bool
|
2017-03-06 07:18:33 -05:00
|
|
|
layoutOverride string
|
2017-03-16 03:32:14 -04:00
|
|
|
tp Format
|
2017-03-06 07:18:33 -05:00
|
|
|
expect []string
|
2017-03-06 05:20:30 -05:00
|
|
|
}{
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Home", LayoutDescriptor{Kind: "home"}, true, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"index.amp.html", "index.html", "_default/list.amp.html", "_default/list.html", "theme/index.amp.html", "theme/index.html"}},
|
2017-07-02 04:46:28 -04:00
|
|
|
{"Home, french language", LayoutDescriptor{Kind: "home", Lang: "fr"}, true, "", ampType,
|
|
|
|
[]string{"index.fr.amp.html", "index.amp.html", "index.fr.html", "index.html", "_default/list.fr.amp.html", "_default/list.amp.html", "_default/list.fr.html", "_default/list.html", "theme/index.fr.amp.html", "theme/index.amp.html", "theme/index.fr.html"}},
|
2017-06-20 02:45:52 -04:00
|
|
|
{"Home, no ext or delim", LayoutDescriptor{Kind: "home"}, true, "", noExtDelimFormat,
|
|
|
|
[]string{"index.nem", "_default/list.nem"}},
|
|
|
|
{"Home, no ext", LayoutDescriptor{Kind: "home"}, true, "", noExt,
|
|
|
|
[]string{"index.nex", "_default/list.nex"}},
|
|
|
|
{"Page, no ext or delim", LayoutDescriptor{Kind: "page"}, true, "", noExtDelimFormat,
|
|
|
|
[]string{"_default/single.nem", "theme/_default/single.nem"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Section", LayoutDescriptor{Kind: "section", Section: "sect1"}, false, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"section/sect1.amp.html", "section/sect1.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Taxonomy", LayoutDescriptor{Kind: "taxonomy", Section: "tag"}, false, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"taxonomy/tag.amp.html", "taxonomy/tag.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Taxonomy term", LayoutDescriptor{Kind: "taxonomyTerm", Section: "categories"}, false, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"taxonomy/categories.terms.amp.html", "taxonomy/categories.terms.html", "_default/terms.amp.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Page", LayoutDescriptor{Kind: "page"}, true, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"_default/single.amp.html", "_default/single.html", "theme/_default/single.amp.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Page with layout", LayoutDescriptor{Kind: "page", Layout: "mylayout"}, false, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"_default/mylayout.amp.html", "_default/mylayout.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Page with layout and type", LayoutDescriptor{Kind: "page", Layout: "mylayout", Type: "myttype"}, false, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"myttype/mylayout.amp.html", "myttype/mylayout.html", "_default/mylayout.amp.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Page with layout and type with subtype", LayoutDescriptor{Kind: "page", Layout: "mylayout", Type: "myttype/mysubtype"}, false, "", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"myttype/mysubtype/mylayout.amp.html", "myttype/mysubtype/mylayout.html", "myttype/mylayout.amp.html"}},
|
2017-03-16 03:58:50 -04:00
|
|
|
{"Page with overridden layout", LayoutDescriptor{Kind: "page", Layout: "mylayout", Type: "myttype"}, false, "myotherlayout", ampType,
|
2017-03-07 11:26:22 -05:00
|
|
|
[]string{"myttype/myotherlayout.amp.html", "myttype/myotherlayout.html"}},
|
2017-03-25 12:46:09 -04:00
|
|
|
// RSS
|
2017-03-25 14:36:50 -04:00
|
|
|
{"RSS Home with theme", LayoutDescriptor{Kind: "home"}, true, "", RSSFormat,
|
2017-03-25 12:46:09 -04:00
|
|
|
[]string{"rss.xml", "_default/rss.xml", "theme/rss.xml", "theme/_default/rss.xml", "_internal/_default/rss.xml"}},
|
2017-03-25 14:36:50 -04:00
|
|
|
{"RSS Section", LayoutDescriptor{Kind: "section", Section: "sect1"}, false, "", RSSFormat,
|
2017-03-25 12:46:09 -04:00
|
|
|
[]string{"section/sect1.rss.xml", "_default/rss.xml", "rss.xml", "_internal/_default/rss.xml"}},
|
2017-03-25 14:36:50 -04:00
|
|
|
{"RSS Taxonomy", LayoutDescriptor{Kind: "taxonomy", Section: "tag"}, false, "", RSSFormat,
|
2017-03-25 12:46:09 -04:00
|
|
|
[]string{"taxonomy/tag.rss.xml", "_default/rss.xml", "rss.xml", "_internal/_default/rss.xml"}},
|
2017-03-25 14:36:50 -04:00
|
|
|
{"RSS Taxonomy term", LayoutDescriptor{Kind: "taxonomyTerm", Section: "tag"}, false, "", RSSFormat,
|
2017-03-25 12:46:09 -04:00
|
|
|
[]string{"taxonomy/tag.terms.rss.xml", "_default/rss.xml", "rss.xml", "_internal/_default/rss.xml"}},
|
2017-03-27 14:43:49 -04:00
|
|
|
{"Home plain text", LayoutDescriptor{Kind: "home"}, true, "", JSONFormat,
|
|
|
|
[]string{"_text/index.json.json", "_text/index.json", "_text/_default/list.json.json", "_text/_default/list.json", "_text/theme/index.json.json", "_text/theme/index.json"}},
|
|
|
|
{"Page plain text", LayoutDescriptor{Kind: "page"}, true, "", JSONFormat,
|
|
|
|
[]string{"_text/_default/single.json.json", "_text/_default/single.json", "_text/theme/_default/single.json.json"}},
|
2017-03-06 05:20:30 -05:00
|
|
|
} {
|
2017-03-07 11:26:22 -05:00
|
|
|
t.Run(this.name, func(t *testing.T) {
|
|
|
|
l := NewLayoutHandler(this.hasTheme)
|
|
|
|
|
2017-03-26 13:34:30 -04:00
|
|
|
layouts, err := l.For(this.d, this.layoutOverride, this.tp)
|
2017-03-07 11:26:22 -05:00
|
|
|
|
2017-03-26 13:34:30 -04:00
|
|
|
require.NoError(t, err)
|
2017-03-07 11:26:22 -05:00
|
|
|
require.NotNil(t, layouts)
|
|
|
|
require.True(t, len(layouts) >= len(this.expect))
|
|
|
|
// Not checking the complete list for now ...
|
|
|
|
require.Equal(t, this.expect, layouts[:len(this.expect)])
|
2017-03-06 13:54:46 -05:00
|
|
|
|
2017-03-07 11:26:22 -05:00
|
|
|
if !this.hasTheme {
|
|
|
|
for _, layout := range layouts {
|
|
|
|
require.NotContains(t, layout, "theme")
|
|
|
|
}
|
2017-03-06 13:54:46 -05:00
|
|
|
}
|
2017-03-07 11:26:22 -05:00
|
|
|
})
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|
2017-03-18 11:46:10 -04:00
|
|
|
|
2017-03-26 13:34:30 -04:00
|
|
|
l := NewLayoutHandler(false)
|
|
|
|
_, err := l.For(LayoutDescriptor{Kind: "taxonomyTerm", Section: "tag"}, "override", RSSFormat)
|
|
|
|
require.Error(t, err)
|
|
|
|
|
2017-03-18 11:46:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLayout(b *testing.B) {
|
|
|
|
descriptor := LayoutDescriptor{Kind: "taxonomyTerm", Section: "categories"}
|
|
|
|
l := NewLayoutHandler(false)
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
2017-03-26 13:34:30 -04:00
|
|
|
layouts, err := l.For(descriptor, "", HTMLFormat)
|
|
|
|
require.NoError(b, err)
|
2017-03-18 11:46:10 -04:00
|
|
|
require.NotEmpty(b, layouts)
|
|
|
|
}
|
2017-03-06 05:20:30 -05:00
|
|
|
}
|