2016-10-30 12:59:24 -04:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
2016-11-11 05:35:55 -05:00
|
|
|
"time"
|
2016-10-30 12:59:24 -04:00
|
|
|
|
2016-10-31 13:03:02 -04:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2016-10-31 05:23:01 -04:00
|
|
|
"github.com/spf13/viper"
|
2016-10-30 12:59:24 -04:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
This file will test the "making everything a page" transition.
|
|
|
|
|
|
|
|
See https://github.com/spf13/hugo/issues/2297
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-10-31 13:03:02 -04:00
|
|
|
func TestNodesAsPage(t *testing.T) {
|
2016-11-03 19:34:25 -04:00
|
|
|
//jww.SetStdoutThreshold(jww.LevelDebug)
|
|
|
|
jww.SetStdoutThreshold(jww.LevelFatal)
|
2016-10-31 13:03:02 -04:00
|
|
|
|
2016-10-30 12:59:24 -04:00
|
|
|
/* Will have to decide what to name the node content files, but:
|
|
|
|
|
|
|
|
Home page should have:
|
|
|
|
Content, shortcode support
|
|
|
|
Metadata (title, dates etc.)
|
|
|
|
Params
|
|
|
|
Taxonomies (categories, tags)
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
testCommonResetState()
|
|
|
|
|
2016-11-01 17:39:24 -04:00
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
2016-11-07 14:24:37 -05:00
|
|
|
writeNodePagesForNodeAsPageTests("", t)
|
2016-10-30 12:59:24 -04:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
writeRegularPagesForNodeAsPageTests(t)
|
2016-10-30 12:59:24 -04:00
|
|
|
|
2016-10-31 13:03:02 -04:00
|
|
|
viper.Set("paginate", 1)
|
2016-11-02 16:34:19 -04:00
|
|
|
viper.Set("title", "Hugo Rocks")
|
|
|
|
viper.Set("rssURI", "customrss.xml")
|
2016-10-31 05:23:01 -04:00
|
|
|
|
2016-10-30 12:59:24 -04:00
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
// date order: home, sect1, sect2, cat/hugo, cat/web, categories
|
|
|
|
|
2016-10-30 12:59:24 -04:00
|
|
|
assertFileContent(t, filepath.Join("public", "index.html"), false,
|
|
|
|
"Index Title: Home Sweet Home!",
|
|
|
|
"Home <strong>Content!</strong>",
|
2016-11-11 05:35:55 -05:00
|
|
|
"# Pages: 9",
|
|
|
|
"Date: 2009-01-02",
|
|
|
|
"Lastmod: 2009-01-03",
|
2016-11-12 11:30:21 -05:00
|
|
|
"GetPage: Section1 ",
|
2016-11-11 05:35:55 -05:00
|
|
|
)
|
2016-10-31 05:23:01 -04:00
|
|
|
|
2016-10-31 13:03:02 -04:00
|
|
|
assertFileContent(t, filepath.Join("public", "sect1", "regular1", "index.html"), false, "Single Title: Page 01", "Content Page 01")
|
2016-10-30 12:59:24 -04:00
|
|
|
|
|
|
|
h := s.owner
|
2016-11-16 11:52:03 -05:00
|
|
|
nodes := h.findAllPagesByKindNotIn(KindPage)
|
2016-11-11 05:35:55 -05:00
|
|
|
require.Len(t, nodes, 6)
|
2016-10-30 12:59:24 -04:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
home := nodes[5] // oldest
|
2016-10-30 12:59:24 -04:00
|
|
|
|
|
|
|
require.True(t, home.IsHome())
|
|
|
|
require.True(t, home.IsNode())
|
|
|
|
require.False(t, home.IsPage())
|
2016-11-13 08:27:10 -05:00
|
|
|
require.True(t, home.Path() != "")
|
2016-10-30 12:59:24 -04:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
section2 := nodes[3]
|
|
|
|
require.Equal(t, "Section2", section2.Title)
|
|
|
|
|
2016-11-16 11:52:03 -05:00
|
|
|
pages := h.findAllPagesByKind(KindPage)
|
2016-10-31 13:03:02 -04:00
|
|
|
require.Len(t, pages, 4)
|
2016-10-30 12:59:24 -04:00
|
|
|
|
|
|
|
first := pages[0]
|
2016-11-11 05:35:55 -05:00
|
|
|
|
2016-10-30 12:59:24 -04:00
|
|
|
require.False(t, first.IsHome())
|
|
|
|
require.False(t, first.IsNode())
|
|
|
|
require.True(t, first.IsPage())
|
|
|
|
|
2016-10-31 13:03:02 -04:00
|
|
|
// Check Home paginator
|
|
|
|
assertFileContent(t, filepath.Join("public", "page", "2", "index.html"), false,
|
|
|
|
"Pag: Page 02")
|
|
|
|
|
|
|
|
// Check Sections
|
2016-11-11 05:35:55 -05:00
|
|
|
assertFileContent(t, filepath.Join("public", "sect1", "index.html"), false,
|
|
|
|
"Section Title: Section", "Section1 <strong>Content!</strong>",
|
|
|
|
"Date: 2009-01-04",
|
|
|
|
"Lastmod: 2009-01-05",
|
|
|
|
)
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect2", "index.html"), false,
|
|
|
|
"Section Title: Section", "Section2 <strong>Content!</strong>",
|
|
|
|
"Date: 2009-01-06",
|
|
|
|
"Lastmod: 2009-01-07",
|
|
|
|
)
|
2016-10-31 13:03:02 -04:00
|
|
|
|
|
|
|
// Check Sections paginator
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect1", "page", "2", "index.html"), false,
|
|
|
|
"Pag: Page 02")
|
|
|
|
|
2016-11-16 11:52:03 -05:00
|
|
|
sections := h.findAllPagesByKind(KindSection)
|
2016-11-10 06:26:23 -05:00
|
|
|
|
2016-10-31 13:03:02 -04:00
|
|
|
require.Len(t, sections, 2)
|
2016-10-31 05:23:01 -04:00
|
|
|
|
2016-11-01 11:47:15 -04:00
|
|
|
// Check taxonomy lists
|
2016-10-31 14:53:33 -04:00
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "hugo", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Taxonomy Title: Taxonomy Hugo", "Taxonomy Hugo <strong>Content!</strong>",
|
|
|
|
"Date: 2009-01-08",
|
|
|
|
"Lastmod: 2009-01-09",
|
|
|
|
)
|
2016-10-31 14:53:33 -04:00
|
|
|
|
2016-11-01 11:47:15 -04:00
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "web", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Taxonomy Title: Taxonomy Web",
|
|
|
|
"Taxonomy Web <strong>Content!</strong>",
|
|
|
|
"Date: 2009-01-10",
|
|
|
|
"Lastmod: 2009-01-11",
|
|
|
|
)
|
2016-11-01 11:47:15 -04:00
|
|
|
|
2016-10-31 14:53:33 -04:00
|
|
|
// Check taxonomy list paginator
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "hugo", "page", "2", "index.html"), false,
|
|
|
|
"Taxonomy Title: Taxonomy Hugo",
|
|
|
|
"Pag: Page 02")
|
|
|
|
|
2016-11-01 11:47:15 -04:00
|
|
|
// Check taxonomy terms
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Taxonomy Terms Title: Taxonomy Term Categories", "Taxonomy Term Categories <strong>Content!</strong>", "k/v: hugo",
|
|
|
|
"Date: 2009-01-12",
|
|
|
|
"Lastmod: 2009-01-13",
|
|
|
|
)
|
2016-11-01 11:47:15 -04:00
|
|
|
|
|
|
|
// There are no pages to paginate over in the taxonomy terms.
|
|
|
|
|
2016-11-02 16:34:19 -04:00
|
|
|
// RSS
|
|
|
|
assertFileContent(t, filepath.Join("public", "customrss.xml"), false, "Recent content in Home Sweet Home! on Hugo Rocks", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect1", "customrss.xml"), false, "Recent content in Section1 on Hugo Rocks", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect2", "customrss.xml"), false, "Recent content in Section2 on Hugo Rocks", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "hugo", "customrss.xml"), false, "Recent content in Taxonomy Hugo on Hugo Rocks", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "web", "customrss.xml"), false, "Recent content in Taxonomy Web on Hugo Rocks", "<rss")
|
|
|
|
|
2016-10-30 12:59:24 -04:00
|
|
|
}
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
func TestNodesWithNoContentFile(t *testing.T) {
|
2016-11-03 19:34:25 -04:00
|
|
|
//jww.SetStdoutThreshold(jww.LevelDebug)
|
|
|
|
jww.SetStdoutThreshold(jww.LevelFatal)
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
2016-11-09 14:55:42 -05:00
|
|
|
writeRegularPagesForNodeAsPageTests(t)
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
viper.Set("paginate", 1)
|
|
|
|
viper.Set("title", "Hugo Rocks!")
|
2016-11-02 16:34:19 -04:00
|
|
|
viper.Set("rssURI", "customrss.xml")
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Home page
|
2016-11-16 11:52:03 -05:00
|
|
|
homePages := s.findPagesByKind(KindHome)
|
2016-11-01 17:39:24 -04:00
|
|
|
require.Len(t, homePages, 1)
|
|
|
|
|
|
|
|
homePage := homePages[0]
|
2016-11-11 03:01:47 -05:00
|
|
|
require.Len(t, homePage.Data["Pages"], 9)
|
2016-11-11 03:19:16 -05:00
|
|
|
require.Len(t, homePage.Pages, 9) // Alias
|
2016-11-13 08:27:10 -05:00
|
|
|
require.True(t, homePage.Path() == "")
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Index Title: Hugo Rocks!",
|
|
|
|
"Date: 2010-06-12",
|
|
|
|
"Lastmod: 2010-06-13",
|
|
|
|
)
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
// Taxonomy list
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "hugo", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Taxonomy Title: Hugo",
|
|
|
|
"Date: 2010-06-12",
|
|
|
|
"Lastmod: 2010-06-13",
|
|
|
|
)
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
// Taxonomy terms
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Taxonomy Terms Title: Categories",
|
|
|
|
)
|
2016-11-01 17:39:24 -04:00
|
|
|
|
|
|
|
// Sections
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect1", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Section Title: Sect1s",
|
|
|
|
"Date: 2010-06-12",
|
|
|
|
"Lastmod: 2010-06-13",
|
|
|
|
)
|
|
|
|
|
2016-11-01 17:39:24 -04:00
|
|
|
assertFileContent(t, filepath.Join("public", "sect2", "index.html"), false,
|
2016-11-11 05:35:55 -05:00
|
|
|
"Section Title: Sect2s",
|
|
|
|
"Date: 2008-07-06",
|
|
|
|
"Lastmod: 2008-07-09",
|
|
|
|
)
|
2016-11-01 17:39:24 -04:00
|
|
|
|
2016-11-02 16:34:19 -04:00
|
|
|
// RSS
|
|
|
|
assertFileContent(t, filepath.Join("public", "customrss.xml"), false, "Recent content in Hugo Rocks! on Hugo Rocks!", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect1", "customrss.xml"), false, "Recent content in Sect1s on Hugo Rocks!", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect2", "customrss.xml"), false, "Recent content in Sect2s on Hugo Rocks!", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "hugo", "customrss.xml"), false, "Recent content in Hugo on Hugo Rocks!", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "web", "customrss.xml"), false, "Recent content in Web on Hugo Rocks!", "<rss")
|
|
|
|
|
2016-11-01 17:39:24 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 14:24:37 -05:00
|
|
|
func TestNodesAsPageMultilingual(t *testing.T) {
|
|
|
|
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeSource(t, "config.toml",
|
|
|
|
`
|
|
|
|
paginage = 1
|
|
|
|
title = "Hugo Multilingual Rocks!"
|
|
|
|
rssURI = "customrss.xml"
|
|
|
|
|
|
|
|
[languages]
|
|
|
|
[languages.nn]
|
|
|
|
languageName = "Nynorsk"
|
|
|
|
weight = 1
|
|
|
|
title = "Hugo på norsk"
|
|
|
|
defaultContentLanguage = "nn"
|
|
|
|
|
|
|
|
[languages.en]
|
|
|
|
languageName = "English"
|
|
|
|
weight = 2
|
|
|
|
title = "Hugo in English"
|
|
|
|
`)
|
|
|
|
|
|
|
|
for _, lang := range []string{"nn", "en"} {
|
2016-11-09 14:55:42 -05:00
|
|
|
writeRegularPagesForNodeAsPageTestsWithLang(t, lang)
|
2016-11-07 14:24:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Only write node pages for the English side of the fence
|
|
|
|
writeNodePagesForNodeAsPageTests("en", t)
|
|
|
|
|
|
|
|
if err := LoadGlobalConfig("", "config.toml"); err != nil {
|
|
|
|
t.Fatalf("Failed to load config: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sites, err := NewHugoSitesFromConfiguration()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create sites: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(sites.Sites) != 2 {
|
|
|
|
t.Fatalf("Got %d sites", len(sites.Sites))
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sites.Build(BuildCfg{})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to build sites: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The en language has content pages
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "index.html"), true,
|
|
|
|
"Index Title: Hugo på norsk")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "index.html"), true,
|
|
|
|
"Index Title: Home Sweet Home!", "<strong>Content!</strong>")
|
|
|
|
|
|
|
|
// Taxonomy list
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "categories", "hugo", "index.html"), true,
|
|
|
|
"Taxonomy Title: Hugo")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "categories", "hugo", "index.html"), true,
|
|
|
|
"Taxonomy Title: Taxonomy Hugo")
|
|
|
|
|
|
|
|
// Taxonomy terms
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "categories", "index.html"), true,
|
|
|
|
"Taxonomy Terms Title: Categories")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "categories", "index.html"), true,
|
|
|
|
"Taxonomy Terms Title: Taxonomy Term Categories")
|
|
|
|
|
|
|
|
// Sections
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "sect1", "index.html"), true,
|
|
|
|
"Section Title: Sect1s")
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "sect2", "index.html"), true,
|
|
|
|
"Section Title: Sect2s")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "sect1", "index.html"), true,
|
|
|
|
"Section Title: Section1")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "sect2", "index.html"), true,
|
|
|
|
"Section Title: Section2")
|
|
|
|
|
|
|
|
// RSS
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "customrss.xml"), true, "Recent content in Hugo på norsk on Hugo på norsk", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "sect1", "customrss.xml"), true, "Recent content in Sect1s on Hugo på norsk", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "sect2", "customrss.xml"), true, "Recent content in Sect2s on Hugo på norsk", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "categories", "hugo", "customrss.xml"), true, "Recent content in Hugo on Hugo på norsk", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "nn", "categories", "web", "customrss.xml"), true, "Recent content in Web on Hugo på norsk", "<rss")
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "customrss.xml"), true, "Recent content in Home Sweet Home! on Hugo in English", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "sect1", "customrss.xml"), true, "Recent content in Section1 on Hugo in English", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "sect2", "customrss.xml"), true, "Recent content in Section2 on Hugo in English", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "categories", "hugo", "customrss.xml"), true, "Recent content in Taxonomy Hugo on Hugo in English", "<rss")
|
|
|
|
assertFileContent(t, filepath.Join("public", "en", "categories", "web", "customrss.xml"), true, "Recent content in Taxonomy Web on Hugo in English", "<rss")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-09 14:55:42 -05:00
|
|
|
func TestNodesWithTaxonomies(t *testing.T) {
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
|
|
|
writeRegularPagesForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("content", "_index.md"), `---
|
|
|
|
title: Home With Taxonomies
|
|
|
|
categories: [
|
|
|
|
"Hugo",
|
|
|
|
"Home"
|
|
|
|
]
|
|
|
|
---
|
|
|
|
`)
|
|
|
|
|
|
|
|
viper.Set("paginate", 1)
|
|
|
|
viper.Set("title", "Hugo Rocks!")
|
|
|
|
|
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "hugo", "index.html"), true, "Taxonomy Title: Hugo", "# Pages: 5")
|
|
|
|
assertFileContent(t, filepath.Join("public", "categories", "home", "index.html"), true, "Taxonomy Title: Home", "# Pages: 1")
|
2016-11-09 14:55:42 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-10 04:53:12 -05:00
|
|
|
func TestNodesWithMenu(t *testing.T) {
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
|
|
|
writeRegularPagesForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("content", "_index.md"), `---
|
|
|
|
title: Home With Menu
|
|
|
|
menu:
|
|
|
|
mymenu:
|
|
|
|
name: "Go Home!"
|
|
|
|
---
|
|
|
|
`)
|
|
|
|
|
|
|
|
viper.Set("paginate", 1)
|
|
|
|
viper.Set("title", "Hugo Rocks!")
|
|
|
|
|
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "index.html"), true, "Home With Menu", "Menu Item: Go Home!")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-10 05:01:58 -05:00
|
|
|
func TestNodesWithAlias(t *testing.T) {
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
|
|
|
writeRegularPagesForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("content", "_index.md"), `---
|
|
|
|
title: Home With Alias
|
|
|
|
aliases:
|
|
|
|
- /my/new/home.html
|
|
|
|
---
|
|
|
|
`)
|
|
|
|
|
|
|
|
viper.Set("paginate", 1)
|
2016-11-15 04:43:49 -05:00
|
|
|
viper.Set("baseURL", "http://base/")
|
2016-11-10 05:01:58 -05:00
|
|
|
viper.Set("title", "Hugo Rocks!")
|
|
|
|
|
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "index.html"), true, "Home With Alias")
|
2016-11-15 04:43:49 -05:00
|
|
|
assertFileContent(t, filepath.Join("public", "my", "new", "home.html"), true, "content=\"0; url=http://base/")
|
2016-11-10 05:01:58 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-10 06:26:23 -05:00
|
|
|
func TestNodesWithSectionWithIndexPageOnly(t *testing.T) {
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("content", "sect", "_index.md"), `---
|
|
|
|
title: MySection
|
|
|
|
---
|
|
|
|
My Section Content
|
|
|
|
`)
|
|
|
|
|
|
|
|
viper.Set("paginate", 1)
|
|
|
|
viper.Set("title", "Hugo Rocks!")
|
|
|
|
|
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect", "index.html"), true, "My Section")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-15 04:43:49 -05:00
|
|
|
func TestNodesWithURLs(t *testing.T) {
|
|
|
|
testCommonResetState()
|
|
|
|
|
|
|
|
writeLayoutsForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeRegularPagesForNodeAsPageTests(t)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("content", "sect", "_index.md"), `---
|
|
|
|
title: MySection
|
|
|
|
url: foo.html
|
|
|
|
---
|
|
|
|
My Section Content
|
|
|
|
`)
|
|
|
|
|
|
|
|
viper.Set("paginate", 1)
|
|
|
|
viper.Set("title", "Hugo Rocks!")
|
|
|
|
viper.Set("baseURL", "http://bep.is/base/")
|
|
|
|
|
|
|
|
s := newSiteDefaultLang()
|
|
|
|
|
|
|
|
if err := buildAndRenderSite(s); err != nil {
|
|
|
|
t.Fatalf("Failed to build site: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
assertFileContent(t, filepath.Join("public", "sect", "index.html"), true, "My Section")
|
|
|
|
|
|
|
|
p := s.RegularPages[0]
|
|
|
|
|
|
|
|
require.Equal(t, "/base/sect1/regular1/", p.URL())
|
|
|
|
|
|
|
|
// Section with front matter and url set (which should not be used)
|
|
|
|
sect := s.getPage(KindSection, "sect")
|
|
|
|
require.Equal(t, "/base/sect/", sect.URL())
|
|
|
|
require.Equal(t, "http://bep.is/base/sect/", sect.Permalink())
|
|
|
|
require.Equal(t, "/base/sect/", sect.RelPermalink())
|
|
|
|
|
|
|
|
// Home page without front matter
|
|
|
|
require.Equal(t, "/base/", s.getPage(KindHome).URL())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-09 14:55:42 -05:00
|
|
|
func writeRegularPagesForNodeAsPageTests(t *testing.T) {
|
|
|
|
writeRegularPagesForNodeAsPageTestsWithLang(t, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeRegularPagesForNodeAsPageTestsWithLang(t *testing.T, lang string) {
|
|
|
|
var langStr string
|
|
|
|
|
|
|
|
if lang != "" {
|
|
|
|
langStr = lang + "."
|
|
|
|
}
|
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
format := "2006-01-02"
|
|
|
|
|
|
|
|
date, _ := time.Parse(format, "2010-06-15")
|
|
|
|
|
2016-11-09 14:55:42 -05:00
|
|
|
for i := 1; i <= 4; i++ {
|
|
|
|
sect := "sect1"
|
|
|
|
if i > 2 {
|
|
|
|
sect = "sect2"
|
2016-11-11 05:35:55 -05:00
|
|
|
|
|
|
|
date, _ = time.Parse(format, "2008-07-15") // Nodes are placed in 2009
|
|
|
|
|
2016-11-09 14:55:42 -05:00
|
|
|
}
|
2016-11-11 05:35:55 -05:00
|
|
|
date = date.Add(-24 * time.Duration(i) * time.Hour)
|
2016-11-09 14:55:42 -05:00
|
|
|
writeSource(t, filepath.Join("content", sect, fmt.Sprintf("regular%d.%smd", i, langStr)), fmt.Sprintf(`---
|
|
|
|
title: Page %02d
|
2016-11-11 05:35:55 -05:00
|
|
|
lastMod : %q
|
|
|
|
date : %q
|
2016-11-09 14:55:42 -05:00
|
|
|
categories: [
|
|
|
|
"Hugo",
|
|
|
|
"Web"
|
|
|
|
]
|
|
|
|
---
|
|
|
|
Content Page %02d
|
2016-11-11 05:35:55 -05:00
|
|
|
`, i, date.Add(time.Duration(i)*-24*time.Hour).Format(time.RFC822), date.Add(time.Duration(i)*-2*24*time.Hour).Format(time.RFC822), i))
|
2016-11-09 14:55:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 14:24:37 -05:00
|
|
|
func writeNodePagesForNodeAsPageTests(lang string, t *testing.T) {
|
|
|
|
|
|
|
|
filename := "_index.md"
|
|
|
|
|
|
|
|
if lang != "" {
|
|
|
|
filename = fmt.Sprintf("_index.%s.md", lang)
|
|
|
|
}
|
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
format := "2006-01-02"
|
|
|
|
|
|
|
|
date, _ := time.Parse(format, "2009-01-01")
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("content", filename), fmt.Sprintf(`---
|
2016-11-07 14:24:37 -05:00
|
|
|
title: Home Sweet Home!
|
2016-11-11 05:35:55 -05:00
|
|
|
date : %q
|
|
|
|
lastMod : %q
|
2016-11-07 14:24:37 -05:00
|
|
|
---
|
|
|
|
Home **Content!**
|
2016-11-11 05:35:55 -05:00
|
|
|
`, date.Add(1*24*time.Hour).Format(time.RFC822), date.Add(2*24*time.Hour).Format(time.RFC822)))
|
2016-11-07 14:24:37 -05:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
writeSource(t, filepath.Join("content", "sect1", filename), fmt.Sprintf(`---
|
2016-11-07 14:24:37 -05:00
|
|
|
title: Section1
|
2016-11-11 05:35:55 -05:00
|
|
|
date : %q
|
|
|
|
lastMod : %q
|
2016-11-07 14:24:37 -05:00
|
|
|
---
|
|
|
|
Section1 **Content!**
|
2016-11-11 05:35:55 -05:00
|
|
|
`, date.Add(3*24*time.Hour).Format(time.RFC822), date.Add(4*24*time.Hour).Format(time.RFC822)))
|
|
|
|
writeSource(t, filepath.Join("content", "sect2", filename), fmt.Sprintf(`---
|
2016-11-07 14:24:37 -05:00
|
|
|
title: Section2
|
2016-11-11 05:35:55 -05:00
|
|
|
date : %q
|
|
|
|
lastMod : %q
|
2016-11-07 14:24:37 -05:00
|
|
|
---
|
|
|
|
Section2 **Content!**
|
2016-11-11 05:35:55 -05:00
|
|
|
`, date.Add(5*24*time.Hour).Format(time.RFC822), date.Add(6*24*time.Hour).Format(time.RFC822)))
|
2016-11-07 14:24:37 -05:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
writeSource(t, filepath.Join("content", "categories", "hugo", filename), fmt.Sprintf(`---
|
2016-11-07 14:24:37 -05:00
|
|
|
title: Taxonomy Hugo
|
2016-11-11 05:35:55 -05:00
|
|
|
date : %q
|
|
|
|
lastMod : %q
|
2016-11-07 14:24:37 -05:00
|
|
|
---
|
|
|
|
Taxonomy Hugo **Content!**
|
2016-11-11 05:35:55 -05:00
|
|
|
`, date.Add(7*24*time.Hour).Format(time.RFC822), date.Add(8*24*time.Hour).Format(time.RFC822)))
|
2016-11-07 14:24:37 -05:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
writeSource(t, filepath.Join("content", "categories", "web", filename), fmt.Sprintf(`---
|
2016-11-07 14:24:37 -05:00
|
|
|
title: Taxonomy Web
|
2016-11-11 05:35:55 -05:00
|
|
|
date : %q
|
|
|
|
lastMod : %q
|
2016-11-07 14:24:37 -05:00
|
|
|
---
|
|
|
|
Taxonomy Web **Content!**
|
2016-11-11 05:35:55 -05:00
|
|
|
`, date.Add(9*24*time.Hour).Format(time.RFC822), date.Add(10*24*time.Hour).Format(time.RFC822)))
|
2016-11-07 14:24:37 -05:00
|
|
|
|
2016-11-11 05:35:55 -05:00
|
|
|
writeSource(t, filepath.Join("content", "categories", filename), fmt.Sprintf(`---
|
2016-11-07 14:24:37 -05:00
|
|
|
title: Taxonomy Term Categories
|
2016-11-11 05:35:55 -05:00
|
|
|
date : %q
|
|
|
|
lastMod : %q
|
2016-11-07 14:24:37 -05:00
|
|
|
---
|
|
|
|
Taxonomy Term Categories **Content!**
|
2016-11-11 05:35:55 -05:00
|
|
|
`, date.Add(11*24*time.Hour).Format(time.RFC822), date.Add(12*24*time.Hour).Format(time.RFC822)))
|
2016-11-07 14:24:37 -05:00
|
|
|
}
|
|
|
|
|
2016-11-01 17:39:24 -04:00
|
|
|
func writeLayoutsForNodeAsPageTests(t *testing.T) {
|
|
|
|
writeSource(t, filepath.Join("layouts", "index.html"), `
|
|
|
|
Index Title: {{ .Title }}
|
|
|
|
Index Content: {{ .Content }}
|
|
|
|
# Pages: {{ len .Data.Pages }}
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
Pag: {{ .Title }}
|
|
|
|
{{ end }}
|
2016-11-10 04:53:12 -05:00
|
|
|
{{ with .Site.Menus.mymenu }}
|
|
|
|
{{ range . }}
|
|
|
|
Menu Item: {{ .Name }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2016-11-11 05:35:55 -05:00
|
|
|
Date: {{ .Date.Format "2006-01-02" }}
|
|
|
|
Lastmod: {{ .Lastmod.Format "2006-01-02" }}
|
2016-11-12 11:30:21 -05:00
|
|
|
GetPage: {{ with .Site.GetPage "section" "sect1" }}{{ .Title }}{{ end }}
|
2016-11-01 17:39:24 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("layouts", "_default", "single.html"), `
|
|
|
|
Single Title: {{ .Title }}
|
|
|
|
Single Content: {{ .Content }}
|
2016-11-11 05:35:55 -05:00
|
|
|
Date: {{ .Date.Format "2006-01-02" }}
|
|
|
|
Lastmod: {{ .Lastmod.Format "2006-01-02" }}
|
2016-11-01 17:39:24 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
writeSource(t, filepath.Join("layouts", "_default", "section.html"), `
|
|
|
|
Section Title: {{ .Title }}
|
|
|
|
Section Content: {{ .Content }}
|
|
|
|
# Pages: {{ len .Data.Pages }}
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
Pag: {{ .Title }}
|
|
|
|
{{ end }}
|
2016-11-11 05:35:55 -05:00
|
|
|
Date: {{ .Date.Format "2006-01-02" }}
|
|
|
|
Lastmod: {{ .Lastmod.Format "2006-01-02" }}
|
2016-11-01 17:39:24 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
// Taxonomy lists
|
|
|
|
writeSource(t, filepath.Join("layouts", "_default", "taxonomy.html"), `
|
|
|
|
Taxonomy Title: {{ .Title }}
|
|
|
|
Taxonomy Content: {{ .Content }}
|
|
|
|
# Pages: {{ len .Data.Pages }}
|
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
Pag: {{ .Title }}
|
|
|
|
{{ end }}
|
2016-11-11 05:35:55 -05:00
|
|
|
Date: {{ .Date.Format "2006-01-02" }}
|
|
|
|
Lastmod: {{ .Lastmod.Format "2006-01-02" }}
|
2016-11-01 17:39:24 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
// Taxonomy terms
|
|
|
|
writeSource(t, filepath.Join("layouts", "_default", "terms.html"), `
|
|
|
|
Taxonomy Terms Title: {{ .Title }}
|
|
|
|
Taxonomy Terms Content: {{ .Content }}
|
|
|
|
{{ range $key, $value := .Data.Terms }}
|
2016-11-13 08:27:10 -05:00
|
|
|
k/v: {{ $key }} / {{ printf "%s" $value }}
|
2016-11-01 17:39:24 -04:00
|
|
|
{{ end }}
|
2016-11-11 05:35:55 -05:00
|
|
|
Date: {{ .Date.Format "2006-01-02" }}
|
|
|
|
Lastmod: {{ .Lastmod.Format "2006-01-02" }}
|
2016-11-01 17:39:24 -04:00
|
|
|
`)
|
|
|
|
}
|