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
evictedIdentities := collections.NewStack[identity.Identity]()
onEvict := func(k, v any) {
- if !opts.Running {
+ if !opts.Watching {
return
}
identity.WalkIdentitiesShallow(v, func(level int, id identity.Identity) bool {
CheckInterval time.Duration
MaxSize int
MinMaxSize int
- Running bool
+ Watching bool
}
// Options for a partition.
}
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 {
type TestOpt func(*IntegrationTestConfig)
+// TestOptRunning will enable running in integration tests.
func TestOptRunning() TestOpt {
return func(c *IntegrationTestConfig) {
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.
// THis should only be used during development and not committed to the repo.
func TestOptTrace() TestOpt {
"running": 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 != "" {
// Whether to simulate server mode.
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
Verbose bool
b.AssertRenderCountContent(1)
}
+func testRebuildBothWatchingAndRunning(t *testing.T, files string, withB func(b *IntegrationTestBuilder)) {
+ t.Helper()
+ for _, opt := range []TestOpt{TestOptWatching(), TestOptRunning()} {
+ b := Test(t, files, opt)
+ withB(b)
+ }
+}
+
func TestRebuildRenameTextFileInLeafBundle(t *testing.T) {
- b := TestRunning(t, rebuildFilesSimple)
- b.AssertFileContent("public/mysection/mysectionbundle/index.html", "My Section Bundle Text 2 Content.", "Len Resources: 2|")
+ testRebuildBothWatchingAndRunning(t, rebuildFilesSimple, func(b *IntegrationTestBuilder) {
+ b.AssertFileContent("public/mysection/mysectionbundle/index.html", "My Section Bundle Text 2 Content.", "Len Resources: 2|")
- 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)
+ 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 TestRebuildBaseof(t *testing.T) {
- t.Parallel()
-
files := `
-- hugo.toml --
title = "Hugo Site"
Home: {{ .Title }}|{{ .Content }}|
{{ end }}
`
- b := Test(t, files, TestOptRunning())
- b.AssertFileContent("public/index.html", "Baseof: Hugo Site|", "Home: Hugo Site||")
- b.EditFileReplaceFunc("layouts/_default/baseof.html", func(s string) string {
- return strings.Replace(s, "Baseof", "Baseof Edited", 1)
- }).Build()
- b.AssertFileContent("public/index.html", "Baseof Edited: Hugo Site|", "Home: Hugo Site||")
+ testRebuildBothWatchingAndRunning(t, files, func(b *IntegrationTestBuilder) {
+ b.AssertFileContent("public/index.html", "Baseof: Hugo Site|", "Home: Hugo Site||")
+ b.EditFileReplaceFunc("layouts/_default/baseof.html", func(s string) string {
+ return strings.Replace(s, "Baseof", "Baseof Edited", 1)
+ }).Build()
+ b.AssertFileContent("public/index.html", "Baseof Edited: Hugo Site|", "Home: Hugo Site||")
+ })
}
func TestRebuildSingleWithBaseof(t *testing.T) {
HandlerPost: logHookLast,
Stdout: cfg.LogOut,
Stderr: cfg.LogOut,
- StoreErrors: conf.Running(),
+ StoreErrors: conf.Watching(),
SuppressStatements: conf.IgnoredLogs(),
}
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{
Fs: cfg.Fs,
)
type templateExecHelper struct {
- running bool // whether we're in server mode.
+ watching bool // whether we're in server/watch mode.
site reflect.Value
siteParams reflect.Value
funcs map[string]reflect.Value
}
func (t *templateExecHelper) Init(ctx context.Context, tmpl texttemplate.Preparer) {
- if t.running {
+ if t.watching {
_, ok := tmpl.(identity.IdentityProvider)
if ok {
t.trackDependencies(ctx, tmpl, "", reflect.Value{})
name = "MainSections"
}
- if t.running {
+ if t.watching {
ctx = t.trackDependencies(ctx, tmpl, name, receiver)
}
}
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
}
}
exeHelper := &templateExecHelper{
- running: d.Conf.Running(),
+ watching: d.Conf.Watching(),
funcs: funcsv,
site: reflect.ValueOf(d.Site),
siteParams: reflect.ValueOf(d.Site.Params()),