Skip to content

Commit 227e429

Browse files
committed
Fix potential nilpointer in httpcache config
1 parent d0ce942 commit 227e429

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

‎cache/httpcache/httpcache.go

+11
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ type GlobMatcher struct {
122122
Includes []string
123123
}
124124

125+
func (gm GlobMatcher) IsZero() bool {
126+
return len(gm.Includes) == 0 && len(gm.Excludes) == 0
127+
}
128+
125129
type ConfigCompiled struct {
126130
For predicate.P[string]
127131
PollConfigs []PollConfigCompiled
@@ -155,6 +159,9 @@ func (p PollConfigCompiled) IsZero() bool {
155159
}
156160

157161
func (gm *GlobMatcher) CompilePredicate() (func(string) bool, error) {
162+
if gm.IsZero() {
163+
panic("no includes or excludes")
164+
}
158165
var p predicate.P[string]
159166
for _, include := range gm.Includes {
160167
g, err := glob.Compile(include, '/')
@@ -203,5 +210,9 @@ func DecodeConfig(bcfg config.BaseConfig, m map[string]any) (Config, error) {
203210
return c, err
204211
}
205212

213+
if c.Cache.For.IsZero() {
214+
c.Cache.For = DefaultConfig.Cache.For
215+
}
216+
206217
return c, nil
207218
}

‎cache/httpcache/httpcache_integration_test.go

+31
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import (
2222
)
2323

2424
func TestConfigCustom(t *testing.T) {
25+
t.Parallel()
26+
2527
files := `
2628
-- hugo.toml --
2729
[httpcache]
@@ -51,6 +53,8 @@ includes = ["**gohugo.io**"]
5153
}
5254

5355
func TestConfigDefault(t *testing.T) {
56+
t.Parallel()
57+
5458
files := `
5559
-- hugo.toml --
5660
`
@@ -62,3 +66,30 @@ func TestConfigDefault(t *testing.T) {
6266
b.Assert(compiled.For("https://gohugo.io/foo.jpg"), qt.IsFalse)
6367
b.Assert(compiled.PollConfigFor("https://gohugo.io/foo.jpg").Config.Disable, qt.IsTrue)
6468
}
69+
70+
func TestConfigPollsOnly(t *testing.T) {
71+
t.Parallel()
72+
files := `
73+
-- hugo.toml --
74+
[httpcache]
75+
[[httpcache.polls]]
76+
low = "5s"
77+
high = "32s"
78+
[httpcache.polls.for]
79+
includes = ["**gohugo.io**"]
80+
81+
82+
`
83+
84+
b := hugolib.Test(t, files)
85+
86+
compiled := b.H.Configs.Base.C.HTTPCache
87+
88+
b.Assert(compiled.For("https://gohugo.io/posts.json"), qt.IsFalse)
89+
b.Assert(compiled.For("https://gohugo.io/foo.jpg"), qt.IsFalse)
90+
91+
pc := compiled.PollConfigFor("https://gohugo.io/foo.jpg")
92+
b.Assert(pc.Config.Low, qt.Equals, 5*time.Second)
93+
b.Assert(pc.Config.High, qt.Equals, 32*time.Second)
94+
b.Assert(compiled.PollConfigFor("https://example.com/foo.jpg").IsZero(), qt.IsTrue)
95+
}

0 commit comments

Comments
 (0)