This commit is contained in:
Bjørn Erik Pedersen 2024-03-28 23:22:03 +09:00 committed by GitHub
commit f90d1f1f15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1558,3 +1558,60 @@ title: "P1 us"
`
Test(t, files)
}
func TestBaseSignalChildParent(t *testing.T) {
t.Parallel()
files := `
-- hugo.toml --
-- content/_index.md --
-- content/p1.md --
-- layouts/_default/baseof.html --
{{ block "_baseof_start" . }}{{ end }}
<html>
<head>
{{/* Lots of imports of SEO partials, stylesheets, JS and whatnot. */}}
</head>
<body>
{{ $flow := .Store.Get "_baseof_flow" | default "default" }}
{{ if eq $flow "default" }}
<div>
<h1>Default flow</h1>
{{ block "main" . }}{{ end }}
</div>
{{ else if eq $flow "foo" }}
<div>
<h1>Foo flow</h1>
{{ block "main" . }}{{ end }}
</div>
{{ else if eq $flow "bar" }}
<div>
<h1>Bar flow</h1>
{{ block "main" . }}{{ end }}
</div>
{{ end }}
</body>
</html>
-- layouts/index.html --
{{ define "_baseof_start" }}{{ .Page.Store.Set "_baseof_flow" "foo" }}{{ end }}
{{ define "main" }}Main Home{{ end }}
-- layouts/_default/single.html --
{{ define "_baseof_start" }}{{ .Page.Store.Set "_baseof_flow" "bar" }}{{ end }}
{{ define "main" }}Main Single{{ end }}
`
b := NewIntegrationTestBuilder(
IntegrationTestConfig{
T: t,
TxtarString: files,
},
).Build()
b.AssertFileContent("public/index.html", `
Foo flow
Main Home
`)
}