blob: 139fc5320dcc79d720d0bbe7b479ff997c821468 [file] [log] [blame]
Rob Pike81592c22011-06-28 23:04:08 +10001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package template
6
7import (
8 "bytes"
Russ Coxe73680a2011-11-04 07:33:55 -04009 "errors"
Rob Pikec66917d2011-08-09 15:42:53 +100010 "flag"
Rob Pike81592c22011-06-28 23:04:08 +100011 "fmt"
Rob Pikebe33e202015-08-27 16:28:52 +100012 "io/ioutil"
Rob Pike7c477412011-07-12 13:15:26 +100013 "reflect"
Rob Pike81592c22011-06-28 23:04:08 +100014 "strings"
15 "testing"
16)
17
Rob Pikec66917d2011-08-09 15:42:53 +100018var debug = flag.Bool("debug", false, "show the errors produced by the tests")
19
Rob Pike81592c22011-06-28 23:04:08 +100020// T has lots of interesting pieces to use to test execution.
21type T struct {
22 // Basics
Rob Pikec3344d62011-07-14 07:52:07 +100023 True bool
Rob Pike13f88972011-07-04 15:15:47 +100024 I int
25 U16 uint16
26 X string
27 FloatZero float64
Rob Pike5fea8c02013-07-31 13:04:57 +100028 ComplexZero complex128
Rob Pike81592c22011-06-28 23:04:08 +100029 // Nested structs.
30 U *U
Rob Pike6ca968c2011-08-11 14:36:51 +100031 // Struct with String method.
32 V0 V
33 V1, V2 *V
David Symonds39fcca62011-11-04 23:45:38 +110034 // Struct with Error method.
35 W0 W
36 W1, W2 *W
Rob Pike81592c22011-06-28 23:04:08 +100037 // Slices
Rob Pike13f88972011-07-04 15:15:47 +100038 SI []int
39 SIEmpty []int
40 SB []bool
Rob Pike81592c22011-06-28 23:04:08 +100041 // Maps
42 MSI map[string]int
Rob Pike13f88972011-07-04 15:15:47 +100043 MSIone map[string]int // one element, for deterministic output
Rob Pike81592c22011-06-28 23:04:08 +100044 MSIEmpty map[string]int
Gustavo Niemeyere3df71f2011-08-15 00:56:01 -030045 MXI map[interface{}]int
46 MII map[int]int
Rob Pike6732bd32011-07-06 22:27:06 +100047 SMSI []map[string]int
Rob Pike238274e2011-07-07 14:51:35 +100048 // Empty interfaces; used to see if we can dig inside one.
49 Empty0 interface{} // nil
50 Empty1 interface{}
51 Empty2 interface{}
52 Empty3 interface{}
53 Empty4 interface{}
Rob Pike1adda462011-08-09 17:07:29 +100054 // Non-empty interface.
55 NonEmptyInterface I
David Symondsfe59d862011-08-12 13:29:56 +100056 // Stringer.
57 Str fmt.Stringer
Russ Coxe73680a2011-11-04 07:33:55 -040058 Err error
Rob Pike238274e2011-07-07 14:51:35 +100059 // Pointers
60 PI *int
Rob Pike1f661fc2013-08-27 13:29:07 +100061 PS *string
Rob Pike238274e2011-07-07 14:51:35 +100062 PSI *[]int
63 NIL *int
Rob Pikeaca80712012-02-15 16:05:34 +110064 // Function (not method)
Rob Pikef1d3ff12012-03-03 23:14:20 +110065 BinaryFunc func(string, string) string
66 VariadicFunc func(...string) string
67 VariadicFuncInt func(int, ...string) string
Rob Pike18c378c2012-08-08 20:02:19 -070068 NilOKFunc func(*int) bool
Elias Naur83348a12013-08-13 11:11:05 +100069 ErrFunc func() (string, error)
Rob Pike3987b912011-07-10 07:32:01 +100070 // Template to test evaluation of templates.
71 Tmpl *Template
Rob Pikea8098cb2012-04-23 15:39:02 +100072 // Unexported field; cannot be accessed by template.
73 unexported int
Rob Pike238274e2011-07-07 14:51:35 +100074}
75
Rob Pikea8529812011-07-08 15:22:05 +100076type U struct {
77 V string
78}
79
Rob Pike6ca968c2011-08-11 14:36:51 +100080type V struct {
81 j int
82}
83
84func (v *V) String() string {
85 if v == nil {
86 return "nilV"
87 }
88 return fmt.Sprintf("<%d>", v.j)
89}
90
David Symonds39fcca62011-11-04 23:45:38 +110091type W struct {
92 k int
93}
94
95func (w *W) Error() string {
96 if w == nil {
97 return "nilW"
98 }
99 return fmt.Sprintf("[%d]", w.k)
100}
101
Rob Pike238274e2011-07-07 14:51:35 +1000102var tVal = &T{
Rob Pikec3344d62011-07-14 07:52:07 +1000103 True: true,
Rob Pike238274e2011-07-07 14:51:35 +1000104 I: 17,
105 U16: 16,
106 X: "x",
107 U: &U{"v"},
Rob Pike6ca968c2011-08-11 14:36:51 +1000108 V0: V{6666},
109 V1: &V{7777}, // leave V2 as nil
David Symonds39fcca62011-11-04 23:45:38 +1100110 W0: W{888},
111 W1: &W{999}, // leave W2 as nil
Rob Pike238274e2011-07-07 14:51:35 +1000112 SI: []int{3, 4, 5},
113 SB: []bool{true, false},
114 MSI: map[string]int{"one": 1, "two": 2, "three": 3},
115 MSIone: map[string]int{"one": 1},
Gustavo Niemeyere3df71f2011-08-15 00:56:01 -0300116 MXI: map[interface{}]int{"one": 1},
117 MII: map[int]int{1: 1},
Rob Pike238274e2011-07-07 14:51:35 +1000118 SMSI: []map[string]int{
119 {"one": 1, "two": 2},
120 {"eleven": 11, "twelve": 12},
121 },
Rob Pike1adda462011-08-09 17:07:29 +1000122 Empty1: 3,
123 Empty2: "empty2",
124 Empty3: []int{7, 8},
125 Empty4: &U{"UinEmpty"},
126 NonEmptyInterface: new(T),
Russ Cox853c8462011-10-27 21:17:47 -0700127 Str: bytes.NewBuffer([]byte("foozle")),
Russ Coxe73680a2011-11-04 07:33:55 -0400128 Err: errors.New("erroozle"),
Rob Pike1adda462011-08-09 17:07:29 +1000129 PI: newInt(23),
Rob Pike1f661fc2013-08-27 13:29:07 +1000130 PS: newString("a string"),
Rob Pike1adda462011-08-09 17:07:29 +1000131 PSI: newIntSlice(21, 22, 23),
Rob Pikef1d3ff12012-03-03 23:14:20 +1100132 BinaryFunc: func(a, b string) string { return fmt.Sprintf("[%s=%s]", a, b) },
133 VariadicFunc: func(s ...string) string { return fmt.Sprint("<", strings.Join(s, "+"), ">") },
134 VariadicFuncInt: func(a int, s ...string) string { return fmt.Sprint(a, "=<", strings.Join(s, "+"), ">") },
Rob Pike18c378c2012-08-08 20:02:19 -0700135 NilOKFunc: func(s *int) bool { return s == nil },
Elias Naur83348a12013-08-13 11:11:05 +1000136 ErrFunc: func() (string, error) { return "bla", nil },
Rob Pike1adda462011-08-09 17:07:29 +1000137 Tmpl: Must(New("x").Parse("test template")), // "x" is the value of .X
Rob Pike238274e2011-07-07 14:51:35 +1000138}
139
Robert Griesemer7162f392011-07-30 17:11:52 -0700140// A non-empty interface.
141type I interface {
142 Method0() string
143}
144
145var iVal I = tVal
146
Rob Pike238274e2011-07-07 14:51:35 +1000147// Helpers for creation.
148func newInt(n int) *int {
Rob Pike1f661fc2013-08-27 13:29:07 +1000149 return &n
150}
151
152func newString(s string) *string {
153 return &s
Rob Pike238274e2011-07-07 14:51:35 +1000154}
155
156func newIntSlice(n ...int) *[]int {
157 p := new([]int)
158 *p = make([]int, len(n))
159 copy(*p, n)
160 return p
Rob Pike81592c22011-06-28 23:04:08 +1000161}
162
163// Simple methods with and without arguments.
164func (t *T) Method0() string {
Rob Pikea8529812011-07-08 15:22:05 +1000165 return "M0"
Rob Pike81592c22011-06-28 23:04:08 +1000166}
167
168func (t *T) Method1(a int) int {
169 return a
170}
171
172func (t *T) Method2(a uint16, b string) string {
173 return fmt.Sprintf("Method2: %d %s", a, b)
174}
175
Gustavo Niemeyer12f473f2011-12-18 22:14:11 -0200176func (t *T) Method3(v interface{}) string {
177 return fmt.Sprintf("Method3: %v", v)
178}
179
Rob Pike5d5e73b2014-09-22 17:48:13 -0700180func (t *T) Copy() *T {
181 n := new(T)
182 *n = *t
183 return n
184}
185
Rob Pike81592c22011-06-28 23:04:08 +1000186func (t *T) MAdd(a int, b []int) []int {
187 v := make([]int, len(b))
188 for i, x := range b {
189 v[i] = x + a
190 }
191 return v
192}
193
Rob Pike47424d92012-02-14 07:11:39 +1100194var myError = errors.New("my error")
195
196// MyError returns a value and an error according to its argument.
197func (t *T) MyError(error bool) (bool, error) {
Rob Pikec756a192011-06-29 15:02:04 +1000198 if error {
Rob Pike47424d92012-02-14 07:11:39 +1100199 return true, myError
Rob Pike81592c22011-06-28 23:04:08 +1000200 }
Rob Pikec756a192011-06-29 15:02:04 +1000201 return false, nil
Rob Pike81592c22011-06-28 23:04:08 +1000202}
203
Rob Pikec3344d62011-07-14 07:52:07 +1000204// A few methods to test chaining.
205func (t *T) GetU() *U {
206 return t.U
207}
208
209func (u *U) TrueFalse(b bool) string {
210 if b {
211 return "true"
212 }
213 return ""
214}
215
Rob Pike7c477412011-07-12 13:15:26 +1000216func typeOf(arg interface{}) string {
217 return fmt.Sprintf("%T", arg)
218}
219
Rob Pike81592c22011-06-28 23:04:08 +1000220type execTest struct {
221 name string
222 input string
223 output string
224 data interface{}
225 ok bool
226}
227
Rob Pike7c477412011-07-12 13:15:26 +1000228// bigInt and bigUint are hex string representing numbers either side
229// of the max int boundary.
230// We do it this way so the test doesn't depend on ints being 32 bits.
231var (
232 bigInt = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeOf(0).Bits()-1)-1))
233 bigUint = fmt.Sprintf("0x%x", uint(1<<uint(reflect.TypeOf(0).Bits()-1)))
234)
235
Rob Pike81592c22011-06-28 23:04:08 +1000236var execTests = []execTest{
Rob Pike13f88972011-07-04 15:15:47 +1000237 // Trivial cases.
Rob Pike81592c22011-06-28 23:04:08 +1000238 {"empty", "", "", nil, true},
239 {"text", "some text", "some text", nil, true},
Rob Pike18c378c2012-08-08 20:02:19 -0700240 {"nil action", "{{nil}}", "", nil, false},
Rob Pike238274e2011-07-07 14:51:35 +1000241
Rob Pike7c477412011-07-12 13:15:26 +1000242 // Ideal constants.
243 {"ideal int", "{{typeOf 3}}", "int", 0, true},
244 {"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
245 {"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
246 {"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
247 {"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
248 {"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
Rob Pike18c378c2012-08-08 20:02:19 -0700249 {"ideal nil without type", "{{nil}}", "", 0, false},
Rob Pike7c477412011-07-12 13:15:26 +1000250
Rob Pike13f88972011-07-04 15:15:47 +1000251 // Fields of structs.
Rob Pike81592c22011-06-28 23:04:08 +1000252 {".X", "-{{.X}}-", "-x-", tVal, true},
253 {".U.V", "-{{.U.V}}-", "-v-", tVal, true},
Rob Pikea8098cb2012-04-23 15:39:02 +1000254 {".unexported", "{{.unexported}}", "", tVal, false},
Rob Pike238274e2011-07-07 14:51:35 +1000255
Gustavo Niemeyere3df71f2011-08-15 00:56:01 -0300256 // Fields on maps.
257 {"map .one", "{{.MSI.one}}", "1", tVal, true},
258 {"map .two", "{{.MSI.two}}", "2", tVal, true},
259 {"map .NO", "{{.MSI.NO}}", "<no value>", tVal, true},
260 {"map .one interface", "{{.MXI.one}}", "1", tVal, true},
261 {"map .WRONG args", "{{.MSI.one 1}}", "", tVal, false},
262 {"map .WRONG type", "{{.MII.one}}", "", tVal, false},
263
Rob Pike13f88972011-07-04 15:15:47 +1000264 // Dots of all kinds to test basic evaluation.
265 {"dot int", "<{{.}}>", "<13>", 13, true},
266 {"dot uint", "<{{.}}>", "<14>", uint(14), true},
267 {"dot float", "<{{.}}>", "<15.1>", 15.1, true},
268 {"dot bool", "<{{.}}>", "<true>", true, true},
269 {"dot complex", "<{{.}}>", "<(16.2-17i)>", 16.2 - 17i, true},
270 {"dot string", "<{{.}}>", "<hello>", "hello", true},
271 {"dot slice", "<{{.}}>", "<[-1 -2 -3]>", []int{-1, -2, -3}, true},
Russ Cox9a7dd712011-10-17 14:51:45 -0400272 {"dot map", "<{{.}}>", "<map[two:22]>", map[string]int{"two": 22}, true},
Rob Pike13f88972011-07-04 15:15:47 +1000273 {"dot struct", "<{{.}}>", "<{7 seven}>", struct {
274 a int
275 b string
276 }{7, "seven"}, true},
Rob Pike238274e2011-07-07 14:51:35 +1000277
Rob Pike58baf642011-07-09 12:05:39 +1000278 // Variables.
279 {"$ int", "{{$}}", "123", 123, true},
Rob Pike7b79b3b2011-07-11 15:23:38 +1000280 {"$.I", "{{$.I}}", "17", tVal, true},
281 {"$.U.V", "{{$.U.V}}", "v", tVal, true},
Rob Pike3e79c952011-07-22 10:51:40 +1000282 {"declare in action", "{{$x := $.U.V}}{{$x}}", "v", tVal, true},
Rob Pike58baf642011-07-09 12:05:39 +1000283
Rob Pike6ca968c2011-08-11 14:36:51 +1000284 // Type with String method.
285 {"V{6666}.String()", "-{{.V0}}-", "-<6666>-", tVal, true},
286 {"&V{7777}.String()", "-{{.V1}}-", "-<7777>-", tVal, true},
287 {"(*V)(nil).String()", "-{{.V2}}-", "-nilV-", tVal, true},
288
David Symonds39fcca62011-11-04 23:45:38 +1100289 // Type with Error method.
290 {"W{888}.Error()", "-{{.W0}}-", "-[888]-", tVal, true},
291 {"&W{999}.Error()", "-{{.W1}}-", "-[999]-", tVal, true},
292 {"(*W)(nil).Error()", "-{{.W2}}-", "-nilW-", tVal, true},
293
Rob Pike238274e2011-07-07 14:51:35 +1000294 // Pointers.
295 {"*int", "{{.PI}}", "23", tVal, true},
Rob Pike1f661fc2013-08-27 13:29:07 +1000296 {"*string", "{{.PS}}", "a string", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000297 {"*[]int", "{{.PSI}}", "[21 22 23]", tVal, true},
298 {"*[]int[1]", "{{index .PSI 1}}", "22", tVal, true},
299 {"NIL", "{{.NIL}}", "<nil>", tVal, true},
300
Rob Piked3d08e12011-07-08 18:25:46 +1000301 // Empty interfaces holding values.
Rob Pike238274e2011-07-07 14:51:35 +1000302 {"empty nil", "{{.Empty0}}", "<no value>", tVal, true},
303 {"empty with int", "{{.Empty1}}", "3", tVal, true},
304 {"empty with string", "{{.Empty2}}", "empty2", tVal, true},
305 {"empty with slice", "{{.Empty3}}", "[7 8]", tVal, true},
Rob Pike9a5bb282011-07-18 17:34:42 +1000306 {"empty with struct", "{{.Empty4}}", "{UinEmpty}", tVal, true},
307 {"empty with struct, field", "{{.Empty4.V}}", "UinEmpty", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000308
Rob Pike13f88972011-07-04 15:15:47 +1000309 // Method calls.
Rob Pikea8529812011-07-08 15:22:05 +1000310 {".Method0", "-{{.Method0}}-", "-M0-", tVal, true},
Rob Pike81592c22011-06-28 23:04:08 +1000311 {".Method1(1234)", "-{{.Method1 1234}}-", "-1234-", tVal, true},
312 {".Method1(.I)", "-{{.Method1 .I}}-", "-17-", tVal, true},
313 {".Method2(3, .X)", "-{{.Method2 3 .X}}-", "-Method2: 3 x-", tVal, true},
314 {".Method2(.U16, `str`)", "-{{.Method2 .U16 `str`}}-", "-Method2: 16 str-", tVal, true},
Rob Pikee86d7272011-07-09 17:11:35 +1000315 {".Method2(.U16, $x)", "{{if $x := .X}}-{{.Method2 .U16 $x}}{{end}}-", "-Method2: 16 x-", tVal, true},
Rob Pike18c378c2012-08-08 20:02:19 -0700316 {".Method3(nil constant)", "-{{.Method3 nil}}-", "-Method3: <nil>-", tVal, true},
317 {".Method3(nil value)", "-{{.Method3 .MXI.unset}}-", "-Method3: <nil>-", tVal, true},
Rob Pike7b79b3b2011-07-11 15:23:38 +1000318 {"method on var", "{{if $x := .}}-{{$x.Method2 .U16 $x.X}}{{end}}-", "-Method2: 16 x-", tVal, true},
Rob Pikec3344d62011-07-14 07:52:07 +1000319 {"method on chained var",
320 "{{range .MSIone}}{{if $.U.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
321 "true", tVal, true},
322 {"chained method",
323 "{{range .MSIone}}{{if $.GetU.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
324 "true", tVal, true},
325 {"chained method on variable",
326 "{{with $x := .}}{{with .SI}}{{$.GetU.TrueFalse $.True}}{{end}}{{end}}",
327 "true", tVal, true},
Rob Pike18c378c2012-08-08 20:02:19 -0700328 {".NilOKFunc not nil", "{{call .NilOKFunc .PI}}", "false", tVal, true},
329 {".NilOKFunc nil", "{{call .NilOKFunc nil}}", "true", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000330
Rob Pikef1d3ff12012-03-03 23:14:20 +1100331 // Function call builtin.
332 {".BinaryFunc", "{{call .BinaryFunc `1` `2`}}", "[1=2]", tVal, true},
333 {".VariadicFunc0", "{{call .VariadicFunc}}", "<>", tVal, true},
334 {".VariadicFunc2", "{{call .VariadicFunc `he` `llo`}}", "<he+llo>", tVal, true},
335 {".VariadicFuncInt", "{{call .VariadicFuncInt 33 `he` `llo`}}", "33=<he+llo>", tVal, true},
336 {"if .BinaryFunc call", "{{ if .BinaryFunc}}{{call .BinaryFunc `1` `2`}}{{end}}", "[1=2]", tVal, true},
337 {"if not .BinaryFunc call", "{{ if not .BinaryFunc}}{{call .BinaryFunc `1` `2`}}{{else}}No{{end}}", "No", tVal, true},
Ugorji Nwoke4f7c33c2012-05-22 15:21:35 -0700338 {"Interface Call", `{{stringer .S}}`, "foozle", map[string]interface{}{"S": bytes.NewBufferString("foozle")}, true},
Elias Naur83348a12013-08-13 11:11:05 +1000339 {".ErrFunc", "{{call .ErrFunc}}", "bla", tVal, true},
Nodir Turakulov65994502015-09-05 23:16:49 -0700340 {"call nil", "{{call nil}}", "", tVal, false},
Rob Pikef1d3ff12012-03-03 23:14:20 +1100341
342 // Erroneous function calls (check args).
343 {".BinaryFuncTooFew", "{{call .BinaryFunc `1`}}", "", tVal, false},
344 {".BinaryFuncTooMany", "{{call .BinaryFunc `1` `2` `3`}}", "", tVal, false},
345 {".BinaryFuncBad0", "{{call .BinaryFunc 1 3}}", "", tVal, false},
346 {".BinaryFuncBad1", "{{call .BinaryFunc `1` 3}}", "", tVal, false},
347 {".VariadicFuncBad0", "{{call .VariadicFunc 3}}", "", tVal, false},
Rob Pike227a04d2012-03-04 08:06:26 +1100348 {".VariadicFuncIntBad0", "{{call .VariadicFuncInt}}", "", tVal, false},
349 {".VariadicFuncIntBad`", "{{call .VariadicFuncInt `x`}}", "", tVal, false},
Rob Pike18c378c2012-08-08 20:02:19 -0700350 {".VariadicFuncNilBad", "{{call .VariadicFunc nil}}", "", tVal, false},
Rob Pikeaca80712012-02-15 16:05:34 +1100351
Rob Pike13f88972011-07-04 15:15:47 +1000352 // Pipelines.
Rob Pikea8529812011-07-08 15:22:05 +1000353 {"pipeline", "-{{.Method0 | .Method2 .U16}}-", "-Method2: 16 M0-", tVal, true},
Rob Pikef1d3ff12012-03-03 23:14:20 +1100354 {"pipeline func", "-{{call .VariadicFunc `llo` | call .VariadicFunc `he` }}-", "-<he+<llo>>-", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000355
Rob Pikecc842c72012-08-24 12:37:23 -0700356 // Parenthesized expressions
357 {"parens in pipeline", "{{printf `%d %d %d` (1) (2 | add 3) (add 4 (add 5 6))}}", "1 5 15", tVal, true},
358
Rob Pike90505502012-09-24 13:23:15 +1000359 // Parenthesized expressions with field accesses
360 {"parens: $ in paren", "{{($).X}}", "x", tVal, true},
361 {"parens: $.GetU in paren", "{{($.GetU).V}}", "v", tVal, true},
362 {"parens: $ in paren in pipe", "{{($ | echo).X}}", "x", tVal, true},
363 {"parens: spaces and args", `{{(makemap "up" "down" "left" "right").left}}`, "right", tVal, true},
364
Rob Pike13f88972011-07-04 15:15:47 +1000365 // If.
366 {"if true", "{{if true}}TRUE{{end}}", "TRUE", tVal, true},
367 {"if false", "{{if false}}TRUE{{else}}FALSE{{end}}", "FALSE", tVal, true},
Rob Pike18c378c2012-08-08 20:02:19 -0700368 {"if nil", "{{if nil}}TRUE{{end}}", "", tVal, false},
Rob Pike13f88972011-07-04 15:15:47 +1000369 {"if 1", "{{if 1}}NON-ZERO{{else}}ZERO{{end}}", "NON-ZERO", tVal, true},
370 {"if 0", "{{if 0}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
371 {"if 1.5", "{{if 1.5}}NON-ZERO{{else}}ZERO{{end}}", "NON-ZERO", tVal, true},
372 {"if 0.0", "{{if .FloatZero}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
373 {"if 1.5i", "{{if 1.5i}}NON-ZERO{{else}}ZERO{{end}}", "NON-ZERO", tVal, true},
374 {"if 0.0i", "{{if .ComplexZero}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
375 {"if emptystring", "{{if ``}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
376 {"if string", "{{if `notempty`}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
377 {"if emptyslice", "{{if .SIEmpty}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
378 {"if slice", "{{if .SI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
379 {"if emptymap", "{{if .MSIEmpty}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
380 {"if map", "{{if .MSI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
Gustavo Niemeyer12f473f2011-12-18 22:14:11 -0200381 {"if map unset", "{{if .MXI.none}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
382 {"if map not unset", "{{if not .MXI.none}}ZERO{{else}}NON-ZERO{{end}}", "ZERO", tVal, true},
Rob Pikefc1f0bd2011-07-14 13:15:55 +1000383 {"if $x with $y int", "{{if $x := true}}{{with $y := .I}}{{$x}},{{$y}}{{end}}{{end}}", "true,17", tVal, true},
384 {"if $x with $x int", "{{if $x := true}}{{with $x := .I}}{{$x}},{{end}}{{$x}}{{end}}", "17,true", tVal, true},
Rob Pike37cee772013-08-28 14:43:56 +1000385 {"if else if", "{{if false}}FALSE{{else if true}}TRUE{{end}}", "TRUE", tVal, true},
386 {"if else chain", "{{if eq 1 3}}1{{else if eq 2 3}}2{{else if eq 3 3}}3{{end}}", "3", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000387
Rob Pikeabae8472011-07-11 09:19:18 +1000388 // Print etc.
389 {"print", `{{print "hello, print"}}`, "hello, print", tVal, true},
Rob Pike18c378c2012-08-08 20:02:19 -0700390 {"print 123", `{{print 1 2 3}}`, "1 2 3", tVal, true},
391 {"print nil", `{{print nil}}`, "<nil>", tVal, true},
Rob Pikeabae8472011-07-11 09:19:18 +1000392 {"println", `{{println 1 2 3}}`, "1 2 3\n", tVal, true},
Rob Pikeb177c972011-07-05 14:23:51 +1000393 {"printf int", `{{printf "%04x" 127}}`, "007f", tVal, true},
394 {"printf float", `{{printf "%g" 3.5}}`, "3.5", tVal, true},
395 {"printf complex", `{{printf "%g" 1+7i}}`, "(1+7i)", tVal, true},
396 {"printf string", `{{printf "%s" "hello"}}`, "hello", tVal, true},
Rob Piked3d08e12011-07-08 18:25:46 +1000397 {"printf function", `{{printf "%#q" zeroArgs}}`, "`zeroArgs`", tVal, true},
Rob Pikeb177c972011-07-05 14:23:51 +1000398 {"printf field", `{{printf "%s" .U.V}}`, "v", tVal, true},
Rob Pikea8529812011-07-08 15:22:05 +1000399 {"printf method", `{{printf "%s" .Method0}}`, "M0", tVal, true},
Rob Pikee86d7272011-07-09 17:11:35 +1000400 {"printf dot", `{{with .I}}{{printf "%d" .}}{{end}}`, "17", tVal, true},
401 {"printf var", `{{with $x := .I}}{{printf "%d" $x}}{{end}}`, "17", tVal, true},
Rob Pikea8529812011-07-08 15:22:05 +1000402 {"printf lots", `{{printf "%d %s %g %s" 127 "hello" 7-3i .Method0}}`, "127 hello (7-3i) M0", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000403
Rob Pikeeea54432011-07-05 17:05:15 +1000404 // HTML.
Rob Pikecc9fed72011-07-05 15:58:54 +1000405 {"html", `{{html "<script>alert(\"XSS\");</script>"}}`,
Rob Pikeeea54432011-07-05 17:05:15 +1000406 "&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
Rob Pikecc9fed72011-07-05 15:58:54 +1000407 {"html pipeline", `{{printf "<script>alert(\"XSS\");</script>" | html}}`,
Rob Pikeeea54432011-07-05 17:05:15 +1000408 "&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
Rob Pike1f661fc2013-08-27 13:29:07 +1000409 {"html", `{{html .PS}}`, "a string", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000410
411 // JavaScript.
David Symonds33705dd2011-07-06 16:51:49 +1000412 {"js", `{{js .}}`, `It\'d be nice.`, `It'd be nice.`, true},
Rob Pike238274e2011-07-07 14:51:35 +1000413
David Symonds5e48e642011-08-13 14:00:16 +1000414 // URL query.
415 {"urlquery", `{{"http://www.example.org/"|urlquery}}`, "http%3A%2F%2Fwww.example.org%2F", nil, true},
David Symondsa09ba8b2011-08-08 16:29:57 +1000416
Rob Pikeeea54432011-07-05 17:05:15 +1000417 // Booleans
418 {"not", "{{not true}} {{not false}}", "false true", nil, true},
Rob Pike469e3332011-07-14 07:59:04 +1000419 {"and", "{{and false 0}} {{and 1 0}} {{and 0 true}} {{and 1 1}}", "false 0 0 1", nil, true},
420 {"or", "{{or 0 0}} {{or 1 0}} {{or 0 true}} {{or 1 1}}", "0 1 true 1", nil, true},
Rob Pikeeea54432011-07-05 17:05:15 +1000421 {"boolean if", "{{if and true 1 `hi`}}TRUE{{else}}FALSE{{end}}", "TRUE", tVal, true},
422 {"boolean if not", "{{if and true 1 `hi` | not}}TRUE{{else}}FALSE{{end}}", "FALSE", nil, true},
Rob Pike238274e2011-07-07 14:51:35 +1000423
Rob Pike6732bd32011-07-06 22:27:06 +1000424 // Indexing.
425 {"slice[0]", "{{index .SI 0}}", "3", tVal, true},
426 {"slice[1]", "{{index .SI 1}}", "4", tVal, true},
427 {"slice[HUGE]", "{{index .SI 10}}", "", tVal, false},
428 {"slice[WRONG]", "{{index .SI `hello`}}", "", tVal, false},
Nodir Turakulov65994502015-09-05 23:16:49 -0700429 {"slice[nil]", "{{index .SI nil}}", "", tVal, false},
Rob Pike6732bd32011-07-06 22:27:06 +1000430 {"map[one]", "{{index .MSI `one`}}", "1", tVal, true},
431 {"map[two]", "{{index .MSI `two`}}", "2", tVal, true},
Rob Pikece274332012-07-23 16:19:12 -0700432 {"map[NO]", "{{index .MSI `XXX`}}", "0", tVal, true},
Nodir Turakulov65994502015-09-05 23:16:49 -0700433 {"map[nil]", "{{index .MSI nil}}", "", tVal, false},
434 {"map[``]", "{{index .MSI ``}}", "0", tVal, true},
Rob Pike6732bd32011-07-06 22:27:06 +1000435 {"map[WRONG]", "{{index .MSI 10}}", "", tVal, false},
436 {"double index", "{{index .SMSI 1 `eleven`}}", "11", tVal, true},
Nodir Turakulov65994502015-09-05 23:16:49 -0700437 {"nil[1]", "{{index nil 1}}", "", tVal, false},
Rob Pike238274e2011-07-07 14:51:35 +1000438
Rob Pikeb1d1da42011-08-12 11:47:44 +1000439 // Len.
440 {"slice", "{{len .SI}}", "3", tVal, true},
441 {"map", "{{len .MSI }}", "3", tVal, true},
442 {"len of int", "{{len 3}}", "", tVal, false},
443 {"len of nothing", "{{len .Empty0}}", "", tVal, false},
444
Rob Pike13f88972011-07-04 15:15:47 +1000445 // With.
446 {"with true", "{{with true}}{{.}}{{end}}", "true", tVal, true},
447 {"with false", "{{with false}}{{.}}{{else}}FALSE{{end}}", "FALSE", tVal, true},
448 {"with 1", "{{with 1}}{{.}}{{else}}ZERO{{end}}", "1", tVal, true},
449 {"with 0", "{{with 0}}{{.}}{{else}}ZERO{{end}}", "ZERO", tVal, true},
450 {"with 1.5", "{{with 1.5}}{{.}}{{else}}ZERO{{end}}", "1.5", tVal, true},
451 {"with 0.0", "{{with .FloatZero}}{{.}}{{else}}ZERO{{end}}", "ZERO", tVal, true},
452 {"with 1.5i", "{{with 1.5i}}{{.}}{{else}}ZERO{{end}}", "(0+1.5i)", tVal, true},
453 {"with 0.0i", "{{with .ComplexZero}}{{.}}{{else}}ZERO{{end}}", "ZERO", tVal, true},
454 {"with emptystring", "{{with ``}}{{.}}{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
455 {"with string", "{{with `notempty`}}{{.}}{{else}}EMPTY{{end}}", "notempty", tVal, true},
456 {"with emptyslice", "{{with .SIEmpty}}{{.}}{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
457 {"with slice", "{{with .SI}}{{.}}{{else}}EMPTY{{end}}", "[3 4 5]", tVal, true},
458 {"with emptymap", "{{with .MSIEmpty}}{{.}}{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
459 {"with map", "{{with .MSIone}}{{.}}{{else}}EMPTY{{end}}", "map[one:1]", tVal, true},
Rob Pike9a5bb282011-07-18 17:34:42 +1000460 {"with empty interface, struct field", "{{with .Empty4}}{{.V}}{{end}}", "UinEmpty", tVal, true},
Rob Pikefc1f0bd2011-07-14 13:15:55 +1000461 {"with $x int", "{{with $x := .I}}{{$x}}{{end}}", "17", tVal, true},
Rob Pikec7057012011-07-17 13:31:59 +1000462 {"with $x struct.U.V", "{{with $x := $}}{{$x.U.V}}{{end}}", "v", tVal, true},
Rob Pike3e79c952011-07-22 10:51:40 +1000463 {"with variable and action", "{{with $x := $}}{{$y := $.U.V}}{{$y}}{{end}}", "v", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000464
Rob Pike13f88972011-07-04 15:15:47 +1000465 // Range.
Rob Pike81592c22011-06-28 23:04:08 +1000466 {"range []int", "{{range .SI}}-{{.}}-{{end}}", "-3--4--5-", tVal, true},
Rob Pike13f88972011-07-04 15:15:47 +1000467 {"range empty no else", "{{range .SIEmpty}}-{{.}}-{{end}}", "", tVal, true},
Rob Pike81592c22011-06-28 23:04:08 +1000468 {"range []int else", "{{range .SI}}-{{.}}-{{else}}EMPTY{{end}}", "-3--4--5-", tVal, true},
Rob Pike13f88972011-07-04 15:15:47 +1000469 {"range empty else", "{{range .SIEmpty}}-{{.}}-{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
Rob Pikec756a192011-06-29 15:02:04 +1000470 {"range []bool", "{{range .SB}}-{{.}}-{{end}}", "-true--false-", tVal, true},
Rob Pike81592c22011-06-28 23:04:08 +1000471 {"range []int method", "{{range .SI | .MAdd .I}}-{{.}}-{{end}}", "-20--21--22-", tVal, true},
Rob Pikea5950df2012-01-13 14:09:13 -0800472 {"range map", "{{range .MSI}}-{{.}}-{{end}}", "-1--3--2-", tVal, true},
Rob Pike81592c22011-06-28 23:04:08 +1000473 {"range empty map no else", "{{range .MSIEmpty}}-{{.}}-{{end}}", "", tVal, true},
Rob Pikea5950df2012-01-13 14:09:13 -0800474 {"range map else", "{{range .MSI}}-{{.}}-{{else}}EMPTY{{end}}", "-1--3--2-", tVal, true},
Rob Pike81592c22011-06-28 23:04:08 +1000475 {"range empty map else", "{{range .MSIEmpty}}-{{.}}-{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000476 {"range empty interface", "{{range .Empty3}}-{{.}}-{{else}}EMPTY{{end}}", "-7--8-", tVal, true},
Gustavo Niemeyere3f3a542011-08-15 00:22:28 -0300477 {"range empty nil", "{{range .Empty0}}-{{.}}-{{end}}", "", tVal, true},
Rob Pikefc1f0bd2011-07-14 13:15:55 +1000478 {"range $x SI", "{{range $x := .SI}}<{{$x}}>{{end}}", "<3><4><5>", tVal, true},
479 {"range $x $y SI", "{{range $x, $y := .SI}}<{{$x}}={{$y}}>{{end}}", "<0=3><1=4><2=5>", tVal, true},
480 {"range $x MSIone", "{{range $x := .MSIone}}<{{$x}}>{{end}}", "<1>", tVal, true},
481 {"range $x $y MSIone", "{{range $x, $y := .MSIone}}<{{$x}}={{$y}}>{{end}}", "<one=1>", tVal, true},
482 {"range $x PSI", "{{range $x := .PSI}}<{{$x}}>{{end}}", "<21><22><23>", tVal, true},
Rob Pike3e79c952011-07-22 10:51:40 +1000483 {"declare in range", "{{range $x := .PSI}}<{{$foo:=$x}}{{$x}}>{{end}}", "<21><22><23>", tVal, true},
Rob Pike361c5ac2011-08-29 15:56:52 +1000484 {"range count", `{{range $i, $x := count 5}}[{{$i}}]{{$x}}{{end}}`, "[0]a[1]b[2]c[3]d[4]e", tVal, true},
485 {"range nil count", `{{range $i, $x := count 0}}{{else}}empty{{end}}`, "empty", tVal, true},
Rob Pike238274e2011-07-07 14:51:35 +1000486
Rob Pike469e3332011-07-14 07:59:04 +1000487 // Cute examples.
488 {"or as if true", `{{or .SI "slice is empty"}}`, "[3 4 5]", tVal, true},
489 {"or as if false", `{{or .SIEmpty "slice is empty"}}`, "slice is empty", tVal, true},
490
Rob Pike13f88972011-07-04 15:15:47 +1000491 // Error handling.
Rob Pike47424d92012-02-14 07:11:39 +1100492 {"error method, error", "{{.MyError true}}", "", tVal, false},
493 {"error method, no error", "{{.MyError false}}", "false", tVal, true},
Rob Piked366c362011-07-11 18:06:24 +1000494
495 // Fixed bugs.
496 // Must separate dot and receiver; otherwise args are evaluated with dot set to variable.
Rob Pikec3344d62011-07-14 07:52:07 +1000497 {"bug0", "{{range .MSIone}}{{if $.Method1 .}}X{{end}}{{end}}", "X", tVal, true},
Robert Griesemer7162f392011-07-30 17:11:52 -0700498 // Do not loop endlessly in indirect for non-empty interfaces.
Rob Pike1adda462011-08-09 17:07:29 +1000499 // The bug appears with *interface only; looped forever.
500 {"bug1", "{{.Method0}}", "M0", &iVal, true},
501 // Was taking address of interface field, so method set was empty.
502 {"bug2", "{{$.NonEmptyInterface.Method0}}", "M0", tVal, true},
503 // Struct values were not legal in with - mere oversight.
Rob Pike39fa2a52011-08-11 08:27:16 +1000504 {"bug3", "{{with $}}{{.Method0}}{{end}}", "M0", tVal, true},
505 // Nil interface values in if.
506 {"bug4", "{{if .Empty0}}non-nil{{else}}nil{{end}}", "nil", tVal, true},
David Symondsfe59d862011-08-12 13:29:56 +1000507 // Stringer.
508 {"bug5", "{{.Str}}", "foozle", tVal, true},
Russ Coxe73680a2011-11-04 07:33:55 -0400509 {"bug5a", "{{.Err}}", "erroozle", tVal, true},
Rob Piked45e808c2011-09-06 15:34:38 -0700510 // Args need to be indirected and dereferenced sometimes.
511 {"bug6a", "{{vfunc .V0 .V1}}", "vfunc", tVal, true},
512 {"bug6b", "{{vfunc .V0 .V0}}", "vfunc", tVal, true},
513 {"bug6c", "{{vfunc .V1 .V0}}", "vfunc", tVal, true},
514 {"bug6d", "{{vfunc .V1 .V1}}", "vfunc", tVal, true},
Rob Piked6ad6f02012-03-14 10:46:21 +1100515 // Legal parse but illegal execution: non-function should have no arguments.
516 {"bug7a", "{{3 2}}", "", tVal, false},
517 {"bug7b", "{{$x := 1}}{{$x 2}}", "", tVal, false},
518 {"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
Rob Pike065db4e2012-04-03 11:44:52 +1000519 // Pipelined arg was not being type-checked.
520 {"bug8a", "{{3|oneArg}}", "", tVal, false},
521 {"bug8b", "{{4|dddArg 3}}", "", tVal, false},
Rob Pikea8098cb2012-04-23 15:39:02 +1000522 // A bug was introduced that broke map lookups for lower-case names.
523 {"bug9", "{{.cause}}", "neglect", map[string]string{"cause": "neglect"}, true},
Rob Pike99645db2013-03-27 16:31:14 -0700524 // Field chain starting with function did not work.
525 {"bug10", "{{mapOfThree.three}}-{{(mapOfThree).three}}", "3-3", 0, true},
Rob Pike71575a92014-02-14 16:26:47 -0800526 // Dereferencing nil pointer while evaluating function arguments should not panic. Issue 7333.
527 {"bug11", "{{valueString .PS}}", "", T{}, false},
Rob Pike55fa76592014-09-03 15:57:03 -0700528 // 0xef gave constant type float64. Issue 8622.
529 {"bug12xe", "{{printf `%T` 0xef}}", "int", T{}, true},
530 {"bug12xE", "{{printf `%T` 0xEE}}", "int", T{}, true},
531 {"bug12Xe", "{{printf `%T` 0Xef}}", "int", T{}, true},
532 {"bug12XE", "{{printf `%T` 0XEE}}", "int", T{}, true},
Rob Pike5d5e73b2014-09-22 17:48:13 -0700533 // Chained nodes did not work as arguments. Issue 8473.
534 {"bug13", "{{print (.Copy).I}}", "17", tVal, true},
Didier Spezia76ace942015-05-02 11:03:35 +0000535 // Didn't protect against nil or literal values in field chains.
536 {"bug14a", "{{(nil).True}}", "", tVal, false},
537 {"bug14b", "{{$x := nil}}{{$x.anything}}", "", tVal, false},
538 {"bug14c", `{{$x := (1.0)}}{{$y := ("hello")}}{{$x.anything}}{{$y.true}}`, "", tVal, false},
Rob Pike92bdbb82015-05-13 12:59:33 -0700539 // Didn't call validateType on function results. Issue 10800.
540 {"bug15", "{{valueString returnInt}}", "", tVal, false},
Didier Spezia5c60a4f2015-05-27 11:44:19 +0000541 // Variadic function corner cases. Issue 10946.
542 {"bug16a", "{{true|printf}}", "", tVal, false},
543 {"bug16b", "{{1|printf}}", "", tVal, false},
544 {"bug16c", "{{1.1|printf}}", "", tVal, false},
545 {"bug16d", "{{'x'|printf}}", "", tVal, false},
546 {"bug16e", "{{0i|printf}}", "", tVal, false},
547 {"bug16f", "{{true|twoArgs \"xxx\"}}", "", tVal, false},
548 {"bug16g", "{{\"aaa\" |twoArgs \"bbb\"}}", "twoArgs=bbbaaa", tVal, true},
549 {"bug16h", "{{1|oneArg}}", "", tVal, false},
550 {"bug16i", "{{\"aaa\"|oneArg}}", "oneArg=aaa", tVal, true},
551 {"bug16j", "{{1+2i|printf \"%v\"}}", "(1+2i)", tVal, true},
552 {"bug16k", "{{\"aaa\"|printf }}", "aaa", tVal, true},
Rob Pike81592c22011-06-28 23:04:08 +1000553}
554
Rob Piked3d08e12011-07-08 18:25:46 +1000555func zeroArgs() string {
556 return "zeroArgs"
557}
558
559func oneArg(a string) string {
560 return "oneArg=" + a
Rob Pikeb177c972011-07-05 14:23:51 +1000561}
562
Didier Spezia5c60a4f2015-05-27 11:44:19 +0000563func twoArgs(a, b string) string {
564 return "twoArgs=" + a + b
565}
566
Rob Pike065db4e2012-04-03 11:44:52 +1000567func dddArg(a int, b ...string) string {
568 return fmt.Sprintln(a, b)
569}
570
Rob Pike361c5ac2011-08-29 15:56:52 +1000571// count returns a channel that will deliver n sequential 1-letter strings starting at "a"
572func count(n int) chan string {
573 if n == 0 {
574 return nil
575 }
576 c := make(chan string)
577 go func() {
578 for i := 0; i < n; i++ {
579 c <- "abcdefghijklmnop"[i : i+1]
580 }
581 close(c)
582 }()
583 return c
584}
585
Rob Piked45e808c2011-09-06 15:34:38 -0700586// vfunc takes a *V and a V
587func vfunc(V, *V) string {
588 return "vfunc"
589}
590
Rob Pike71575a92014-02-14 16:26:47 -0800591// valueString takes a string, not a pointer.
592func valueString(v string) string {
593 return "value is ignored"
594}
595
Rob Pike92bdbb82015-05-13 12:59:33 -0700596// returnInt returns an int
597func returnInt() int {
598 return 7
599}
600
Rob Pikecc842c72012-08-24 12:37:23 -0700601func add(args ...int) int {
602 sum := 0
603 for _, x := range args {
604 sum += x
605 }
606 return sum
607}
608
Rob Pike90505502012-09-24 13:23:15 +1000609func echo(arg interface{}) interface{} {
610 return arg
611}
612
613func makemap(arg ...string) map[string]string {
614 if len(arg)%2 != 0 {
615 panic("bad makemap")
616 }
617 m := make(map[string]string)
618 for i := 0; i < len(arg); i += 2 {
619 m[arg[i]] = arg[i+1]
620 }
621 return m
622}
623
Ugorji Nwoke4f7c33c2012-05-22 15:21:35 -0700624func stringer(s fmt.Stringer) string {
625 return s.String()
626}
627
Rob Pike99645db2013-03-27 16:31:14 -0700628func mapOfThree() interface{} {
629 return map[string]int{"three": 3}
630}
631
Rob Pikef56db6f2011-11-23 20:17:22 -0800632func testExecute(execTests []execTest, template *Template, t *testing.T) {
Rob Pike81592c22011-06-28 23:04:08 +1000633 b := new(bytes.Buffer)
Rob Pike361c5ac2011-08-29 15:56:52 +1000634 funcs := FuncMap{
Rob Pike71575a92014-02-14 16:26:47 -0800635 "add": add,
636 "count": count,
637 "dddArg": dddArg,
638 "echo": echo,
639 "makemap": makemap,
640 "mapOfThree": mapOfThree,
641 "oneArg": oneArg,
Rob Pike92bdbb82015-05-13 12:59:33 -0700642 "returnInt": returnInt,
Rob Pike71575a92014-02-14 16:26:47 -0800643 "stringer": stringer,
Didier Spezia5c60a4f2015-05-27 11:44:19 +0000644 "twoArgs": twoArgs,
Rob Pike71575a92014-02-14 16:26:47 -0800645 "typeOf": typeOf,
646 "valueString": valueString,
647 "vfunc": vfunc,
648 "zeroArgs": zeroArgs,
Rob Pike361c5ac2011-08-29 15:56:52 +1000649 }
Rob Pike81592c22011-06-28 23:04:08 +1000650 for _, test := range execTests {
Rob Pikef56db6f2011-11-23 20:17:22 -0800651 var tmpl *Template
652 var err error
653 if template == nil {
654 tmpl, err = New(test.name).Funcs(funcs).Parse(test.input)
655 } else {
656 tmpl, err = template.New(test.name).Funcs(funcs).Parse(test.input)
Rob Pike25d29872011-11-17 22:53:23 -0800657 }
Rob Pike81592c22011-06-28 23:04:08 +1000658 if err != nil {
659 t.Errorf("%s: parse error: %s", test.name, err)
660 continue
661 }
662 b.Reset()
Rob Pike0f7a1952011-07-21 14:22:01 +1000663 err = tmpl.Execute(b, test.data)
Rob Pike81592c22011-06-28 23:04:08 +1000664 switch {
665 case !test.ok && err == nil:
666 t.Errorf("%s: expected error; got none", test.name)
667 continue
668 case test.ok && err != nil:
669 t.Errorf("%s: unexpected execute error: %s", test.name, err)
670 continue
671 case !test.ok && err != nil:
Rob Pike6732bd32011-07-06 22:27:06 +1000672 // expected error, got one
673 if *debug {
674 fmt.Printf("%s: %s\n\t%s\n", test.name, test.input, err)
675 }
Rob Pike81592c22011-06-28 23:04:08 +1000676 }
677 result := b.String()
678 if result != test.output {
679 t.Errorf("%s: expected\n\t%q\ngot\n\t%q", test.name, test.output, result)
680 }
681 }
682}
683
Rob Pike13f88972011-07-04 15:15:47 +1000684func TestExecute(t *testing.T) {
685 testExecute(execTests, nil, t)
686}
687
Rob Pikedcf53182011-10-06 13:30:50 -0700688var delimPairs = []string{
689 "", "", // default
690 "{{", "}}", // same as default
691 "<<", ">>", // distinct
692 "|", "|", // same
693 "(日)", "(本)", // peculiar
694}
695
696func TestDelims(t *testing.T) {
697 const hello = "Hello, world"
698 var value = struct{ Str string }{hello}
699 for i := 0; i < len(delimPairs); i += 2 {
700 text := ".Str"
701 left := delimPairs[i+0]
Rob Pikeb3dd3272011-10-06 15:21:56 -0700702 trueLeft := left
Rob Pikedcf53182011-10-06 13:30:50 -0700703 right := delimPairs[i+1]
Rob Pikeb3dd3272011-10-06 15:21:56 -0700704 trueRight := right
Rob Pikedcf53182011-10-06 13:30:50 -0700705 if left == "" { // default case
Rob Pikeb3dd3272011-10-06 15:21:56 -0700706 trueLeft = "{{"
Rob Pikedcf53182011-10-06 13:30:50 -0700707 }
708 if right == "" { // default case
Rob Pikeb3dd3272011-10-06 15:21:56 -0700709 trueRight = "}}"
Rob Pikedcf53182011-10-06 13:30:50 -0700710 }
Rob Pikeb3dd3272011-10-06 15:21:56 -0700711 text = trueLeft + text + trueRight
712 // Now add a comment
713 text += trueLeft + "/*comment*/" + trueRight
714 // Now add an action containing a string.
715 text += trueLeft + `"` + trueLeft + `"` + trueRight
716 // At this point text looks like `{{.Str}}{{/*comment*/}}{{"{{"}}`.
Rob Pikedcf53182011-10-06 13:30:50 -0700717 tmpl, err := New("delims").Delims(left, right).Parse(text)
718 if err != nil {
719 t.Fatalf("delim %q text %q parse err %s", left, text, err)
720 }
721 var b = new(bytes.Buffer)
722 err = tmpl.Execute(b, value)
723 if err != nil {
724 t.Fatalf("delim %q exec err %s", left, err)
725 }
Rob Pikeb3dd3272011-10-06 15:21:56 -0700726 if b.String() != hello+trueLeft {
Robert Henckec5018242011-10-13 13:34:01 +1100727 t.Errorf("expected %q got %q", hello+trueLeft, b.String())
Rob Pikedcf53182011-10-06 13:30:50 -0700728 }
729 }
730}
731
Rob Pike81592c22011-06-28 23:04:08 +1000732// Check that an error from a method flows back to the top.
733func TestExecuteError(t *testing.T) {
734 b := new(bytes.Buffer)
735 tmpl := New("error")
Rob Pike47424d92012-02-14 07:11:39 +1100736 _, err := tmpl.Parse("{{.MyError true}}")
Rob Pike81592c22011-06-28 23:04:08 +1000737 if err != nil {
738 t.Fatalf("parse error: %s", err)
739 }
740 err = tmpl.Execute(b, tVal)
741 if err == nil {
742 t.Errorf("expected error; got none")
Rob Pike47424d92012-02-14 07:11:39 +1100743 } else if !strings.Contains(err.Error(), myError.Error()) {
Rob Pikedfffc7a2011-07-14 11:32:06 +1000744 if *debug {
745 fmt.Printf("test execute error: %s\n", err)
746 }
Rob Pike47424d92012-02-14 07:11:39 +1100747 t.Errorf("expected myError; got %s", err)
Rob Pike81592c22011-06-28 23:04:08 +1000748 }
749}
David Symonds33705dd2011-07-06 16:51:49 +1000750
Rob Pike7f4b4c02012-10-03 12:02:13 +1000751const execErrorText = `line 1
752line 2
753line 3
754{{template "one" .}}
755{{define "one"}}{{template "two" .}}{{end}}
756{{define "two"}}{{template "three" .}}{{end}}
757{{define "three"}}{{index "hi" $}}{{end}}`
758
759// Check that an error from a nested template contains all the relevant information.
760func TestExecError(t *testing.T) {
761 tmpl, err := New("top").Parse(execErrorText)
762 if err != nil {
763 t.Fatal("parse error:", err)
764 }
765 var b bytes.Buffer
766 err = tmpl.Execute(&b, 5) // 5 is out of range indexing "hi"
767 if err == nil {
768 t.Fatal("expected error")
769 }
770 const want = `template: top:7:20: executing "three" at <index "hi" $>: error calling index: index out of range: 5`
771 got := err.Error()
772 if got != want {
773 t.Errorf("expected\n%q\ngot\n%q", want, got)
774 }
775}
776
David Symonds33705dd2011-07-06 16:51:49 +1000777func TestJSEscaping(t *testing.T) {
778 testCases := []struct {
779 in, exp string
780 }{
781 {`a`, `a`},
782 {`'foo`, `\'foo`},
783 {`Go "jump" \`, `Go \"jump\" \\`},
784 {`Yukihiro says "今日は世界"`, `Yukihiro says \"今日は世界\"`},
785 {"unprintable \uFDFF", `unprintable \uFDFF`},
David Symondsa16ad6f2011-07-14 12:02:58 +1000786 {`<html>`, `\x3Chtml\x3E`},
David Symonds33705dd2011-07-06 16:51:49 +1000787 }
788 for _, tc := range testCases {
789 s := JSEscapeString(tc.in)
790 if s != tc.exp {
791 t.Errorf("JS escaping [%s] got [%s] want [%s]", tc.in, s, tc.exp)
792 }
793 }
794}
Rob Pike02039b62011-07-08 16:49:06 +1000795
796// A nice example: walk a binary tree.
797
798type Tree struct {
799 Val int
800 Left, Right *Tree
801}
802
Rob Pikedcf53182011-10-06 13:30:50 -0700803// Use different delimiters to test Set.Delims.
Rob Pikee6ee26a2015-09-08 14:58:12 -0700804// Also test the trimming of leading and trailing spaces.
Rob Pike02039b62011-07-08 16:49:06 +1000805const treeTemplate = `
Rob Pikee6ee26a2015-09-08 14:58:12 -0700806 (- define "tree" -)
Rob Pike02039b62011-07-08 16:49:06 +1000807 [
Rob Pikee6ee26a2015-09-08 14:58:12 -0700808 (- .Val -)
809 (- with .Left -)
810 (template "tree" . -)
811 (- end -)
812 (- with .Right -)
813 (- template "tree" . -)
814 (- end -)
Rob Pike02039b62011-07-08 16:49:06 +1000815 ]
Rob Pikee6ee26a2015-09-08 14:58:12 -0700816 (- end -)
Rob Pike02039b62011-07-08 16:49:06 +1000817`
818
819func TestTree(t *testing.T) {
820 var tree = &Tree{
821 1,
822 &Tree{
823 2, &Tree{
824 3,
825 &Tree{
826 4, nil, nil,
827 },
828 nil,
829 },
830 &Tree{
831 5,
832 &Tree{
833 6, nil, nil,
834 },
835 nil,
836 },
837 },
838 &Tree{
839 7,
840 &Tree{
841 8,
842 &Tree{
843 9, nil, nil,
844 },
845 nil,
846 },
847 &Tree{
848 10,
849 &Tree{
850 11, nil, nil,
851 },
852 nil,
853 },
854 },
855 }
Rob Pikef56db6f2011-11-23 20:17:22 -0800856 tmpl, err := New("root").Delims("(", ")").Parse(treeTemplate)
Rob Pike02039b62011-07-08 16:49:06 +1000857 if err != nil {
858 t.Fatal("parse error:", err)
859 }
860 var b bytes.Buffer
Rob Pike02039b62011-07-08 16:49:06 +1000861 const expect = "[1[2[3[4]][5[6]]][7[8[9]][10[11]]]]"
Rob Pikef56db6f2011-11-23 20:17:22 -0800862 // First by looking up the template.
Rob Pikee9025df2011-11-26 08:32:55 -0800863 err = tmpl.Lookup("tree").Execute(&b, tree)
Rob Pikef56db6f2011-11-23 20:17:22 -0800864 if err != nil {
865 t.Fatal("exec error:", err)
866 }
Rob Pikee6ee26a2015-09-08 14:58:12 -0700867 result := b.String()
Rob Pikef56db6f2011-11-23 20:17:22 -0800868 if result != expect {
869 t.Errorf("expected %q got %q", expect, result)
870 }
871 // Then direct to execution.
872 b.Reset()
873 err = tmpl.ExecuteTemplate(&b, "tree", tree)
874 if err != nil {
875 t.Fatal("exec error:", err)
876 }
Rob Pikee6ee26a2015-09-08 14:58:12 -0700877 result = b.String()
Rob Pike02039b62011-07-08 16:49:06 +1000878 if result != expect {
879 t.Errorf("expected %q got %q", expect, result)
880 }
881}
Rob Pikebcccad42012-10-07 09:26:59 +1100882
883func TestExecuteOnNewTemplate(t *testing.T) {
884 // This is issue 3872.
Russ Cox33ce9c12015-06-24 11:11:51 -0400885 New("Name").Templates()
886 // This is issue 11379.
887 new(Template).Templates()
888 new(Template).Parse("")
889 new(Template).New("abc").Parse("")
890 new(Template).Execute(nil, nil) // returns an error (but does not crash)
891 new(Template).ExecuteTemplate(nil, "XXX", nil) // returns an error (but does not crash)
Rob Pikebcccad42012-10-07 09:26:59 +1100892}
Rob Pikec7637992013-03-06 12:34:19 -0800893
894const testTemplates = `{{define "one"}}one{{end}}{{define "two"}}two{{end}}`
895
896func TestMessageForExecuteEmpty(t *testing.T) {
897 // Test a truly empty template.
898 tmpl := New("empty")
899 var b bytes.Buffer
900 err := tmpl.Execute(&b, 0)
901 if err == nil {
902 t.Fatal("expected initial error")
903 }
904 got := err.Error()
905 want := `template: empty: "empty" is an incomplete or empty template`
906 if got != want {
907 t.Errorf("expected error %s got %s", want, got)
908 }
909 // Add a non-empty template to check that the error is helpful.
910 tests, err := New("").Parse(testTemplates)
911 if err != nil {
912 t.Fatal(err)
913 }
914 tmpl.AddParseTree("secondary", tests.Tree)
915 err = tmpl.Execute(&b, 0)
916 if err == nil {
917 t.Fatal("expected second error")
918 }
919 got = err.Error()
920 want = `template: empty: "empty" is an incomplete or empty template; defined templates are: "secondary"`
921 if got != want {
922 t.Errorf("expected error %s got %s", want, got)
923 }
924 // Make sure we can execute the secondary.
925 err = tmpl.ExecuteTemplate(&b, "secondary", 0)
926 if err != nil {
927 t.Fatal(err)
928 }
929}
Rob Pike7bbe3202013-08-21 11:27:27 +1000930
Rob Pike1cd78ee2014-10-18 11:22:05 -0700931func TestFinalForPrintf(t *testing.T) {
932 tmpl, err := New("").Parse(`{{"x" | printf}}`)
933 if err != nil {
934 t.Fatal(err)
935 }
936 var b bytes.Buffer
937 err = tmpl.Execute(&b, 0)
938 if err != nil {
939 t.Fatal(err)
940 }
941}
942
Rob Pike7bbe3202013-08-21 11:27:27 +1000943type cmpTest struct {
944 expr string
945 truth string
946 ok bool
947}
948
949var cmpTests = []cmpTest{
950 {"eq true true", "true", true},
951 {"eq true false", "false", true},
952 {"eq 1+2i 1+2i", "true", true},
953 {"eq 1+2i 1+3i", "false", true},
954 {"eq 1.5 1.5", "true", true},
955 {"eq 1.5 2.5", "false", true},
956 {"eq 1 1", "true", true},
957 {"eq 1 2", "false", true},
958 {"eq `xy` `xy`", "true", true},
959 {"eq `xy` `xyz`", "false", true},
Rob Pikedb56d4d2014-09-22 11:46:02 -0700960 {"eq .Uthree .Uthree", "true", true},
961 {"eq .Uthree .Ufour", "false", true},
Rob Pike0ba7ffe2013-09-04 13:42:22 +1000962 {"eq 3 4 5 6 3", "true", true},
963 {"eq 3 4 5 6 7", "false", true},
Rob Pike7bbe3202013-08-21 11:27:27 +1000964 {"ne true true", "false", true},
965 {"ne true false", "true", true},
966 {"ne 1+2i 1+2i", "false", true},
967 {"ne 1+2i 1+3i", "true", true},
968 {"ne 1.5 1.5", "false", true},
969 {"ne 1.5 2.5", "true", true},
970 {"ne 1 1", "false", true},
971 {"ne 1 2", "true", true},
972 {"ne `xy` `xy`", "false", true},
973 {"ne `xy` `xyz`", "true", true},
Rob Pikedb56d4d2014-09-22 11:46:02 -0700974 {"ne .Uthree .Uthree", "false", true},
975 {"ne .Uthree .Ufour", "true", true},
Rob Pike7bbe3202013-08-21 11:27:27 +1000976 {"lt 1.5 1.5", "false", true},
977 {"lt 1.5 2.5", "true", true},
978 {"lt 1 1", "false", true},
979 {"lt 1 2", "true", true},
980 {"lt `xy` `xy`", "false", true},
981 {"lt `xy` `xyz`", "true", true},
Rob Pikedb56d4d2014-09-22 11:46:02 -0700982 {"lt .Uthree .Uthree", "false", true},
983 {"lt .Uthree .Ufour", "true", true},
Rob Pike7bbe3202013-08-21 11:27:27 +1000984 {"le 1.5 1.5", "true", true},
985 {"le 1.5 2.5", "true", true},
986 {"le 2.5 1.5", "false", true},
987 {"le 1 1", "true", true},
988 {"le 1 2", "true", true},
989 {"le 2 1", "false", true},
990 {"le `xy` `xy`", "true", true},
991 {"le `xy` `xyz`", "true", true},
992 {"le `xyz` `xy`", "false", true},
Rob Pikedb56d4d2014-09-22 11:46:02 -0700993 {"le .Uthree .Uthree", "true", true},
994 {"le .Uthree .Ufour", "true", true},
995 {"le .Ufour .Uthree", "false", true},
Rob Pike7bbe3202013-08-21 11:27:27 +1000996 {"gt 1.5 1.5", "false", true},
997 {"gt 1.5 2.5", "false", true},
998 {"gt 1 1", "false", true},
999 {"gt 2 1", "true", true},
1000 {"gt 1 2", "false", true},
1001 {"gt `xy` `xy`", "false", true},
1002 {"gt `xy` `xyz`", "false", true},
Rob Pikedb56d4d2014-09-22 11:46:02 -07001003 {"gt .Uthree .Uthree", "false", true},
1004 {"gt .Uthree .Ufour", "false", true},
1005 {"gt .Ufour .Uthree", "true", true},
Rob Pike7bbe3202013-08-21 11:27:27 +10001006 {"ge 1.5 1.5", "true", true},
1007 {"ge 1.5 2.5", "false", true},
1008 {"ge 2.5 1.5", "true", true},
1009 {"ge 1 1", "true", true},
1010 {"ge 1 2", "false", true},
1011 {"ge 2 1", "true", true},
1012 {"ge `xy` `xy`", "true", true},
1013 {"ge `xy` `xyz`", "false", true},
1014 {"ge `xyz` `xy`", "true", true},
Rob Pikedb56d4d2014-09-22 11:46:02 -07001015 {"ge .Uthree .Uthree", "true", true},
1016 {"ge .Uthree .Ufour", "false", true},
1017 {"ge .Ufour .Uthree", "true", true},
1018 // Mixing signed and unsigned integers.
1019 {"eq .Uthree .Three", "true", true},
1020 {"eq .Three .Uthree", "true", true},
1021 {"le .Uthree .Three", "true", true},
1022 {"le .Three .Uthree", "true", true},
1023 {"ge .Uthree .Three", "true", true},
1024 {"ge .Three .Uthree", "true", true},
1025 {"lt .Uthree .Three", "false", true},
1026 {"lt .Three .Uthree", "false", true},
1027 {"gt .Uthree .Three", "false", true},
1028 {"gt .Three .Uthree", "false", true},
1029 {"eq .Ufour .Three", "false", true},
1030 {"lt .Ufour .Three", "false", true},
1031 {"gt .Ufour .Three", "true", true},
1032 {"eq .NegOne .Uthree", "false", true},
1033 {"eq .Uthree .NegOne", "false", true},
1034 {"ne .NegOne .Uthree", "true", true},
1035 {"ne .Uthree .NegOne", "true", true},
1036 {"lt .NegOne .Uthree", "true", true},
1037 {"lt .Uthree .NegOne", "false", true},
1038 {"le .NegOne .Uthree", "true", true},
1039 {"le .Uthree .NegOne", "false", true},
1040 {"gt .NegOne .Uthree", "false", true},
1041 {"gt .Uthree .NegOne", "true", true},
1042 {"ge .NegOne .Uthree", "false", true},
1043 {"ge .Uthree .NegOne", "true", true},
1044 {"eq (index `x` 0) 'x'", "true", true}, // The example that triggered this rule.
1045 {"eq (index `x` 0) 'y'", "false", true},
Rob Pike7bbe3202013-08-21 11:27:27 +10001046 // Errors
Rob Pike7bbe3202013-08-21 11:27:27 +10001047 {"eq `xy` 1", "", false}, // Different types.
Rob Pikedb56d4d2014-09-22 11:46:02 -07001048 {"eq 2 2.0", "", false}, // Different types.
Rob Pike7bbe3202013-08-21 11:27:27 +10001049 {"lt true true", "", false}, // Unordered types.
1050 {"lt 1+0i 1+0i", "", false}, // Unordered types.
1051}
1052
1053func TestComparison(t *testing.T) {
1054 b := new(bytes.Buffer)
1055 var cmpStruct = struct {
Rob Pikedb56d4d2014-09-22 11:46:02 -07001056 Uthree, Ufour uint
1057 NegOne, Three int
1058 }{3, 4, -1, 3}
Rob Pike7bbe3202013-08-21 11:27:27 +10001059 for _, test := range cmpTests {
1060 text := fmt.Sprintf("{{if %s}}true{{else}}false{{end}}", test.expr)
1061 tmpl, err := New("empty").Parse(text)
1062 if err != nil {
Rob Pikedb56d4d2014-09-22 11:46:02 -07001063 t.Fatalf("%q: %s", test.expr, err)
Rob Pike7bbe3202013-08-21 11:27:27 +10001064 }
1065 b.Reset()
1066 err = tmpl.Execute(b, &cmpStruct)
1067 if test.ok && err != nil {
1068 t.Errorf("%s errored incorrectly: %s", test.expr, err)
1069 continue
1070 }
1071 if !test.ok && err == nil {
Rob Pike0ba7ffe2013-09-04 13:42:22 +10001072 t.Errorf("%s did not error", test.expr)
Rob Pike7bbe3202013-08-21 11:27:27 +10001073 continue
1074 }
1075 if b.String() != test.truth {
1076 t.Errorf("%s: want %s; got %s", test.expr, test.truth, b.String())
1077 }
1078 }
1079}
Rob Pike4e5ac452015-04-03 13:10:47 -07001080
1081func TestMissingMapKey(t *testing.T) {
1082 data := map[string]int{
1083 "x": 99,
1084 }
1085 tmpl, err := New("t1").Parse("{{.x}} {{.y}}")
1086 if err != nil {
1087 t.Fatal(err)
1088 }
1089 var b bytes.Buffer
1090 // By default, just get "<no value>"
1091 err = tmpl.Execute(&b, data)
1092 if err != nil {
1093 t.Fatal(err)
1094 }
1095 want := "99 <no value>"
1096 got := b.String()
1097 if got != want {
1098 t.Errorf("got %q; expected %q", got, want)
1099 }
1100 // Same if we set the option explicitly to the default.
1101 tmpl.Option("missingkey=default")
1102 b.Reset()
1103 err = tmpl.Execute(&b, data)
1104 if err != nil {
1105 t.Fatal("default:", err)
1106 }
1107 want = "99 <no value>"
1108 got = b.String()
1109 if got != want {
1110 t.Errorf("got %q; expected %q", got, want)
1111 }
1112 // Next we ask for a zero value
1113 tmpl.Option("missingkey=zero")
1114 b.Reset()
1115 err = tmpl.Execute(&b, data)
1116 if err != nil {
1117 t.Fatal("zero:", err)
1118 }
1119 want = "99 0"
1120 got = b.String()
1121 if got != want {
1122 t.Errorf("got %q; expected %q", got, want)
1123 }
1124 // Now we ask for an error.
1125 tmpl.Option("missingkey=error")
1126 err = tmpl.Execute(&b, data)
1127 if err == nil {
1128 t.Errorf("expected error; got none")
1129 }
1130}
Rob Pike04220012015-04-30 12:11:35 -07001131
1132// Test that the error message for multiline unterminated string
1133// refers to the line number of the opening quote.
1134func TestUnterminatedStringError(t *testing.T) {
1135 _, err := New("X").Parse("hello\n\n{{`unterminated\n\n\n\n}}\n some more\n\n")
1136 if err == nil {
1137 t.Fatal("expected error")
1138 }
1139 str := err.Error()
1140 if !strings.Contains(str, "X:3: unexpected unterminated raw quoted strin") {
1141 t.Fatalf("unexpected error: %s", str)
1142 }
1143}
Rob Pikebe33e202015-08-27 16:28:52 +10001144
1145const alwaysErrorText = "always be failing"
1146
1147var alwaysError = errors.New(alwaysErrorText)
1148
1149type ErrorWriter int
1150
1151func (e ErrorWriter) Write(p []byte) (int, error) {
1152 return 0, alwaysError
1153}
1154
1155func TestExecuteGivesExecError(t *testing.T) {
1156 // First, a non-execution error shouldn't be an ExecError.
1157 tmpl, err := New("X").Parse("hello")
1158 if err != nil {
1159 t.Fatal(err)
1160 }
1161 err = tmpl.Execute(ErrorWriter(0), 0)
1162 if err == nil {
1163 t.Fatal("expected error; got none")
1164 }
1165 if err.Error() != alwaysErrorText {
1166 t.Errorf("expected %q error; got %q", alwaysErrorText, err)
1167 }
1168 // This one should be an ExecError.
1169 tmpl, err = New("X").Parse("hello, {{.X.Y}}")
1170 if err != nil {
1171 t.Fatal(err)
1172 }
1173 err = tmpl.Execute(ioutil.Discard, 0)
1174 if err == nil {
1175 t.Fatal("expected error; got none")
1176 }
1177 eerr, ok := err.(ExecError)
1178 if !ok {
1179 t.Fatalf("did not expect ExecError %s", eerr)
1180 }
1181 expect := "field X in type int"
1182 if !strings.Contains(err.Error(), expect) {
1183 t.Errorf("expected %q; got %q", expect, err)
1184 }
1185}
Rob Pikedbfd9082015-09-14 11:27:20 -07001186
1187func funcNameTestFunc() int {
1188 return 0
1189}
1190
1191func TestGoodFuncNames(t *testing.T) {
1192 names := []string{
1193 "_",
1194 "a",
1195 "a1",
1196 "a1",
1197 "Ӵ",
1198 }
1199 for _, name := range names {
1200 tmpl := New("X").Funcs(
1201 FuncMap{
1202 name: funcNameTestFunc,
1203 },
1204 )
1205 if tmpl == nil {
1206 t.Fatalf("nil result for %q", name)
1207 }
1208 }
1209}
1210
1211func TestBadFuncNames(t *testing.T) {
1212 names := []string{
1213 "",
1214 "2",
1215 "a-b",
1216 }
1217 for _, name := range names {
1218 testBadFuncName(name, t)
1219 }
1220}
1221
1222func testBadFuncName(name string, t *testing.T) {
1223 defer func() {
1224 recover()
1225 }()
1226 New("X").Funcs(
1227 FuncMap{
1228 name: funcNameTestFunc,
1229 },
1230 )
1231 // If we get here, the name did not cause a panic, which is how Funcs
1232 // reports an error.
1233 t.Errorf("%q succeeded incorrectly as function name", name)
1234}