-
Notifications
You must be signed in to change notification settings - Fork 4
/
time_test.go
66 lines (62 loc) · 1.6 KB
/
time_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
// 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 TestTime(t *testing.T) {
tests := []struct {
data map[string]interface{}
text string
want string
}{
{
data: map[string]interface{}{"Timestamp": "2021-09-03 07:13:02 -0700 MST"},
text: `{{ time .Timestamp }}`,
want: "2021-09-03 07:13:02 -0700 MST",
},
{
data: map[string]interface{}{"Timestamp": 1630678382},
text: `{{ time .Timestamp "UTC" }}`,
want: "2021-09-03 14:13:02 +0000 UTC",
},
{
data: map[string]interface{}{"Timestamp": 1630678382},
text: `{{ time .Timestamp "MST" }}`,
want: "2021-09-03 07:13:02 -0700 MST",
},
}
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 TestTimeFormat(t *testing.T) {
tests := []struct {
data map[string]interface{}
text string
want string
}{
{
data: map[string]interface{}{"Timestamp": "2021-09-03 07:13:02 -0700 MST"},
text: `{{ dateFormat "2006-01-02" .Timestamp }}`,
want: "2021-09-03",
},
{
data: map[string]interface{}{"Timestamp": 1630678382},
text: `{{ dateFormat "2006-01-02" .Timestamp }}`,
want: "2021-09-03",
},
}
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)
}
}
}