-
Notifications
You must be signed in to change notification settings - Fork 0
/
engine_test.go
429 lines (392 loc) · 11.2 KB
/
engine_test.go
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
package template
import (
"strings"
"testing"
)
func mockUserProfileContext() Context {
return Context{
"userName": "JaneDoe",
"profile": map[string]interface{}{
"age": 29,
"bio": "Software developer with a passion for open source.",
"contacts": map[string]interface{}{
"email": "jane.doe@example.com",
},
},
"tasks": []string{"Code Review", "Write Documentation", "Update Dependencies"},
}
}
func TestExecuteWithErrorHandling(t *testing.T) {
ctx := mockUserProfileContext()
// Template that includes a variable and filter that will not cause an error,
// followed by a non-existent variable that will cause an error.
tplStr := "Hello, {{userName}}! Missing: {{nonExistentVariable}}"
parser := NewParser()
tpl, err := parser.Parse(tplStr)
if err != nil {
t.Fatalf("Failed to parse template: %v", err)
}
// Execute the template.
output, err := Execute(tpl, ctx)
if err == nil {
t.Errorf("Expected an error due to non-existent variable, but got nil")
}
if !strings.Contains(output, "Hello, JaneDoe!") {
t.Errorf("Expected partial output before error, got: %s", output)
}
}
func TestMustExecuteIgnoresError(t *testing.T) {
ctx := mockUserProfileContext()
// Similar template to above, which will encounter an error due to a non-existent variable.
tplStr := "Hello, {{userName}}! Missing: {{nonExistentVariable}}"
parser := NewParser()
tpl, err := parser.Parse(tplStr)
if err != nil {
t.Fatalf("Failed to parse template: %v", err)
}
// MustExecute should ignore errors and attempt to return any partial output.
output := MustExecute(tpl, ctx)
if !strings.Contains(output, "Hello, JaneDoe!") {
t.Errorf("Expected partial output before error in MustExecute, got: %s", output)
}
// MustExecute should ignore the error and output the placeholder for missing variable.
if !strings.Contains(output, "{{nonExistentVariable}}") {
t.Errorf("Expected placeholder for missing variable, got: %s", output)
}
}
func TestNestedVariableRetrieval(t *testing.T) {
ctx := mockUserProfileContext()
parser := NewParser()
src := "Contact: {{profile.contacts.email}}"
expected := "Contact: jane.doe@example.com"
tmpl, err := parser.Parse(src)
if err != nil {
t.Fatalf("Failed to parse template: %v", err)
}
result, err := tmpl.Execute(ctx)
if err != nil {
t.Fatalf("Failed to execute template: %v", err)
}
if result != expected {
t.Errorf("Expected '%s', but got '%s'", expected, result)
}
}
func TestApplyUpperCaseFilter(t *testing.T) {
ctx := mockUserProfileContext()
parser := NewParser()
src := "Username: {{userName|upper}}"
expected := "Username: JANEDOE"
tmpl, err := parser.Parse(src)
if err != nil {
t.Fatalf("Failed to parse template: %v", err)
}
result, err := tmpl.Execute(ctx)
if err != nil {
t.Fatalf("Failed to execute template: %v", err)
}
if result != expected {
t.Errorf("Expected '%s', but got '%s'", expected, result)
}
}
func TestChainFiltersForTitleCase(t *testing.T) {
ctx := mockUserProfileContext()
parser := NewParser()
src := "Bio: {{profile.bio|capitalize}}"
expected := "Bio: Software developer with a passion for open source."
tmpl, err := parser.Parse(src)
if err != nil {
t.Fatalf("Failed to parse template: %v", err)
}
result, err := tmpl.Execute(ctx)
if err != nil {
t.Fatalf("Failed to execute template: %v", err)
}
if result != expected {
t.Errorf("Expected '%s', but got '%s'", expected, result)
}
}
func TestVariableNotFoundReturnOriginal(t *testing.T) {
cases := []struct {
name string
source string
expected string
}{
{
"SingleVariableNotFound",
"Hello, {{missing}}!",
"Hello, {{missing}}!",
},
{
"SingleVariableWithFilterNotFound",
"User: {{missing|lower}}",
"User: {{missing|lower}}",
},
{
"VariableWithMultipleFiltersNotFound",
"{{missing|capitalize|append:', welcome back'}}",
"{{missing|capitalize|append:', welcome back'}}",
},
{
"MixedTextAndNonexistentVariable",
"Welcome, {{missing}}! How are you?",
"Welcome, {{missing}}! How are you?",
},
{
"MultipleVariablesSomeNotFound",
"User: {{user}}, Email: {{email|lower}}, Location: {{location}}",
"User: {{user}}, Email: {{email|lower}}, Location: {{location}}",
},
{
"ExistingAndNonexistentVariables",
"User: {{userName}}, Unknown: {{unknown}}",
"User: JaneDoe, Unknown: {{unknown}}",
},
{
"VariableNotFoundFollowedByExisting",
"Welcome, {{unknown}}! User: {{userName}}.",
"Welcome, {{unknown}}! User: JaneDoe.",
},
{
"NestedVariableNotExistsWithFilter",
"Location: {{profile.location|capitalize}}",
"Location: {{profile.location|capitalize}}",
},
{
"MixedExistingAndNonexistentVariablesAndText",
"Hello, {{userName}}! Missing: {{missing}}, Task: {{tasks.0}}, No Task: {{tasks.3}}.",
"Hello, JaneDoe! Missing: {{missing}}, Task: Code Review, No Task: {{tasks.3}}.",
},
{
"MultipleFiltersOnExistingAndNonexistent",
"{{userName|lower}}, {{unknown|capitalize|append:' world'}}",
"janedoe, {{unknown|capitalize|append:' world'}}",
},
{
"ExistingVariableWithNonexistentNested",
"Profile update: {{profile.|lower}}",
"Profile update: {{profile.|lower}}",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
ctx := mockUserProfileContext()
parser := NewParser()
tmpl, err := parser.Parse(tc.source)
if err != nil {
t.Fatalf("Unexpected error in %s: %v", tc.name, err)
}
result, err := tmpl.Execute(ctx)
if err == nil {
t.Errorf("Expected an error, but got nil")
}
if result != tc.expected {
t.Errorf("Expected '%s', but got '%s'", tc.expected, result)
}
})
}
}
// TestFilterErrorsReturnOriginalVariableText ensures that when a filter encounters an error,
// the template system gracefully handles it by returning the original variable text.
func TestFilterErrorsReturnOriginalVariableText(t *testing.T) {
cases := []struct {
name string
source string
expected string
}{
{
name: "FilterNotFound",
source: "Welcome, {{userName|nonExistentFilter}}!",
expected: "Welcome, {{userName|nonExistentFilter}}!",
},
{
name: "PlusFilterWithString",
source: "Total: {{tasks | plus:' extra'}}", // Plus expects numerical arguments
expected: "Total: {{tasks | plus:' extra'}}",
},
{
name: "FirstFilterOnString",
source: "First Task: {{userName|first}}", // First filter applied on a string, not an array
expected: "First Task: {{userName|first}}",
},
{
name: "IndexFilterOutOfRange",
source: "Task: {{tasks|index:10}}",
expected: "Task: {{tasks|index:10}}",
},
{
name: "MultipleFiltersWithOneInvalid",
source: "Email: {{profile.contacts.email|lower|nonExistentFilter}}",
expected: "Email: {{profile.contacts.email|lower|nonExistentFilter}}",
},
{
name: "ValidAndInvalidFiltersMixed",
source: "Bio: {{profile.bio|capitalize|nonExistentFilter}}, Age: {{profile.age|plus:1}}",
expected: "Bio: {{profile.bio|capitalize|nonExistentFilter}}, Age: 30",
},
{
name: "LastFilterOnNonArray",
source: "Contact: {{profile.contacts|last}}", // Last filter expects an array
expected: "Contact: {{profile.contacts|last}}",
},
{
name: "InvalidNestedVariableWithFilter",
source: "Missing: {{profile.missingDetail|lower}}",
expected: "Missing: {{profile.missingDetail|lower}}",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
ctx := mockUserProfileContext()
parser := NewParser()
tmpl, err := parser.Parse(tc.source)
if err != nil {
t.Fatalf("Unexpected error in %s: %v", tc.name, err)
}
result, err := tmpl.Execute(ctx)
if err == nil {
t.Fatalf("Expected an error in %s, but got nil", tc.name)
}
if result != tc.expected {
t.Errorf("Expected '%s', but got '%s'", tc.expected, result)
}
})
}
}
func TestVariablesWithPunctuation(t *testing.T) {
cases := []struct {
name string
source string
context Context
expected string
}{
{
name: "VariableFollowedByExclamation",
source: "Hello, {{userName}}!",
expected: "Hello, JaneDoe!",
},
{
name: "VariableFollowedByComma",
source: "User: {{userName}}, welcome back!",
expected: "User: JaneDoe, welcome back!",
},
{
name: "VariableFollowedByPeriod",
source: "Your name is {{userName}}.",
expected: "Your name is JaneDoe.",
},
{
name: "VariableFollowedByQuestionMark",
source: "Is {{userName}} your name?",
expected: "Is JaneDoe your name?",
},
{
name: "VariableInsideQuotes",
source: "\"{{userName}}\" is the username.",
expected: "\"JaneDoe\" is the username.",
},
{
name: "MultipleVariablesSeparatedByPunctuation",
source: "{{userName}}, your age is {{profile.age}}.",
expected: "JaneDoe, your age is 29.",
},
{
name: "VariableFollowedByFilterAndPunctuation",
source: "Welcome, {{userName|lower}}!",
expected: "Welcome, janedoe!",
},
{
name: "FilterNotFoundWithPunctuation",
source: "Hello, {{userName|nonExistentFilter}}!",
expected: "Hello, {{userName|nonExistentFilter}}!",
},
{
name: "FilterArgumentMismatchWithPunctuation",
source: "Result: {{profile.age|plus}}.",
expected: "Result: {{profile.age|plus}}.",
},
}
ctx := mockUserProfileContext()
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
parser := NewParser()
tmpl, err := parser.Parse(tc.source)
if err != nil {
t.Fatalf("Unexpected error in %s: %v", tc.name, err)
}
result := tmpl.MustExecute(ctx)
if result != tc.expected {
t.Errorf("Expected '%s', but got '%s'", tc.expected, result)
}
})
}
}
func TestFiltersWithVariableArguments(t *testing.T) {
ctx := mockUserProfileContext()
cases := []struct {
name string
source string
expected string
}{
{
"PlusFilterWithVariableArgument",
"New age: {{ profile.age|plus:profile.age }}",
"New age: 58",
},
{
"MinusFilterWithVariableArgument",
"Half age: {{ profile.age|minus:profile.age|plus:2 }}",
"Half age: 2",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
parser := NewParser()
tmpl, err := parser.Parse(tc.source)
if err != nil {
t.Fatalf("Unexpected error in %s: %v", tc.name, err)
}
result, err := tmpl.Execute(ctx)
if err != nil {
t.Fatalf("Failed to execute template in %s: %v", tc.name, err)
}
if result != tc.expected {
t.Errorf("Expected '%s', but got '%s' in %s", tc.expected, result, tc.name)
}
})
}
}
func TestFiltersWithNumericArguments(t *testing.T) {
ctx := mockUserProfileContext()
cases := []struct {
name string
source string
expected string
}{
{
"PlusFilterWithNumericArgument",
"Age next year: {{ profile.age|plus:1 }}",
"Age next year: 30",
},
{
"TimesFilterWithNumericArgument",
"Double age: {{ profile.age|times:2 }}",
"Double age: 58",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
parser := NewParser()
tmpl, err := parser.Parse(tc.source)
if err != nil {
t.Fatalf("Unexpected error in %s: %v", tc.name, err)
}
result, err := tmpl.Execute(ctx)
if err != nil {
t.Fatalf("Failed to execute template in %s: %v", tc.name, err)
}
if result != tc.expected {
t.Errorf("Expected '%s', but got '%s' in %s", tc.expected, result, tc.name)
}
})
}
}