-
-
Notifications
You must be signed in to change notification settings - Fork 271
/
pongo2_test.go
163 lines (136 loc) · 3.82 KB
/
pongo2_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
package pongo2_test
import (
"errors"
"fmt"
"io"
"os"
"path/filepath"
"regexp"
"testing"
"github.com/flosch/pongo2/v6"
)
var testSuite2 = pongo2.NewSet("test suite 2", pongo2.MustNewLocalFileSystemLoader(""))
func mustEqual(t *testing.T, s, pattern string) {
if !regexp.MustCompile(pattern).MatchString(s) {
t.Fatalf("mustEqual failed: '%v' does not match pattern '%v'", s, pattern)
}
}
func mustPanicMatch(t *testing.T, fn func(), pattern string) {
defer func() {
err := recover()
if err == nil {
t.Fatalf("Expected panic with pattern '%v', nothing happened", pattern)
}
if !regexp.MustCompile(pattern).MatchString(fmt.Sprintf("%v", err)) {
t.Fatalf("Expected panic with pattern '%v', but got '%v'", pattern, err)
}
}()
// We expect fn to panic
fn()
}
func parseTemplate(s string, c pongo2.Context) string {
t, err := testSuite2.FromString(s)
if err != nil {
panic(err)
}
out, err := t.Execute(c)
if err != nil {
panic(err)
}
return out
}
func parseTemplateFn(s string, c pongo2.Context) func() {
return func() {
parseTemplate(s, c)
}
}
func TestMisc(t *testing.T) {
// Must
// TODO: Add better error message (see issue #18)
mustPanicMatch(
t,
func() { pongo2.Must(testSuite2.FromFile("template_tests/inheritance/base2.tpl")) },
`\[Error \(where: fromfile\) in .*template_tests[/\\]inheritance[/\\]doesnotexist.tpl | Line 1 Col 12 near 'doesnotexist.tpl'\] open .*template_tests[/\\]inheritance[/\\]doesnotexist.tpl: no such file or directory`,
)
// Context
mustPanicMatch(t, parseTemplateFn("", pongo2.Context{"'illegal": nil}), ".*not a valid identifier.*")
// Registers
mustEqual(t, pongo2.RegisterFilter("escape", nil).Error(), ".*is already registered")
mustEqual(t, pongo2.RegisterTag("for", nil).Error(), ".*is already registered")
// ApplyFilter
v, err := pongo2.ApplyFilter("title", pongo2.AsValue("this is a title"), nil)
if err != nil {
t.Fatal(err)
}
mustEqual(t, v.String(), "This Is A Title")
mustPanicMatch(t, func() {
_, err := pongo2.ApplyFilter("doesnotexist", nil, nil)
if err != nil {
panic(err)
}
}, `\[Error \(where: applyfilter\)\] filter with name 'doesnotexist' not found`)
}
func TestImplicitExecCtx(t *testing.T) {
tpl, err := pongo2.FromString("{{ ImplicitExec }}")
if err != nil {
t.Fatalf("Error in FromString: %v", err)
}
val := "a stringy thing"
res, err := tpl.Execute(pongo2.Context{
"Value": val,
"ImplicitExec": func(ctx *pongo2.ExecutionContext) string {
return ctx.Public["Value"].(string)
},
})
if err != nil {
t.Fatalf("Error executing template: %v", err)
}
mustEqual(t, res, val)
// The implicit ctx should not be persisted from call-to-call
res, err = tpl.Execute(pongo2.Context{
"ImplicitExec": func() string {
return val
},
})
if err != nil {
t.Fatalf("Error executing template: %v", err)
}
mustEqual(t, res, val)
}
type DummyLoader struct{}
func (l *DummyLoader) Abs(base, name string) string {
return filepath.Join(filepath.Dir(base), name)
}
func (l *DummyLoader) Get(path string) (io.Reader, error) {
return nil, errors.New("dummy not found")
}
func FuzzSimpleExecution(f *testing.F) {
tpls, err := filepath.Glob("template_tests/*.tpl")
if err != nil {
f.Fatalf("glob: %v", err)
}
files := []string{"README.md"}
files = append(files, tpls...)
for _, tplPath := range files {
buf, err := os.ReadFile(tplPath)
if err != nil {
f.Fatalf("could not read file '%v': %v", tplPath, err)
}
f.Add(string(buf), "test-value")
}
f.Add("{{ foobar }}", "00000000")
f.Fuzz(func(t *testing.T, tpl, contextValue string) {
ts := pongo2.NewSet("fuzz-test", &DummyLoader{})
out, err := ts.FromString(tpl)
if err != nil && out != nil {
t.Errorf("%v", err)
}
if err == nil {
mycontext := pongo2.Context{
"foobar": contextValue,
}
mycontext.Update(tplContext)
out.Execute(mycontext)
}
})
}