hugolib: Fix draft etc. handling of _index.md pages
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Aug 2019 16:25:21 +0000 (18:25 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Aug 2019 18:41:48 +0000 (20:41 +0200)
We will need to revisit this with a proper spec, but this commit makes sure that draft/expiryDate etc. set in front matter on _index.md content files that should disable the page will:

* Not crash
* Make the rendered page not render any `.Content`.

Fixes #6222
Fixes #6210

hugolib/page__per_output.go
hugolib/taxonomy_test.go

index 70bb3b223f5981900a902daa17b23c2861ad3abe..3638f9669bb02c39c83a6c001c8e0f924cff1312 100644 (file)
@@ -67,6 +67,10 @@ func newPageContentOutput(p *pageState) func(f output.Format) (*pageContentOutpu
                }
 
                initContent := func() (err error) {
+                       if p.cmap == nil {
+                               // Nothing to do.
+                               return nil
+                       }
                        defer func() {
                                // See https://github.com/gohugoio/hugo/issues/6210
                                if r := recover(); r != nil {
index 294e4f1a0db9bffbaa5daf349fb29f30ea62e771..e159f8c130c0dd0830987fcaef76b6082b2d9cbc 100644 (file)
@@ -352,3 +352,33 @@ categories: ["regular"]
        b.Assert(dra, qt.IsNil)
 
 }
+
+// See https://github.com/gohugoio/hugo/issues/6222
+// We need to revisit this once we figure out what to do with the
+// draft etc _index pages, but for now we need to avoid the crash.
+func TestTaxonomiesIndexDraft(t *testing.T) {
+       t.Parallel()
+
+       b := newTestSitesBuilder(t)
+       b.WithContent(
+               "categories/_index.md", `---
+title: "The Categories"
+draft: true
+---
+
+This is the invisible content.
+
+`)
+
+       b.WithTemplates("index.html", `
+{{ range .Site.Pages }}
+{{ .RelPermalink }}|{{ .Title }}|{{ .WordCount }}|{{ .Content }}|
+{{ end }}
+`)
+
+       b.Build(BuildCfg{})
+
+       // We publish the index page, but the content will be empty.
+       b.AssertFileContent("public/index.html", " /categories/|The Categories|0||")
+
+}