Don't use the baseURL /path as part of the resource cache key

As that prevents Hugo projects with sub paths in their `baseURL` to use themes with cached resources.

Fixes #9787
This commit is contained in:
Bjørn Erik Pedersen 2022-05-27 13:23:37 +02:00
parent 46a2ea6d0d
commit dd9eaf19fd
3 changed files with 83 additions and 21 deletions

View file

@ -41,13 +41,15 @@ func NewIntegrationTestBuilder(conf IntegrationTestConfig) *IntegrationTestBuild
} }
if conf.NeedsOsFS { if conf.NeedsOsFS {
tempDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-integration-test") if !filepath.IsAbs(conf.WorkingDir) {
c.Assert(err, qt.IsNil) tempDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-integration-test")
conf.WorkingDir = filepath.Join(tempDir, conf.WorkingDir) c.Assert(err, qt.IsNil)
if !conf.PrintAndKeepTempDir { conf.WorkingDir = filepath.Join(tempDir, conf.WorkingDir)
c.Cleanup(clean) if !conf.PrintAndKeepTempDir {
} else { c.Cleanup(clean)
fmt.Println("\nUsing WorkingDir dir:", conf.WorkingDir) } else {
fmt.Println("\nUsing WorkingDir dir:", conf.WorkingDir)
}
} }
} else if conf.WorkingDir == "" { } else if conf.WorkingDir == "" {
conf.WorkingDir = helpers.FilePathSeparator conf.WorkingDir = helpers.FilePathSeparator

View file

@ -20,6 +20,7 @@ import (
"os" "os"
"path" "path"
"path/filepath" "path/filepath"
"strings"
"sync" "sync"
"github.com/gohugoio/hugo/resources/internal" "github.com/gohugoio/hugo/resources/internal"
@ -267,7 +268,10 @@ func (l *genericResource) Data() any {
} }
func (l *genericResource) Key() string { func (l *genericResource) Key() string {
return l.RelPermalink() if l.spec.BasePath == "" {
return l.RelPermalink()
}
return strings.TrimPrefix(l.RelPermalink(), l.spec.BasePath)
} }
func (l *genericResource) MediaType() media.Type { func (l *genericResource) MediaType() media.Type {

View file

@ -23,6 +23,7 @@ import (
qt "github.com/frankban/quicktest" qt "github.com/frankban/quicktest"
"github.com/gohugoio/hugo/htesting" "github.com/gohugoio/hugo/htesting"
"github.com/gohugoio/hugo/hugofs"
"github.com/gohugoio/hugo/hugolib" "github.com/gohugoio/hugo/hugolib"
) )
@ -55,6 +56,9 @@ h1 {
-- config.toml -- -- config.toml --
disablekinds = ['taxonomy', 'term', 'page'] disablekinds = ['taxonomy', 'term', 'page']
baseURL = "https://example.com"
[build]
useResourceCacheWhen = 'never'
-- content/p1.md -- -- content/p1.md --
-- data/hugo.toml -- -- data/hugo.toml --
slogan = "Hugo Rocks!" slogan = "Hugo Rocks!"
@ -99,25 +103,40 @@ func TestTransformPostCSS(t *testing.T) {
} }
c := qt.New(t) c := qt.New(t)
tempDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-integration-test")
c.Assert(err, qt.IsNil)
c.Cleanup(clean)
b := hugolib.NewIntegrationTestBuilder( for _, s := range []string{"never", "always"} {
hugolib.IntegrationTestConfig{
T: c,
NeedsOsFS: true,
NeedsNpmInstall: true,
LogLevel: jww.LevelInfo,
TxtarString: postCSSIntegrationTestFiles,
}).Build()
b.AssertLogContains("Hugo Environment: production") repl := strings.NewReplacer(
b.AssertLogContains(filepath.FromSlash(fmt.Sprintf("PostCSS Config File: %s/postcss.config.js", b.Cfg.WorkingDir))) "https://example.com",
b.AssertLogContains(filepath.FromSlash(fmt.Sprintf("package.json: %s/package.json", b.Cfg.WorkingDir))) "https://example.com/foo",
"useResourceCacheWhen = 'never'",
fmt.Sprintf("useResourceCacheWhen = '%s'", s),
)
b.AssertFileContent("public/index.html", ` files := repl.Replace(postCSSIntegrationTestFiles)
Styles RelPermalink: /css/styles.css
fmt.Println("===>", s, files)
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
T: c,
NeedsOsFS: true,
NeedsNpmInstall: true,
LogLevel: jww.LevelInfo,
WorkingDir: tempDir,
TxtarString: files,
}).Build()
b.AssertFileContent("public/index.html", `
Styles RelPermalink: /foo/css/styles.css
Styles Content: Len: 770917| Styles Content: Len: 770917|
`) `)
}
} }
// 9880 // 9880
@ -186,3 +205,40 @@ func TestTransformPostCSSImporSkipInlineImportsNotFound(t *testing.T) {
s.AssertFileContent("public/css/styles.css", `@import "components/doesnotexist.css";`) s.AssertFileContent("public/css/styles.css", `@import "components/doesnotexist.css";`)
} }
// Issue 9787
func TestTransformPostCSSResourceCacheWithPathInBaseURL(t *testing.T) {
if !htesting.IsCI() {
t.Skip("Skip long running test when running locally")
}
c := qt.New(t)
tempDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-integration-test")
c.Assert(err, qt.IsNil)
c.Cleanup(clean)
for i := 0; i < 2; i++ {
files := postCSSIntegrationTestFiles
if i == 1 {
files = strings.ReplaceAll(files, "https://example.com", "https://example.com/foo")
files = strings.ReplaceAll(files, "useResourceCacheWhen = 'never'", " useResourceCacheWhen = 'always'")
}
b := hugolib.NewIntegrationTestBuilder(
hugolib.IntegrationTestConfig{
T: c,
NeedsOsFS: true,
NeedsNpmInstall: true,
LogLevel: jww.LevelInfo,
TxtarString: files,
WorkingDir: tempDir,
}).Build()
b.AssertFileContent("public/index.html", `
Styles Content: Len: 770917
`)
}
}