mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
025a37df2f
Viper stores Permalinks as a map[string]interface{}, so the type assertion to PermalinkOverrides (map[string]PathPattern) will always fail. We can, however, get Permalinks as a map[string]string, and convert each value to a PathPattern.
44 lines
998 B
Go
44 lines
998 B
Go
package hugolib
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
const SITE_INFO_PARAM_TEMPLATE = `{{ .Site.Params.MyGlobalParam }}`
|
|
|
|
func TestSiteInfoParams(t *testing.T) {
|
|
viper.Set("Params", map[string]interface{}{"MyGlobalParam": "FOOBAR_PARAM"})
|
|
s := &Site{}
|
|
|
|
s.initialize()
|
|
if s.Info.Params["MyGlobalParam"] != "FOOBAR_PARAM" {
|
|
t.Errorf("Unable to set site.Info.Param")
|
|
}
|
|
s.prepTemplates()
|
|
s.addTemplate("template", SITE_INFO_PARAM_TEMPLATE)
|
|
buf := new(bytes.Buffer)
|
|
|
|
err := s.renderThing(s.NewNode(), "template", buf)
|
|
if err != nil {
|
|
t.Errorf("Unable to render template: %s", err)
|
|
}
|
|
|
|
if buf.String() != "FOOBAR_PARAM" {
|
|
t.Errorf("Expected FOOBAR_PARAM: got %s", buf.String())
|
|
}
|
|
}
|
|
|
|
func TestSiteInfoPermalinks (t *testing.T) {
|
|
viper.Set("Permalinks", map[string]interface{}{"section": "/:title"})
|
|
s := &Site{}
|
|
|
|
s.initialize()
|
|
permalink := s.Info.Permalinks["section"]
|
|
|
|
if permalink != "/:title" {
|
|
t.Errorf("Could not set permalink (%#v)", permalink)
|
|
}
|
|
}
|