shithub: hugo

Download patch

ref: 407c24020ef2db90cf33fd07e7522b2257013722
parent: c067f34558b82455b63b9ce8f5983b4b4849c7cf
author: Bjørn Erik Pedersen <[email protected]>
date: Fri Dec 29 05:16:50 EST 2017

hugolib: Add test for homepage content for all rendering engines

Update #4166

--- a/hugolib/page_test.go
+++ b/hugolib/page_test.go
@@ -35,6 +35,7 @@
 var emptyPage = ""
 
 const (
+	homePage                             = "---\ntitle: Home\n---\nHome Page Content\n"
 	simplePage                           = "---\ntitle: Simple\n---\nSimple Page\n"
 	invalidFrontMatterMissing            = "This is a test"
 	renderNoFrontmatter                  = "<!doctype><html><head></head><body>This is a test</body></html>"
@@ -595,11 +596,21 @@
 			writeSource(t, fs, filepath.Join(contentDir, fileSourcePairs[i]), fileSourcePairs[i+1])
 		}
 
+		// Add a content page for the home page
+		homePath := fmt.Sprintf("_index.%s", e.ext)
+		writeSource(t, fs, filepath.Join(contentDir, homePath), homePage)
+
 		s := buildSingleSite(t, deps.DepsCfg{Fs: fs, Cfg: cfg}, BuildCfg{SkipRender: true})
 
 		require.Len(t, s.RegularPages, len(pageSources))
 
 		assertFunc(t, e.ext, s.RegularPages)
+
+		home, err := s.Info.Home()
+		require.NoError(t, err)
+		require.NotNil(t, home)
+		require.Equal(t, homePath, home.Path())
+		require.Contains(t, home.Content, "Home Page Content")
 
 	}