import (
"strings"
- "github.com/pkg/errors"
-
"github.com/spf13/cast"
)
v, key, owner := traverseParams(rest, m)
return v, key, owner, nil
default:
- return nil, "", nil, errors.Errorf("unsupported Params type: %T", result)
+ return nil, "", nil, nil
}
}
func TestGetNestedParam(t *testing.T) {
m := map[string]interface{}{
+ "string": "value",
"first": 1,
"with_underscore": 2,
"nested": map[string]interface{}{
"color": "blue",
+ "nestednested": map[string]interface{}{
+ "color": "green",
+ },
},
}
assert.Equal(1, must("First", "_", m))
assert.Equal(2, must("with_underscore", "_", m))
assert.Equal("blue", must("nested_color", "_", m))
+ assert.Equal("green", must("nested.nestednested.color", ".", m))
+ assert.Nil(must("string.name", ".", m))
}
b.AssertFileContent("public/index.html", "B: bv")
b.AssertFileContent("public/scratchme/index.html", "C: cv")
}
+
+func TestPageParam(t *testing.T) {
+ t.Parallel()
+
+ b := newTestSitesBuilder(t).WithConfigFile("toml", `
+
+baseURL = "https://example.org"
+
+[params]
+[params.author]
+ name = "Kurt Vonnegut"
+
+`)
+ b.WithTemplatesAdded("index.html", `
+
+{{ $withParam := .Site.GetPage "withparam" }}
+{{ $noParam := .Site.GetPage "noparam" }}
+{{ $withStringParam := .Site.GetPage "withstringparam" }}
+
+Author page: {{ $withParam.Param "author.name" }}
+Author page string: {{ $withStringParam.Param "author.name" }}|
+Author site config: {{ $noParam.Param "author.name" }}
+
+`,
+ )
+
+ b.WithContent("withparam.md", `
++++
+title = "With Param!"
+[author]
+ name = "Ernest Miller Hemingway"
+
++++
+
+`,
+
+ "noparam.md", `
+---
+title: "No Param!"
+---
+`, "withstringparam.md", `
++++
+title = "With string Param!"
+author = "Jo Nesbø"
+
++++
+
+`)
+ b.Build(BuildCfg{})
+
+ b.AssertFileContent("public/index.html", "Author page: Ernest Miller Hemingway")
+ b.AssertFileContent("public/index.html", "Author page string: |")
+ b.AssertFileContent("public/index.html", "Author site config: Kurt Vonnegut")
+
+}