From 417c5e2b67b97fa80a0b6f77d259966f03b95344 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 15 Apr 2018 16:42:54 +0200 Subject: [PATCH] Make Page.Content a method that returns interface{} To prepare for a `Resource.Content` method. See #4622 --- hugolib/embedded_shortcodes_test.go | 2 +- hugolib/hugo_sites_build_test.go | 10 +++++----- hugolib/page.go | 14 +++++++++----- hugolib/pageSort.go | 2 +- hugolib/pageSort_test.go | 4 ++-- hugolib/page_bundler_test.go | 8 ++++---- hugolib/page_test.go | 10 +++++----- hugolib/shortcode_test.go | 2 +- 8 files changed, 28 insertions(+), 24 deletions(-) diff --git a/hugolib/embedded_shortcodes_test.go b/hugolib/embedded_shortcodes_test.go index 50da35c5..fb663f1c 100644 --- a/hugolib/embedded_shortcodes_test.go +++ b/hugolib/embedded_shortcodes_test.go @@ -69,7 +69,7 @@ func doTestShortcodeCrossrefs(t *testing.T, relative bool) { require.Len(t, s.RegularPages, 1) - output := string(s.RegularPages[0].Content) + output := string(s.RegularPages[0].content) if !strings.Contains(output, expected) { t.Errorf("Got\n%q\nExpected\n%q", output, expected) diff --git a/hugolib/hugo_sites_build_test.go b/hugolib/hugo_sites_build_test.go index 1626fadc..0515def4 100644 --- a/hugolib/hugo_sites_build_test.go +++ b/hugolib/hugo_sites_build_test.go @@ -378,9 +378,9 @@ func doTestMultiSitesBuild(t *testing.T, configTemplate, configSuffix string) { b.AssertFileContent("public/en/tags/tag1/index.html", "Tag1|Hello|http://example.com/blog/en/tags/tag1/") // Check Blackfriday config - require.True(t, strings.Contains(string(doc1fr.Content), "«"), string(doc1fr.Content)) - require.False(t, strings.Contains(string(doc1en.Content), "«"), string(doc1en.Content)) - require.True(t, strings.Contains(string(doc1en.Content), "“"), string(doc1en.Content)) + require.True(t, strings.Contains(string(doc1fr.content), "«"), string(doc1fr.content)) + require.False(t, strings.Contains(string(doc1en.content), "«"), string(doc1en.content)) + require.True(t, strings.Contains(string(doc1en.content), "“"), string(doc1en.content)) // Check that the drafts etc. are not built/processed/rendered. assertShouldNotBuild(t, b.H) @@ -630,9 +630,9 @@ func assertShouldNotBuild(t *testing.T, sites *HugoSites) { for _, p := range s.rawAllPages { // No HTML when not processed require.Equal(t, p.shouldBuild(), bytes.Contains(p.workContent, []byte("}} assert.Equal("Headless Bundle in Topless Bar", headless.Title()) assert.Equal("", headless.RelPermalink()) assert.Equal("", headless.Permalink()) - assert.Contains(headless.Content, "HEADLESS SHORTCODE") + assert.Contains(headless.content, "HEADLESS SHORTCODE") headlessResources := headless.Resources assert.Equal(3, len(headlessResources)) @@ -404,7 +404,7 @@ HEADLESS {{< myShort >}} assert.NotNil(pageResource) assert.IsType(&Page{}, pageResource) p := pageResource.(*Page) - assert.Contains(p.Content, "SHORTCODE") + assert.Contains(p.content, "SHORTCODE") assert.Equal("p1.md", p.Name()) th := testHelper{s.Cfg, s.Fs, t} diff --git a/hugolib/page_test.go b/hugolib/page_test.go index 2b679c84..308bf31c 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -481,7 +481,7 @@ func checkPageTitle(t *testing.T, page *Page, title string) { func checkPageContent(t *testing.T, page *Page, content string, msg ...interface{}) { a := normalizeContent(content) - b := normalizeContent(string(page.Content)) + b := normalizeContent(string(page.content)) if a != b { t.Fatalf("Page content is:\n%q\nExpected:\n%q (%q)", b, a, msg) } @@ -616,7 +616,7 @@ func testAllMarkdownEnginesForPages(t *testing.T, require.NoError(t, err) require.NotNil(t, home) require.Equal(t, homePath, home.Path()) - require.Contains(t, home.Content, "Home Page Content") + require.Contains(t, home.content, "Home Page Content") } @@ -726,8 +726,8 @@ func TestPageWithDelimiterForMarkdownThatCrossesBorder(t *testing.T) { t.Fatalf("Got summary:\n%q", p.Summary) } - if p.Content != template.HTML("

The best static site generator.1\n

\n
\n\n
\n\n
    \n
  1. Many people say so.\n [return]
  2. \n
\n
") { - t.Fatalf("Got content:\n%q", p.Content) + if p.content != template.HTML("

The best static site generator.1\n

\n
\n\n
\n\n
    \n
  1. Many people say so.\n [return]
  2. \n
\n
") { + t.Fatalf("Got content:\n%q", p.content) } } @@ -1511,7 +1511,7 @@ func TestPageSimpleMethods(t *testing.T) { } { p, _ := s.NewPage("Test") - p.Content = "

Do Be Do Be Do

" + p.content = "

Do Be Do Be Do

" if !this.assertFunc(p) { t.Errorf("[%d] Page method error", i) } diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index 449d55ab..51f99830 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -87,7 +87,7 @@ title: "Title" require.Len(t, h.Sites[0].RegularPages, 1) - output := strings.TrimSpace(string(h.Sites[0].RegularPages[0].Content)) + output := strings.TrimSpace(string(h.Sites[0].RegularPages[0].content)) output = strings.TrimPrefix(output, "

") output = strings.TrimSuffix(output, "

") -- 2.30.2