-
Notifications
You must be signed in to change notification settings - Fork 5
/
jinja2_ignore_test.go
164 lines (158 loc) · 4.19 KB
/
jinja2_ignore_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
package jinja2
import (
"github.com/stretchr/testify/assert"
"path/filepath"
"testing"
)
func TestRenderDirectoryTemplateIgnore(t *testing.T) {
type testCase struct {
name string
files map[string]string
r map[string]string
subdir string
ignoreRoot string
}
tests := []testCase{
{
name: "ignore /f1.yaml",
files: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `{{ "a" }}`,
"d1/f1.yaml": `{{ "a" }}`,
".templateignore": `/f1.yaml`,
},
r: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `a`,
"d1/f1.yaml": `a`,
".templateignore": `/f1.yaml`,
},
},
{
name: "ignore /d1/f1.yaml",
files: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `{{ "a" }}`,
"d1/f1.yaml": `{{ "a" }}`,
".templateignore": `/d1/f1.yaml`,
},
r: map[string]string{
"f1.yaml": `a`,
"f2.yaml": `a`,
"d1/f1.yaml": `{{ "a" }}`,
".templateignore": `/d1/f1.yaml`,
},
},
{
name: "ignore all f1.yaml",
files: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `{{ "a" }}`,
"d1/f1.yaml": `{{ "a" }}`,
".templateignore": `f1.yaml`,
},
r: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `a`,
"d1/f1.yaml": `{{ "a" }}`,
".templateignore": `f1.yaml`,
},
},
{
name: "ignore f1.yaml via subdir-templateincode",
files: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `{{ "a" }}`,
"d1/f1.yaml": `{{ "a" }}`,
"d1/.templateignore": `f1.yaml`,
},
r: map[string]string{
"f1.yaml": `a`,
"f2.yaml": `a`,
"d1/f1.yaml": `{{ "a" }}`,
"d1/.templateignore": `f1.yaml`,
},
},
{
name: "no ignore via root templateignore",
files: map[string]string{
"d1/f1.yaml": `{{ "a" }}`,
"d1/f2.yaml": `{{ "a" }}`,
"d1/d2/f1.yaml": `{{ "a" }}`,
".templateignore": `f1.yaml`,
},
r: map[string]string{
"f1.yaml": `a`,
"f2.yaml": `a`,
"d2/f1.yaml": `a`,
},
subdir: "d1",
},
{
name: "ignore via root templateignore",
files: map[string]string{
"d1/f1.yaml": `{{ "a" }}`,
"d1/f2.yaml": `{{ "a" }}`,
"d1/f3.yaml": `{{ "a" }}`,
"d1/d2/f1.yaml": `{{ "a" }}`,
"d1/d2/f3.yaml": `{{ "a" }}`,
".templateignore": `f1.yaml`,
"d1/d2/.templateignore": `f3.yaml`,
},
r: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `a`,
"f3.yaml": `a`,
"d2/f1.yaml": `{{ "a" }}`,
"d2/f3.yaml": `{{ "a" }}`,
"d2/.templateignore": `f3.yaml`,
},
subdir: "d1",
ignoreRoot: ".",
},
{
name: "reinclude /d1/f1.yaml",
files: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `{{ "a" }}`,
"d1/f1.yaml": `{{ "a" }}`,
".templateignore": "f1.yaml\n!d1/f1.yaml",
},
r: map[string]string{
"f1.yaml": `{{ "a" }}`,
"f2.yaml": `a`,
"d1/f1.yaml": `a`,
".templateignore": "f1.yaml\n!d1/f1.yaml",
},
},
{
name: "complex reinclude",
files: map[string]string{
"d1/some/renderThese/f1.yaml": `{{ "a" }}`,
"d1/some/renderThese/f2.txt": `{{ "a" }}`,
"d1/some/f2.yaml": `{{ "a" }}`,
".templateignore": "**/some/**/*.*\n!**/some/renderThese/*.y*ml",
},
r: map[string]string{
"d1/some/renderThese/f1.yaml": `a`,
"d1/some/renderThese/f2.txt": `{{ "a" }}`,
"d1/some/f2.yaml": `{{ "a" }}`,
".templateignore": "**/some/**/*.*\n!**/some/renderThese/*.y*ml",
},
},
}
j2 := newJinja2(t)
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
dir := newTemplateDir(t, tc.files)
targetDir := t.TempDir()
var opts []Jinja2Opt
if tc.ignoreRoot != "" {
opts = append(opts, WithTemplateIgnoreRootDir(filepath.Join(dir, tc.ignoreRoot)))
}
err := j2.RenderDirectory(filepath.Join(dir, tc.subdir), targetDir, nil, opts...)
assert.NoError(t, err)
assertDirSame(t, targetDir, tc.r)
})
}
}