n := s.newNodePage(NodeSitemap)
- // Prepend homepage to the list of pages
- pages := make(Pages, 0)
+ // Include all pages (regular, home page, taxonomies etc.)
+ pages := s.Nodes
page := s.newNodePage(NodeSitemap)
page.URLPath.URL = ""
page.Sitemap.ChangeFreq = sitemapDefault.ChangeFreq
page.Sitemap.Priority = sitemapDefault.Priority
-
- pages = append(pages, page)
- pages = append(pages, s.Pages...)
+ page.Sitemap.Filename = sitemapDefault.Filename
n.Data["Pages"] = pages
+ // TODO(bep) this should be done somewhere else
for _, page := range pages {
if page.Sitemap.ChangeFreq == "" {
page.Sitemap.ChangeFreq = sitemapDefault.ChangeFreq
"testing"
"reflect"
- "strings"
"github.com/spf13/hugo/helpers"
"github.com/spf13/hugo/source"
</urlset>`
func TestSitemapOutput(t *testing.T) {
+ for _, internal := range []bool{false, true} {
+ doTestSitemapOutput(t, internal)
+ }
+}
+
+func doTestSitemapOutput(t *testing.T, internal bool) {
testCommonResetState()
viper.Set("baseURL", "http://auth/bub/")
Language: helpers.NewDefaultLanguage(),
}
- if err := buildAndRenderSite(s, "sitemap.xml", SITEMAP_TEMPLATE); err != nil {
- t.Fatalf("Failed to build site: %s", err)
+ if internal {
+ if err := buildAndRenderSite(s); err != nil {
+ t.Fatalf("Failed to build site: %s", err)
+ }
+
+ } else {
+ if err := buildAndRenderSite(s, "sitemap.xml", SITEMAP_TEMPLATE); err != nil {
+ t.Fatalf("Failed to build site: %s", err)
+ }
}
- sitemapContent := readDestination(t, "public/sitemap.xml")
+ assertFileContent(t, "public/sitemap.xml", true,
+ // Regular page
+ " <loc>http://auth/bub/sect/doc1/</loc>",
+ // Home page
+ "<loc>http://auth/bub/</loc>",
+ // Section
+ "<loc>http://auth/bub/sect/</loc>",
+ // Tax terms
+ "<loc>http://auth/bub/categories/</loc>",
+ // Tax list
+ "<loc>http://auth/bub/categories/hugo/</loc>",
+ )
- if !strings.HasPrefix(sitemapContent, "<?xml") {
- t.Errorf("Sitemap file should start with <?xml. %s", sitemapContent)
- }
}
func TestParseSitemap(t *testing.T) {