-
Notifications
You must be signed in to change notification settings - Fork 4
/
escape_test.go
51 lines (47 loc) · 1.16 KB
/
escape_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
// Copyright 2018 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Blue Oak Model License
// license that can be found in the LICENSE file.
package funcmap
import "testing"
func TestHTMLEscape(t *testing.T) {
tests := []struct {
data map[string]interface{}
text string
want string
}{
{
data: map[string]interface{}{"input": "<b>hello world</b>"},
text: `{{ htmlEscape .input }}`,
want: `<b>hello world</b>`,
},
}
for _, test := range tests {
out, err := execute(test.text, test.data)
if err != nil {
t.Error(err)
} else if out != test.want {
t.Errorf("Want template result %s, got %s", test.want, out)
}
}
}
func TestHTMLUnescape(t *testing.T) {
tests := []struct {
data map[string]interface{}
text string
want string
}{
{
data: map[string]interface{}{"input": "<b>hello world</b>"},
text: `{{ htmlUnescape .input }}`,
want: `<b>hello world</b>`,
},
}
for _, test := range tests {
out, err := execute(test.text, test.data)
if err != nil {
t.Error(err)
} else if out != test.want {
t.Errorf("Want template result %s, got %s", test.want, out)
}
}
}