summaryrefslogtreecommitdiffstats
path: root/hugolib/datafiles_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-08-10 08:51:57 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-09-06 18:32:20 +0300
commit446e606a098aeacbaaf89a53c7addd33cd888a74 (patch)
tree1f7745fc02cb9c5877226001751d33596f86708d /hugolib/datafiles_test.go
parent5b331a18d761fa897c08acf28fd7e2d498c3b1e9 (diff)
Add data tests
Updates #2309
Diffstat (limited to 'hugolib/datafiles_test.go')
-rw-r--r--hugolib/datafiles_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/hugolib/datafiles_test.go b/hugolib/datafiles_test.go
index 36325dc61..751c79ba5 100644
--- a/hugolib/datafiles_test.go
+++ b/hugolib/datafiles_test.go
@@ -16,10 +16,12 @@ package hugolib
import (
"path/filepath"
"reflect"
+ "strings"
"testing"
"github.com/spf13/hugo/parser"
"github.com/spf13/hugo/source"
+ "github.com/stretchr/testify/require"
)
func TestDataDirJSON(t *testing.T) {
@@ -104,3 +106,25 @@ func doTestDataDir(t *testing.T, expected interface{}, sources []source.Input) {
t.Errorf("Expected structure\n%#v got\n%#v", expected, s.Data)
}
}
+
+func TestDataFromShortcode(t *testing.T) {
+ testCommonResetState()
+ writeSource(t, "data/hugo.toml", "slogan = \"Hugo Rocks!\"")
+ writeSource(t, "layouts/_default/single.html", `
+* Slogan from template: {{ .Site.Data.hugo.slogan }}
+* {{ .Content }}`)
+ writeSource(t, "layouts/shortcodes/d.html", `{{ .Page.Site.Data.hugo.slogan }}`)
+ writeSource(t, "content/c.md", `---
+---
+Slogan from shortcode: {{< d >}}
+`)
+
+ h, err := newHugoSitesDefaultLanguage()
+ require.NoError(t, err)
+ require.NoError(t, h.Build(BuildCfg{}))
+
+ content := readSource(t, "public/c/index.html")
+ require.True(t, strings.Contains(content, "Slogan from template: Hugo Rocks!"), content)
+ require.True(t, strings.Contains(content, "Slogan from shortcode: Hugo Rocks!"), content)
+
+}