14
14
package templates
15
15
16
16
import (
17
+ "math"
17
18
"testing"
18
19
19
20
"github.com/stretchr/testify/require"
20
21
)
21
22
22
- func TestHumanizeDurationSecondsFloat64 (t * testing.T ) {
23
+ func TestHumanizeDuration (t * testing.T ) {
23
24
tc := []struct {
24
25
name string
25
- input float64
26
+ input interface {}
26
27
expected string
27
28
}{
29
+ // Integers
28
30
{name : "zero" , input : 0 , expected : "0s" },
29
31
{name : "one second" , input : 1 , expected : "1s" },
30
32
{name : "one minute" , input : 60 , expected : "1m 0s" },
31
33
{name : "one hour" , input : 3600 , expected : "1h 0m 0s" },
32
34
{name : "one day" , input : 86400 , expected : "1d 0h 0m 0s" },
33
35
{name : "one day and one hour" , input : 86400 + 3600 , expected : "1d 1h 0m 0s" },
34
36
{name : "negative duration" , input : - (86400 * 2 + 3600 * 3 + 60 * 4 + 5 ), expected : "-2d 3h 4m 5s" },
37
+ // Float64 with fractions
35
38
{name : "using a float" , input : 899.99 , expected : "14m 59s" },
36
- }
37
-
38
- for _ , tt := range tc {
39
- t .Run (tt .name , func (t * testing.T ) {
40
- result , err := HumanizeDuration (tt .input )
41
- require .NoError (t , err )
42
- require .Equal (t , tt .expected , result )
43
- })
44
- }
45
- }
46
-
47
- func TestHumanizeDurationSubsecondAndFractionalSecondsFloat64 (t * testing.T ) {
48
- tc := []struct {
49
- name string
50
- input float64
51
- expected string
52
- }{
53
39
{name : "millseconds" , input : .1 , expected : "100ms" },
54
40
{name : "nanoseconds" , input : .0001 , expected : "100us" },
55
41
{name : "milliseconds + nanoseconds" , input : .12345 , expected : "123.5ms" },
56
42
{name : "minute + millisecond" , input : 60.1 , expected : "1m 0s" },
57
43
{name : "minute + milliseconds" , input : 60.5 , expected : "1m 0s" },
58
44
{name : "second + milliseconds" , input : 1.2345 , expected : "1.234s" },
59
45
{name : "second + milliseconds rounded" , input : 12.345 , expected : "12.35s" },
60
- }
61
-
62
- for _ , tt := range tc {
63
- t .Run (tt .name , func (t * testing.T ) {
64
- result , err := HumanizeDuration (tt .input )
65
- require .NoError (t , err )
66
- require .Equal (t , tt .expected , result )
67
- })
68
- }
69
- }
70
-
71
- func TestHumanizeDurationErrorString (t * testing.T ) {
72
- _ , err := HumanizeDuration ("one" )
73
- require .Error (t , err )
74
- }
75
-
76
- func TestHumanizeDurationSecondsString (t * testing.T ) {
77
- tc := []struct {
78
- name string
79
- input string
80
- expected string
81
- }{
46
+ // String
82
47
{name : "zero" , input : "0" , expected : "0s" },
83
48
{name : "second" , input : "1" , expected : "1s" },
84
49
{name : "minute" , input : "60" , expected : "1m 0s" },
85
50
{name : "hour" , input : "3600" , expected : "1h 0m 0s" },
86
51
{name : "day" , input : "86400" , expected : "1d 0h 0m 0s" },
87
- }
88
-
89
- for _ , tt := range tc {
90
- t .Run (tt .name , func (t * testing.T ) {
91
- result , err := HumanizeDuration (tt .input )
92
- require .NoError (t , err )
93
- require .Equal (t , tt .expected , result )
94
- })
95
- }
96
- }
97
-
98
- func TestHumanizeDurationSubsecondAndFractionalSecondsString (t * testing.T ) {
99
- tc := []struct {
100
- name string
101
- input string
102
- expected string
103
- }{
52
+ // String with fractions
104
53
{name : "millseconds" , input : ".1" , expected : "100ms" },
105
54
{name : "nanoseconds" , input : ".0001" , expected : "100us" },
106
55
{name : "milliseconds + nanoseconds" , input : ".12345" , expected : "123.5ms" },
107
56
{name : "minute + millisecond" , input : "60.1" , expected : "1m 0s" },
108
57
{name : "minute + milliseconds" , input : "60.5" , expected : "1m 0s" },
109
58
{name : "second + milliseconds" , input : "1.2345" , expected : "1.234s" },
110
59
{name : "second + milliseconds rounded" , input : "12.345" , expected : "12.35s" },
60
+ // Int
61
+ {name : "zero" , input : 0 , expected : "0s" },
62
+ {name : "negative" , input : - 1 , expected : "-1s" },
63
+ {name : "second" , input : 1 , expected : "1s" },
64
+ {name : "days" , input : 1234567 , expected : "14d 6h 56m 7s" },
111
65
}
112
66
113
67
for _ , tt := range tc {
@@ -119,23 +73,51 @@ func TestHumanizeDurationSubsecondAndFractionalSecondsString(t *testing.T) {
119
73
}
120
74
}
121
75
122
- func TestHumanizeDurationSecondsInt (t * testing.T ) {
76
+ func TestHumanizeDurationErrorString (t * testing.T ) {
77
+ _ , err := HumanizeDuration ("one" )
78
+ require .Error (t , err )
79
+ }
80
+
81
+ func TestHumanizeTimestamp (t * testing.T ) {
123
82
tc := []struct {
124
83
name string
125
- input int
84
+ input interface {}
126
85
expected string
127
86
}{
128
- {name : "zero" , input : 0 , expected : "0s" },
129
- {name : "negative" , input : - 1 , expected : "-1s" },
130
- {name : "second" , input : 1 , expected : "1s" },
131
- {name : "days" , input : 1234567 , expected : "14d 6h 56m 7s" },
87
+ // Int
88
+ {name : "zero" , input : 0 , expected : "1970-01-01 00:00:00 +0000 UTC" },
89
+ {name : "negative" , input : - 1 , expected : "1969-12-31 23:59:59 +0000 UTC" },
90
+ {name : "one" , input : 1 , expected : "1970-01-01 00:00:01 +0000 UTC" },
91
+ {name : "past" , input : 1234567 , expected : "1970-01-15 06:56:07 +0000 UTC" },
92
+ {name : "future" , input : 9223372036 , expected : "2262-04-11 23:47:16 +0000 UTC" },
93
+ // Uint
94
+ {name : "zero" , input : uint64 (0 ), expected : "1970-01-01 00:00:00 +0000 UTC" },
95
+ {name : "one" , input : uint64 (1 ), expected : "1970-01-01 00:00:01 +0000 UTC" },
96
+ {name : "past" , input : uint64 (1234567 ), expected : "1970-01-15 06:56:07 +0000 UTC" },
97
+ {name : "future" , input : uint64 (9223372036 ), expected : "2262-04-11 23:47:16 +0000 UTC" },
98
+ // NaN/Inf, strings
99
+ {name : "infinity" , input : "+Inf" , expected : "+Inf" },
100
+ {name : "minus infinity" , input : "-Inf" , expected : "-Inf" },
101
+ {name : "NaN" , input : "NaN" , expected : "NaN" },
102
+ // Nan/Inf, float64
103
+ {name : "infinity" , input : math .Inf (1 ), expected : "+Inf" },
104
+ {name : "minus infinity" , input : math .Inf (- 1 ), expected : "-Inf" },
105
+ {name : "NaN" , input : math .NaN (), expected : "NaN" },
106
+ // Sampled data
107
+ {name : "sample float64" , input : 1435065584.128 , expected : "2015-06-23 13:19:44.128 +0000 UTC" },
108
+ {name : "sample string" , input : "1435065584.128" , expected : "2015-06-23 13:19:44.128 +0000 UTC" },
132
109
}
133
110
134
111
for _ , tt := range tc {
135
112
t .Run (tt .name , func (t * testing.T ) {
136
- result , err := HumanizeDuration (tt .input )
113
+ result , err := HumanizeTimestamp (tt .input )
137
114
require .NoError (t , err )
138
115
require .Equal (t , tt .expected , result )
139
116
})
140
117
}
141
118
}
119
+
120
+ func TestHumanizeTimestampError (t * testing.T ) {
121
+ _ , err := HumanizeTimestamp (math .MaxInt64 )
122
+ require .Error (t , err )
123
+ }
0 commit comments