hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 7a080b624e73fe3a10cfab9ee4fa8e9b7e7c31ad
parent 2655739940d8148ef374248e867b44d87cd63edf
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Wed, 26 Jan 2022 17:48:50 +0100

Fix duplicate mount sources

Fixes #9426

Diffstat:
Mhugofs/walk.go | 2+-
Mhugofs/walk_test.go | 6+-----
Mhugolib/filesystems/basefs_test.go | 3+--
Mhugolib/hugo_modules_test.go | 36++++++++++++++++++++++++++++++++++++
4 files changed, 39 insertions(+), 8 deletions(-)
diff --git a/hugofs/walk.go b/hugofs/walk.go
@@ -270,7 +270,7 @@ func (w *Walkway) walk(path string, info FileMetaInfo, dirEntries []FileMetaInfo
 		meta.Path = normalizeFilename(pathMeta)
 		meta.PathWalk = pathn
 
-		if fim.IsDir() && w.isSeen(meta.Filename) {
+		if fim.IsDir() && meta.IsSymlink && w.isSeen(meta.Filename) {
 			// Prevent infinite recursion
 			// Possible cyclic reference
 			meta.SkipDir = true
diff --git a/hugofs/walk_test.go b/hugofs/walk_test.go
@@ -81,14 +81,12 @@ func TestWalkRootMappingFs(t *testing.T) {
 	}
 
 	c.Run("Basic", func(c *qt.C) {
-
 		bfs := prepare(c)
 
 		names, err := collectFilenames(bfs, "", "")
 
 		c.Assert(err, qt.IsNil)
 		c.Assert(names, qt.DeepEquals, []string{"a/test.txt", "b/test.txt", "c/test.txt"})
-
 	})
 
 	c.Run("Para", func(c *qt.C) {
@@ -112,12 +110,10 @@ func TestWalkRootMappingFs(t *testing.T) {
 					return errors.New("fail")
 				}
 				return nil
-
 			})
 		}
 
 		c.Assert(r.Wait(), qt.IsNil)
-
 	})
 }
 
@@ -169,7 +165,7 @@ func TestWalkSymbolicLink(t *testing.T) {
 		names, err := collectFilenames(fs, workDir, workDir)
 		c.Assert(err, qt.IsNil)
 
-		c.Assert(names, qt.DeepEquals, []string{"blog/real/sub/a.txt", "docs/b.txt"})
+		c.Assert(names, qt.DeepEquals, []string{"blog/real/sub/a.txt", "blog/symlinked/sub/a.txt", "docs/b.txt"})
 	})
 
 	t.Run("BasePath Fs", func(t *testing.T) {
diff --git a/hugolib/filesystems/basefs_test.go b/hugolib/filesystems/basefs_test.go
@@ -33,7 +33,6 @@ import (
 	"github.com/gohugoio/hugo/hugofs"
 	"github.com/gohugoio/hugo/hugolib/paths"
 	"github.com/gohugoio/hugo/modules"
-	
 )
 
 func initConfig(fs afero.Fs, cfg config.Provider) error {
@@ -152,7 +151,7 @@ theme = ["atheme"]
 	checkFileCount(bfs.Data.Fs, "", c, 11)       // 7 + 4 themes
 	checkFileCount(bfs.Archetypes.Fs, "", c, 10) // 8 + 2 themes
 	checkFileCount(bfs.Assets.Fs, "", c, 9)
-	checkFileCount(bfs.Work, "", c, 82)
+	checkFileCount(bfs.Work, "", c, 90)
 
 	c.Assert(bfs.IsData(filepath.Join(workingDir, "mydata", "file1.txt")), qt.Equals, true)
 	c.Assert(bfs.IsI18n(filepath.Join(workingDir, "myi18n", "file1.txt")), qt.Equals, true)
diff --git a/hugolib/hugo_modules_test.go b/hugolib/hugo_modules_test.go
@@ -1134,3 +1134,39 @@ P1: {{ $p1.Title }}|{{ $p1.RelPermalink }}|Filename: {{ $p1.File.Filename }}
 
 	b.AssertFileContent("public/index.html", "P1: Abs|/p1/", "Filename: "+contentFilename)
 }
+
+// Issue 9426
+func TestMountSameSource(t *testing.T) {
+	config := `baseURL = 'https://example.org/'
+languageCode = 'en-us'
+title = 'Hugo GitHub Issue #9426'
+
+disableKinds = ['RSS','sitemap','taxonomy','term']
+
+[[module.mounts]]
+source = "content"
+target = "content"
+
+[[module.mounts]]
+source = "extra-content"
+target = "content/resources-a"
+
+[[module.mounts]]
+source = "extra-content"
+target = "content/resources-b"
+`
+	b := newTestSitesBuilder(t).WithConfigFile("toml", config)
+
+	b.WithContent("p1.md", "")
+
+	b.WithSourceFile(
+		"extra-content/_index.md", "",
+		"extra-content/subdir/_index.md", "",
+		"extra-content/subdir/about.md", "",
+	)
+
+	b.Build(BuildCfg{})
+
+	b.AssertFileContent("public/resources-a/subdir/about/index.html", "Single")
+	b.AssertFileContent("public/resources-b/subdir/about/index.html", "Single")
+}