Fix ref/relRef regression for relative refs from bundles
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 28 Feb 2020 13:22:05 +0000 (14:22 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 29 Feb 2020 17:32:06 +0000 (18:32 +0100)
Fixes #6952

hugolib/pagecollections.go
hugolib/site.go
hugolib/site_test.go
hugolib/testhelpers_test.go

index 74d48fe226fa1254cc3e96fdbfc81f6fdeafb7a2..7982b25ac00f758b0f5c13286974bc54a1952ef4 100644 (file)
@@ -20,7 +20,7 @@ import (
        "strings"
        "sync"
 
-       "github.com/gohugoio/hugo/common/herrors"
+       "github.com/gohugoio/hugo/hugofs/files"
 
        "github.com/gohugoio/hugo/helpers"
 
@@ -207,13 +207,12 @@ func (c *PageCollections) getSectionOrPage(ref string) (*contentNode, string) {
 }
 
 func (c *PageCollections) getContentNode(context page.Page, isReflink bool, ref string) (*contentNode, error) {
-       defer herrors.Recover()
        ref = filepath.ToSlash(strings.ToLower(strings.TrimSpace(ref)))
        if ref == "" {
                ref = "/"
        }
        inRef := ref
-
+       navUp := strings.HasPrefix(ref, "..")
        var doSimpleLookup bool
        if isReflink || context == nil {
                // For Ref/Reflink and .Site.GetPage do simple name lookups for the potentially ambigous myarticle.md and /myarticle.md,
@@ -227,7 +226,16 @@ func (c *PageCollections) getContentNode(context page.Page, isReflink bool, ref
                if context.File().IsZero() {
                        base = context.SectionsPath()
                } else {
-                       base = filepath.ToSlash(filepath.Dir(context.File().FileInfo().Meta().Path()))
+                       meta := context.File().FileInfo().Meta()
+                       base = filepath.ToSlash(filepath.Dir(meta.Path()))
+                       if meta.Classifier() == files.ContentClassLeaf {
+                               // Bundles are stored in subfolders e.g. blog/mybundle/index.md,
+                               // so if the user has not explicitly asked to go up,
+                               // look on the "blog" level.
+                               if !navUp {
+                                       base = path.Dir(base)
+                               }
+                       }
                }
                ref = path.Join("/", strings.ToLower(base), ref)
        }
index ac67c12106e8c039ea8a9a6c4f48314f41e737de..f85dc47e20780d637fcedb8f4d25814c4c177cb9 100644 (file)
@@ -777,7 +777,6 @@ func (s siteRefLinker) logNotFound(ref, what string, p page.Page, position text.
 }
 
 func (s *siteRefLinker) refLink(ref string, source interface{}, relative bool, outputFormat string) (string, error) {
-
        p, err := unwrapPage(source)
        if err != nil {
                return "", err
index cd8c87c4305cccbaf78e80891839c50548adbe26..22b078f5aa026be31cfcf3169a92a8dd5083dc59 100644 (file)
@@ -940,6 +940,8 @@ func setupLinkingMockSite(t *testing.T) *Site {
                {filepath.FromSlash("level2/level3/common.png"), ""},
 
                {filepath.FromSlash("level2/level3/embedded.dot.md"), ""},
+
+               {filepath.FromSlash("leafbundle/index.md"), ""},
        }
 
        cfg, fs := newTestCfg()
@@ -1026,3 +1028,18 @@ func checkLinkCase(site *Site, link string, currentPage page.Page, relative bool
                t.Fatalf("[%d] Expected %q from %q to resolve to %q, got %q - error: %s", i, link, currentPage.Path(), expected, out, err)
        }
 }
+
+// https://github.com/gohugoio/hugo/issues/6952
+func TestRefBundle(t *testing.T) {
+       b := newTestSitesBuilder(t)
+       b.WithContent(
+               "post/b1/index.md", "---\ntitle: pb1\n---\nRef: {{< ref \"b2\" >}}",
+               "post/b2/index.md", "---\ntitle: pb2\n---\n",
+       )
+       b.WithTemplates("index.html", `Home`)
+       b.WithTemplates("_default/single.html", `Content: {{ .Content }}`)
+
+       b.Build(BuildCfg{})
+
+       b.AssertFileContent("public/post/b1/index.html", `Content: <p>Ref: http://example.com/post/b2/</p>`)
+}
index fe6f3b7e37bae22c8e79e0f4be960170a4b1ebe6..137dbd7014ddea01f55e08960fffabb250689257 100644 (file)
@@ -443,7 +443,8 @@ func (s *sitesBuilder) writeFilePairs(folder string, files []filenameContent) *s
        // our tests running with the in memory filesystem.
        // That file system is backed by a map so not sure how this helps, but some
        // randomness in tests doesn't hurt.
-       s.rnd.Shuffle(len(files), func(i, j int) { files[i], files[j] = files[j], files[i] })
+       // TODO(bep) this turns out to be more confusing than helpful.
+       //s.rnd.Shuffle(len(files), func(i, j int) { files[i], files[j] = files[j], files[i] })
 
        for _, fc := range files {
                target := folder