Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template_ast_transformers_test.go « tplimpl « tpl - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56d970b239e48c577f2c4ec25220845c3a380a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// Copyright 2019 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 tplimpl

import (
	"testing"

	template "github.com/gohugoio/hugo/tpl/internal/go_templates/htmltemplate"

	qt "github.com/frankban/quicktest"
	"github.com/gohugoio/hugo/tpl"
)

// Issue #2927
func TestTransformRecursiveTemplate(t *testing.T) {
	c := qt.New(t)

	recursive := `
{{ define "menu-nodes" }}
{{ template "menu-node" }}
{{ end }}
{{ define "menu-node" }}
{{ template "menu-node" }}
{{ end }}
{{ template "menu-nodes" }}
`

	templ, err := template.New("foo").Parse(recursive)
	c.Assert(err, qt.IsNil)
	ts := newTestTemplate(templ)

	ctx := newTemplateContext(
		ts,
		newTestTemplateLookup(ts),
	)
	ctx.applyTransformations(templ.Tree.Root)
}

func newTestTemplate(templ tpl.Template) *templateState {
	return newTemplateState(
		templ,
		templateInfo{
			name: templ.Name(),
		},
	)
}

func newTestTemplateLookup(in *templateState) func(name string) *templateState {
	m := make(map[string]*templateState)
	return func(name string) *templateState {
		if in.Name() == name {
			return in
		}

		if ts, found := m[name]; found {
			return ts
		}

		if templ, found := findTemplateIn(name, in); found {
			ts := newTestTemplate(templ)
			m[name] = ts
			return ts
		}

		return nil
	}
}

func TestCollectInfo(t *testing.T) {
	configStr := `{ "version": 42 }`

	tests := []struct {
		name      string
		tplString string
		expected  tpl.ParseInfo
	}{
		{"Basic Inner", `{{ .Inner }}`, tpl.ParseInfo{IsInner: true, Config: tpl.DefaultParseConfig}},
		{"Basic config map", "{{ $_hugo_config := `" + configStr + "`  }}", tpl.ParseInfo{Config: tpl.ParseConfig{Version: 42}}},
	}

	echo := func(in interface{}) interface{} {
		return in
	}

	funcs := template.FuncMap{
		"highlight": echo,
	}

	for _, test := range tests {
		t.Run(test.name, func(t *testing.T) {
			c := qt.New(t)

			templ, err := template.New("foo").Funcs(funcs).Parse(test.tplString)
			c.Assert(err, qt.IsNil)
			ts := newTestTemplate(templ)
			ts.typ = templateShortcode
			ctx := newTemplateContext(
				ts,
				newTestTemplateLookup(ts),
			)
			ctx.applyTransformations(templ.Tree.Root)
			c.Assert(ctx.t.parseInfo, qt.DeepEquals, test.expected)
		})
	}
}

func TestPartialReturn(t *testing.T) {
	tests := []struct {
		name      string
		tplString string
		expected  bool
	}{
		{"Basic", `
{{ $a := "Hugo Rocks!" }}
{{ return $a }}
`, true},
		{"Expression", `
{{ return add 32 }}
`, true},
	}

	echo := func(in interface{}) interface{} {
		return in
	}

	funcs := template.FuncMap{
		"return": echo,
		"add":    echo,
	}

	for _, test := range tests {
		t.Run(test.name, func(t *testing.T) {
			c := qt.New(t)

			templ, err := template.New("foo").Funcs(funcs).Parse(test.tplString)
			c.Assert(err, qt.IsNil)
			ts := newTestTemplate(templ)
			ctx := newTemplateContext(
				ts,
				newTestTemplateLookup(ts),
			)

			_, err = ctx.applyTransformations(templ.Tree.Root)

			// Just check that it doesn't fail in this test. We have functional tests
			// in hugoblib.
			c.Assert(err, qt.IsNil)
		})
	}
}