"Pag: Page 02")
sections := h.findAllPagesByNodeType(NodeSection)
+
require.Len(t, sections, 2)
// Check taxonomy lists
}
func TestNodesWithAlias(t *testing.T) {
- //jww.SetStdoutThreshold(jww.LevelDebug)
- //defer jww.SetStdoutThreshold(jww.LevelFatal)
testCommonResetState()
writeLayoutsForNodeAsPageTests(t)
}
+func TestNodesWithSectionWithIndexPageOnly(t *testing.T) {
+ testCommonResetState()
+
+ writeLayoutsForNodeAsPageTests(t)
+
+ writeSource(t, filepath.Join("content", "sect", "_index.md"), `---
+title: MySection
+---
+My Section Content
+`)
+
+ viper.Set("paginate", 1)
+ viper.Set("title", "Hugo Rocks!")
+
+ s := newSiteDefaultLang()
+
+ if err := buildAndRenderSite(s); err != nil {
+ t.Fatalf("Failed to build site: %s", err)
+ }
+
+ assertFileContent(t, filepath.Join("public", "sect", "index.html"), true, "My Section")
+
+}
+
func writeRegularPagesForNodeAsPageTests(t *testing.T) {
writeRegularPagesForNodeAsPageTestsWithLang(t, "")
}
// assembleSections: Needs pages (temp lookup)
s.assembleSections()
- // TODO(bep) np
- pages := s.findPagesByNodeType(NodePage)
+ // TODO(bep) np Site.LastMod
+ pages := s.Nodes
s.Info.LastChange = pages[0].Lastmod
return
func (s *Site) assembleSections() {
s.Sections = make(Taxonomy)
s.Info.Sections = s.Sections
+ // TODO(bep) np check these vs the caches
regularPages := s.findPagesByNodeType(NodePage)
+ sectionPages := s.findPagesByNodeType(NodeSection)
+
for i, p := range regularPages {
s.Sections.add(p.Section(), WeightedPage{regularPages[i].Weight, regularPages[i]}, s.Info.preserveTaxonomyNames)
}
+ // Add sections without regular pages, but with a content page
+ for _, sectionPage := range sectionPages {
+ if _, ok := s.Sections[sectionPage.sections[0]]; !ok {
+ s.Sections[sectionPage.sections[0]] = WeightedPages{}
+ }
+ }
+
for k := range s.Sections {
s.Sections[k].Sort()