mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
75e55cd06f
commit
32336e9ec6
2 changed files with 6 additions and 6 deletions
|
@ -19,14 +19,14 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
var SIMPLE_PAGE_YAML = `---
|
var simplePageYAML = `---
|
||||||
contenttype: ""
|
contenttype: ""
|
||||||
---
|
---
|
||||||
Sample Text
|
Sample Text
|
||||||
`
|
`
|
||||||
|
|
||||||
func TestDegenerateMissingFolderInPageFilename(t *testing.T) {
|
func TestDegenerateMissingFolderInPageFilename(t *testing.T) {
|
||||||
p, err := NewPageFrom(strings.NewReader(SIMPLE_PAGE_YAML), filepath.Join("foobar"))
|
p, err := NewPageFrom(strings.NewReader(simplePageYAML), filepath.Join("foobar"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("Error in NewPageFrom")
|
t.Fatalf("Error in NewPageFrom")
|
||||||
}
|
}
|
||||||
|
@ -48,9 +48,9 @@ func TestNewPageWithFilePath(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, el := range toCheck {
|
for i, el := range toCheck {
|
||||||
p, err := NewPageFrom(strings.NewReader(SIMPLE_PAGE_YAML), el.input)
|
p, err := NewPageFrom(strings.NewReader(simplePageYAML), el.input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("[%d] Reading from SIMPLE_PAGE_YAML resulted in an error: %s", i, err)
|
t.Errorf("[%d] Reading from simplePageYAML resulted in an error: %s", i, err)
|
||||||
}
|
}
|
||||||
if p.Section() != el.section {
|
if p.Section() != el.section {
|
||||||
t.Errorf("[%d] Section incorrect page %s. got %s but expected %s", i, el.input, p.Section(), el.section)
|
t.Errorf("[%d] Section incorrect page %s. got %s but expected %s", i, el.input, p.Section(), el.section)
|
||||||
|
|
|
@ -23,7 +23,7 @@ import (
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
)
|
)
|
||||||
|
|
||||||
const SITEMAP_TEMPLATE = `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
const sitemapTemplate = `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
{{ range .Data.Pages }}
|
{{ range .Data.Pages }}
|
||||||
<url>
|
<url>
|
||||||
<loc>{{ .Permalink }}</loc>
|
<loc>{{ .Permalink }}</loc>
|
||||||
|
@ -56,7 +56,7 @@ func doTestSitemapOutput(t *testing.T, internal bool) {
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
if err := buildAndRenderSite(s, "sitemap.xml", SITEMAP_TEMPLATE); err != nil {
|
if err := buildAndRenderSite(s, "sitemap.xml", sitemapTemplate); err != nil {
|
||||||
t.Fatalf("Failed to build site: %s", err)
|
t.Fatalf("Failed to build site: %s", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue