mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-26 05:30:54 +03:00

Previously, compiling the config with partial or missing poll configs would introduce a panic. This ensures that the default poll configs are applied in such scenarios to ensure config is valid. Fixes #13471
73 lines
1.9 KiB
Go
73 lines
1.9 KiB
Go
// Copyright 2024 The Hugo Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package httpcache
|
|
|
|
import (
|
|
"testing"
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
"github.com/gohugoio/hugo/config"
|
|
)
|
|
|
|
func TestGlobMatcher(t *testing.T) {
|
|
c := qt.New(t)
|
|
|
|
g := GlobMatcher{
|
|
Includes: []string{"**/*.jpg", "**.png", "**/bar/**"},
|
|
Excludes: []string{"**/foo.jpg", "**.css"},
|
|
}
|
|
|
|
p, err := g.CompilePredicate()
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(p("foo.jpg"), qt.IsFalse)
|
|
c.Assert(p("foo.png"), qt.IsTrue)
|
|
c.Assert(p("foo/bar.jpg"), qt.IsTrue)
|
|
c.Assert(p("foo/bar.png"), qt.IsTrue)
|
|
c.Assert(p("foo/bar/foo.jpg"), qt.IsFalse)
|
|
c.Assert(p("foo/bar/foo.css"), qt.IsFalse)
|
|
c.Assert(p("foo.css"), qt.IsFalse)
|
|
c.Assert(p("foo/bar/foo.css"), qt.IsFalse)
|
|
c.Assert(p("foo/bar/foo.xml"), qt.IsTrue)
|
|
}
|
|
|
|
func TestDefaultConfig(t *testing.T) {
|
|
c := qt.New(t)
|
|
|
|
_, err := DefaultConfig.Compile()
|
|
c.Assert(err, qt.IsNil)
|
|
}
|
|
|
|
func TestDecodeConfigInjectsDefaultAndCompiles(t *testing.T) {
|
|
c := qt.New(t)
|
|
|
|
cfg, err := DecodeConfig(config.BaseConfig{}, map[string]interface{}{})
|
|
c.Assert(err, qt.IsNil)
|
|
c.Assert(cfg, qt.DeepEquals, DefaultConfig)
|
|
|
|
_, err = cfg.Compile()
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
cfg, err = DecodeConfig(config.BaseConfig{}, map[string]any{
|
|
"cache": map[string]any{
|
|
"polls": []map[string]any{
|
|
{"disable": true},
|
|
},
|
|
},
|
|
})
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
_, err = cfg.Compile()
|
|
c.Assert(err, qt.IsNil)
|
|
}
|