Fix rebuilds when running hugo -w

This was partly broken in Hugo 0.123.0.

We have two internal config options that gets set from the CLI:

* Running; a web server is running
* Watching; either set via `hugo -w`  or `hugo server --watch=false`

Part of the change detection code wrongly used the `Running` as a flag when `Watching` would be the correct.

Fixes #12296
This commit is contained in:
Bjørn Erik Pedersen 2024-04-25 12:30:16 +02:00
parent fb084390cd
commit 7203a95a60
6 changed files with 50 additions and 25 deletions

View file

@ -67,7 +67,7 @@ func New(opts Options) *Cache {
evictedIdentities := collections.NewStack[identity.Identity]() evictedIdentities := collections.NewStack[identity.Identity]()
onEvict := func(k, v any) { onEvict := func(k, v any) {
if !opts.Running { if !opts.Watching {
return return
} }
identity.WalkIdentitiesShallow(v, func(level int, id identity.Identity) bool { identity.WalkIdentitiesShallow(v, func(level int, id identity.Identity) bool {
@ -97,7 +97,7 @@ type Options struct {
CheckInterval time.Duration CheckInterval time.Duration
MaxSize int MaxSize int
MinMaxSize int MinMaxSize int
Running bool Watching bool
} }
// Options for a partition. // Options for a partition.

2
deps/deps.go vendored
View file

@ -155,7 +155,7 @@ func (d *Deps) Init() error {
} }
if d.MemCache == nil { if d.MemCache == nil {
d.MemCache = dynacache.New(dynacache.Options{Running: d.Conf.Running(), Log: d.Log}) d.MemCache = dynacache.New(dynacache.Options{Watching: d.Conf.Watching(), Log: d.Log})
} }
if d.PathSpec == nil { if d.PathSpec == nil {

View file

@ -38,12 +38,20 @@ import (
type TestOpt func(*IntegrationTestConfig) type TestOpt func(*IntegrationTestConfig)
// TestOptRunning will enable running in integration tests.
func TestOptRunning() TestOpt { func TestOptRunning() TestOpt {
return func(c *IntegrationTestConfig) { return func(c *IntegrationTestConfig) {
c.Running = true c.Running = true
} }
} }
// TestOptWatching will enable watching in integration tests.
func TestOptWatching() TestOpt {
return func(c *IntegrationTestConfig) {
c.Watching = true
}
}
// Enable tracing in integration tests. // Enable tracing in integration tests.
// THis should only be used during development and not committed to the repo. // THis should only be used during development and not committed to the repo.
func TestOptTrace() TestOpt { func TestOptTrace() TestOpt {
@ -570,6 +578,10 @@ func (s *IntegrationTestBuilder) initBuilder() error {
"running": s.Cfg.Running, "running": s.Cfg.Running,
"watch": s.Cfg.Running, "watch": s.Cfg.Running,
}) })
} else if s.Cfg.Watching {
flags.Set("internal", maps.Params{
"watch": s.Cfg.Watching,
})
} }
if s.Cfg.WorkingDir != "" { if s.Cfg.WorkingDir != "" {
@ -817,6 +829,11 @@ type IntegrationTestConfig struct {
// Whether to simulate server mode. // Whether to simulate server mode.
Running bool Running bool
// Watch for changes.
// This is (currently) always set to true when Running is set.
// Note that the CLI for the server does allow for --watch=false, but that is not used in these test.
Watching bool
// Will print the log buffer after the build // Will print the log buffer after the build
Verbose bool Verbose bool

View file

@ -121,14 +121,23 @@ func TestRebuildEditTextFileInBranchBundle(t *testing.T) {
b.AssertRenderCountContent(1) b.AssertRenderCountContent(1)
} }
func TestRebuildRenameTextFileInLeafBundle(t *testing.T) { func testRebuildBothWatchingAndRunning(t *testing.T, files string, withB func(b *IntegrationTestBuilder)) {
b := TestRunning(t, rebuildFilesSimple) t.Helper()
b.AssertFileContent("public/mysection/mysectionbundle/index.html", "My Section Bundle Text 2 Content.", "Len Resources: 2|") for _, opt := range []TestOpt{TestOptWatching(), TestOptRunning()} {
b := Test(t, files, opt)
withB(b)
}
}
b.RenameFile("content/mysection/mysectionbundle/mysectionbundletext.txt", "content/mysection/mysectionbundle/mysectionbundletext2.txt").Build() func TestRebuildRenameTextFileInLeafBundle(t *testing.T) {
b.AssertFileContent("public/mysection/mysectionbundle/index.html", "mysectionbundletext2", "My Section Bundle Text 2 Content.", "Len Resources: 2|") testRebuildBothWatchingAndRunning(t, rebuildFilesSimple, func(b *IntegrationTestBuilder) {
b.AssertRenderCountPage(3) b.AssertFileContent("public/mysection/mysectionbundle/index.html", "My Section Bundle Text 2 Content.", "Len Resources: 2|")
b.AssertRenderCountContent(3)
b.RenameFile("content/mysection/mysectionbundle/mysectionbundletext.txt", "content/mysection/mysectionbundle/mysectionbundletext2.txt").Build()
b.AssertFileContent("public/mysection/mysectionbundle/index.html", "mysectionbundletext2", "My Section Bundle Text 2 Content.", "Len Resources: 2|")
b.AssertRenderCountPage(3)
b.AssertRenderCountContent(3)
})
} }
func TestRebuilEditContentFileInLeafBundle(t *testing.T) { func TestRebuilEditContentFileInLeafBundle(t *testing.T) {
@ -367,8 +376,6 @@ My short.
} }
func TestRebuildBaseof(t *testing.T) { func TestRebuildBaseof(t *testing.T) {
t.Parallel()
files := ` files := `
-- hugo.toml -- -- hugo.toml --
title = "Hugo Site" title = "Hugo Site"
@ -383,12 +390,13 @@ Baseof: {{ .Title }}|
Home: {{ .Title }}|{{ .Content }}| Home: {{ .Title }}|{{ .Content }}|
{{ end }} {{ end }}
` `
b := Test(t, files, TestOptRunning()) testRebuildBothWatchingAndRunning(t, files, func(b *IntegrationTestBuilder) {
b.AssertFileContent("public/index.html", "Baseof: Hugo Site|", "Home: Hugo Site||") b.AssertFileContent("public/index.html", "Baseof: Hugo Site|", "Home: Hugo Site||")
b.EditFileReplaceFunc("layouts/_default/baseof.html", func(s string) string { b.EditFileReplaceFunc("layouts/_default/baseof.html", func(s string) string {
return strings.Replace(s, "Baseof", "Baseof Edited", 1) return strings.Replace(s, "Baseof", "Baseof Edited", 1)
}).Build() }).Build()
b.AssertFileContent("public/index.html", "Baseof Edited: Hugo Site|", "Home: Hugo Site||") b.AssertFileContent("public/index.html", "Baseof Edited: Hugo Site|", "Home: Hugo Site||")
})
} }
func TestRebuildSingleWithBaseof(t *testing.T) { func TestRebuildSingleWithBaseof(t *testing.T) {

View file

@ -123,14 +123,14 @@ func NewHugoSites(cfg deps.DepsCfg) (*HugoSites, error) {
HandlerPost: logHookLast, HandlerPost: logHookLast,
Stdout: cfg.LogOut, Stdout: cfg.LogOut,
Stderr: cfg.LogOut, Stderr: cfg.LogOut,
StoreErrors: conf.Running(), StoreErrors: conf.Watching(),
SuppressStatements: conf.IgnoredLogs(), SuppressStatements: conf.IgnoredLogs(),
} }
logger = loggers.New(logOpts) logger = loggers.New(logOpts)
} }
memCache := dynacache.New(dynacache.Options{Running: conf.Running(), Log: logger}) memCache := dynacache.New(dynacache.Options{Watching: conf.Watching(), Log: logger})
firstSiteDeps := &deps.Deps{ firstSiteDeps := &deps.Deps{
Fs: cfg.Fs, Fs: cfg.Fs,

View file

@ -71,7 +71,7 @@ var (
) )
type templateExecHelper struct { type templateExecHelper struct {
running bool // whether we're in server mode. watching bool // whether we're in server/watch mode.
site reflect.Value site reflect.Value
siteParams reflect.Value siteParams reflect.Value
funcs map[string]reflect.Value funcs map[string]reflect.Value
@ -95,7 +95,7 @@ func (t *templateExecHelper) GetFunc(ctx context.Context, tmpl texttemplate.Prep
} }
func (t *templateExecHelper) Init(ctx context.Context, tmpl texttemplate.Preparer) { func (t *templateExecHelper) Init(ctx context.Context, tmpl texttemplate.Preparer) {
if t.running { if t.watching {
_, ok := tmpl.(identity.IdentityProvider) _, ok := tmpl.(identity.IdentityProvider)
if ok { if ok {
t.trackDependencies(ctx, tmpl, "", reflect.Value{}) t.trackDependencies(ctx, tmpl, "", reflect.Value{})
@ -129,7 +129,7 @@ func (t *templateExecHelper) GetMethod(ctx context.Context, tmpl texttemplate.Pr
name = "MainSections" name = "MainSections"
} }
if t.running { if t.watching {
ctx = t.trackDependencies(ctx, tmpl, name, receiver) ctx = t.trackDependencies(ctx, tmpl, name, receiver)
} }
@ -151,7 +151,7 @@ func (t *templateExecHelper) GetMethod(ctx context.Context, tmpl texttemplate.Pr
} }
func (t *templateExecHelper) OnCalled(ctx context.Context, tmpl texttemplate.Preparer, name string, args []reflect.Value, result reflect.Value) { func (t *templateExecHelper) OnCalled(ctx context.Context, tmpl texttemplate.Preparer, name string, args []reflect.Value, result reflect.Value) {
if !t.running { if !t.watching {
return return
} }
@ -238,7 +238,7 @@ func newTemplateExecuter(d *deps.Deps) (texttemplate.Executer, map[string]reflec
} }
exeHelper := &templateExecHelper{ exeHelper := &templateExecHelper{
running: d.Conf.Running(), watching: d.Conf.Watching(),
funcs: funcsv, funcs: funcsv,
site: reflect.ValueOf(d.Site), site: reflect.ValueOf(d.Site),
siteParams: reflect.ValueOf(d.Site.Params()), siteParams: reflect.ValueOf(d.Site.Params()),