-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtemplate_test.go
197 lines (146 loc) · 4.05 KB
/
template_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
package main
import (
"fmt"
"testing"
"time"
)
func TestPlainTextWithoutTemplate(t *testing.T) {
// given
tmpl := "text-value 123"
tmplCtx := NewTemplateContext(NewVars(""))
// when
output := tmplCtx.ApplyTo(tmpl)
// then
expected := "text-value 123"
if tmplCtx.HasErrors() {
t.Error("Unexpected error", tmplCtx.Error())
}
if output != expected {
t.Errorf("Unexpected output. Expected: %s, Actual: %s", expected, output)
}
}
func TestPlainTextWithVars(t *testing.T) {
// given
tmpl := "{username} was successfully assigned to the Order #{order-id}"
vars := NewVars("")
vars.Add("order-id", 555)
vars.Add("username", "Smith")
tmplCtx := NewTemplateContext(vars)
// when
output := tmplCtx.ApplyTo(tmpl)
// then
expected := "Smith was successfully assigned to the Order #555"
if tmplCtx.HasErrors() {
t.Error("Unexpected error", tmplCtx.Error())
}
if output != expected {
t.Errorf("Unexpected output. Expected: %s, Actual: %s", expected, output)
}
}
func TestPlainTextWithNotExistingFunc(t *testing.T) {
// given
tmpl := "{username} was successfully assigned to the Order {{ .NotExists `9302945` }}"
vars := NewVars("")
vars.Add("username", "Smith")
tmplCtx := NewTemplateContext(vars)
// when
output := tmplCtx.ApplyTo(tmpl)
// then
expected := ""
if !tmplCtx.HasErrors() {
t.Error("Expected error not found")
}
if output != "" {
t.Errorf("Unexpected output. Expected: %s, Actual: %s", expected, output)
}
}
func TestFuncBase64(t *testing.T) {
// given
tmpl := "{{ .Base64 `DPFG` }}"
tmplCtx := NewTemplateContext(NewVars(""))
// when
output := tmplCtx.ApplyTo(tmpl)
// then
expected := "RFBGRw=="
if tmplCtx.HasErrors() {
t.Error("Unexpected error", tmplCtx.Error())
}
if output != expected {
t.Errorf("Unexpected output. Expected: %s, Actual: %s", expected, output)
}
}
func TestFuncSHA1(t *testing.T) {
// given
tmpl := "{{ .SHA1 `{username}` }}"
vars := NewVars("")
vars.Add("username", "el_mask")
tmplCtx := NewTemplateContext(vars)
// when
output := tmplCtx.ApplyTo(tmpl)
// then
expected := "2b0cc371b76f3ec6c1bebc52bcc44af69304dabf"
if tmplCtx.HasErrors() {
t.Error("Unexpected error", tmplCtx.Error())
}
if output != expected {
t.Errorf("Unexpected output. Expected: %s, Actual: %s", expected, output)
}
}
func TestFuncWSSEPasswordDigest(t *testing.T) {
// given
tmpl := "{{ .WSSEPasswordDigest `{nonce}` `{created}` `{password}` }}"
vars := NewVars("")
vars.Add("nonce", "abc123")
vars.Add("created", "2012-06-09T18:41:03.640Z")
vars.Add("password", "password")
tmplCtx := NewTemplateContext(vars)
// when
output := tmplCtx.ApplyTo(tmpl)
// then
expected := "mh7Ix8Qe02z1FIr51zoRO5pDMJg="
if tmplCtx.HasErrors() {
t.Error("Unexpected error", tmplCtx.Error())
}
if output != expected {
t.Errorf("Unexpected output. Expected: %s, Actual: %s", expected, output)
}
}
func TestFuncDaysFromNow(t *testing.T) {
// given
vars := NewVars("")
tmplCtx := NewTemplateContext(vars)
// when
output := tmplCtx.ApplyTo(`increment {{-3 | .DaysFromNow | .FormatDateTime "2006-01-02" }}`)
// then
expected := time.Now().AddDate(0, 0, -3).Format("2006-01-02")
if output != fmt.Sprintf("increment %s", expected) {
t.Error(output, "is not equal to", expected)
}
}
func TestFuncNow(t *testing.T) {
// given
vars := NewVars("")
tmplCtx := NewTemplateContext(vars)
// when
output := tmplCtx.ApplyTo(`now is {{.Now | .FormatDateTime "2006-01-02" }}`)
// then
expected := time.Now().Format("2006-01-02")
if output != fmt.Sprintf("now is %s", expected) {
t.Error(output, "is not equal to", expected)
}
}
func TestFuncNowInTZAndFormat(t *testing.T) {
// given
tmplCtx := NewTemplateContext(NewVars(""))
loc, err := time.LoadLocation("America/New_York")
if err != nil {
t.Error(err)
}
expected := time.Now().In(loc).Format("2006-01-02T15:04:05Z07:00")
// when
output := tmplCtx.ApplyTo(`now is {{ "America/New_York" | .Now | .FormatDateTime "2006-01-02T15:04:05Z07:00" }}`)
// then
if output != fmt.Sprintf("now is %s", expected) {
t.Error(output, "is not equal to", expected)
}
}