hugolib: Add test for no 404 in sitemap
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 6 Jun 2017 06:09:25 +0000 (08:09 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 6 Jun 2017 06:09:25 +0000 (08:09 +0200)
Closes #3563

hugolib/sitemap_test.go

index 47f29c94774e7da64024a85e53871661d7c46f94..a59d097569e571366b85b29ac4797a420f0b348f 100644 (file)
@@ -18,6 +18,8 @@ import (
 
        "reflect"
 
+       "github.com/stretchr/testify/require"
+
        "github.com/spf13/hugo/deps"
        "github.com/spf13/hugo/tpl"
 )
@@ -47,18 +49,24 @@ func doTestSitemapOutput(t *testing.T, internal bool) {
 
        depsCfg := deps.DepsCfg{Fs: fs, Cfg: cfg}
 
-       if !internal {
-               depsCfg.WithTemplate = func(templ tpl.TemplateHandler) error {
+       depsCfg.WithTemplate = func(templ tpl.TemplateHandler) error {
+               if !internal {
                        templ.AddTemplate("sitemap.xml", sitemapTemplate)
-                       return nil
                }
+
+               // We want to check that the 404 page is not included in the sitemap
+               // output. This template should have no effect either way, but include
+               // it for the clarity.
+               templ.AddTemplate("404.html", "Not found")
+               return nil
        }
 
        writeSourcesToSource(t, "content", fs, weightedSources...)
        s := buildSingleSite(t, depsCfg, BuildCfg{})
        th := testHelper{s.Cfg, s.Fs, t}
+       outputSitemap := "public/sitemap.xml"
 
-       th.assertFileContent("public/sitemap.xml",
+       th.assertFileContent(outputSitemap,
                // Regular page
                " <loc>http://auth/bub/sect/doc1/</loc>",
                // Home page
@@ -71,6 +79,9 @@ func doTestSitemapOutput(t *testing.T, internal bool) {
                "<loc>http://auth/bub/categories/hugo/</loc>",
        )
 
+       content := readDestination(th.T, th.Fs, outputSitemap)
+       require.NotContains(t, content, "404")
+
 }
 
 func TestParseSitemap(t *testing.T) {