Add environment as a new filter to _cascade.target
authorCathrine Paulsen <c.r.paulsen@student.tudelft.nl>
Tue, 5 Apr 2022 07:41:24 +0000 (07:41 +0000)
committerGitHub <noreply@github.com>
Tue, 5 Apr 2022 07:41:24 +0000 (09:41 +0200)
Fixes #9612

docs/content/en/content-management/front-matter.md
hugolib/cascade_test.go
resources/page/page_matcher.go
resources/page/page_matcher_test.go
resources/page/testhelpers_test.go

index 6986f067fa661fd1f2cd28ccdb48a76cc838a7d5..cac4ef9525e43a6e690f2c2c005adadc145a5730 100644 (file)
@@ -189,6 +189,9 @@ kind
 lang
 : A Glob pattern matching the Page's language, e.g. "{en,sv}".
 
+environment
+: A Glob pattern matching the build environment, e.g. "{production,development}"
+
 Any of the above can be omitted. 
 
 ### Example
index c218aa28263f34a01e045ea016e2a34d90657470..0a7f66e6c1bdb9fdde6ed86577f3eb856bb0174a 100644 (file)
@@ -550,6 +550,32 @@ S1|p1:|p2:p2|
 `)
        })
 
+       c.Run("slice with environment _target", func(c *qt.C) {
+               b := newBuilder(c)
+
+               b.WithContent("_index.md", `+++
+title = "Home"
+[[cascade]]
+p1 = "p1"
+[cascade._target]
+path="**p1**"
+environment="testing"
+[[cascade]]
+p2 = "p2"
+[cascade._target]
+kind="section"
+environment="production"
++++
+`)
+
+               b.Build(BuildCfg{})
+
+               b.AssertFileContent("public/index.html", `
+P1|p1:|p2:|
+S1|p1:|p2:p2|
+`)
+       })
+
        c.Run("slice with yaml _target", func(c *qt.C) {
                b := newBuilder(c)
 
index 15b8ede8989e3de463c150ce86dbdf7bc62124b3..4626186c5cf3f115983dbc52cdfb2fc1ab5def1e 100644 (file)
@@ -37,6 +37,9 @@ type PageMatcher struct {
 
        // A Glob pattern matching the Page's language, e.g. "{en,sv}".
        Lang string
+
+       // A Glob pattern matching the Page's Environment, e.g. "{production,development}".
+       Environment string
 }
 
 // Matches returns whether p matches this matcher.
@@ -67,6 +70,13 @@ func (m PageMatcher) Matches(p Page) bool {
                }
        }
 
+       if m.Environment != "" {
+               g, err := glob.GetGlob(m.Environment)
+               if err == nil && !g.Match(p.Site().Hugo().Environment) {
+                       return false
+               }
+       }
+
        return true
 }
 
index 72aec5f2a64ae81463a28bb5a1f2ecf526db2d36..846ab2c034109d452a4087714899e9fa5ca55e5e 100644 (file)
@@ -14,6 +14,7 @@
 package page
 
 import (
+       "github.com/gohugoio/hugo/common/hugo"
        "path/filepath"
        "testing"
 
@@ -22,8 +23,13 @@ import (
 
 func TestPageMatcher(t *testing.T) {
        c := qt.New(t)
+       developmentTestSite := testSite{h: hugo.NewInfo("development", nil)}
+       productionTestSite := testSite{h: hugo.NewInfo("production", nil)}
 
-       p1, p2, p3 := &testPage{path: "/p1", kind: "section", lang: "en"}, &testPage{path: "p2", kind: "page", lang: "no"}, &testPage{path: "p3", kind: "page", lang: "en"}
+       p1, p2, p3 :=
+               &testPage{path: "/p1", kind: "section", lang: "en", site: developmentTestSite},
+               &testPage{path: "p2", kind: "page", lang: "no", site: productionTestSite},
+               &testPage{path: "p3", kind: "page", lang: "en"}
 
        c.Run("Matches", func(c *qt.C) {
                m := PageMatcher{Kind: "section"}
@@ -50,6 +56,16 @@ func TestPageMatcher(t *testing.T) {
                c.Assert(m.Matches(p1), qt.Equals, true)
                c.Assert(m.Matches(p2), qt.Equals, false)
                c.Assert(m.Matches(p3), qt.Equals, true)
+
+               m = PageMatcher{Environment: "development"}
+               c.Assert(m.Matches(p1), qt.Equals, true)
+               c.Assert(m.Matches(p2), qt.Equals, false)
+               c.Assert(m.Matches(p3), qt.Equals, false)
+
+               m = PageMatcher{Environment: "production"}
+               c.Assert(m.Matches(p1), qt.Equals, false)
+               c.Assert(m.Matches(p2), qt.Equals, true)
+               c.Assert(m.Matches(p3), qt.Equals, false)
        })
 
        c.Run("Decode", func(c *qt.C) {
index 3f6accdacf0ea999c25db625bac2ee9c84ab4b65..cee1f99e52ec054520312449a3c9fd81ef0055c0 100644 (file)
@@ -94,6 +94,7 @@ type testPage struct {
        linkTitle   string
        lang        string
        section     string
+       site        testSite
 
        content string
 
@@ -532,7 +533,7 @@ func (p *testPage) SectionsPath() string {
 }
 
 func (p *testPage) Site() Site {
-       panic("not implemented")
+       return p.site
 }
 
 func (p *testPage) Sites() Sites {