-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrapher_unit_test.go
93 lines (75 loc) · 1.99 KB
/
grapher_unit_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
package grapher_test
import (
"fmt"
"testing"
"time"
"github.com/XDoubleU/essentia/pkg/grapher"
"github.com/stretchr/testify/assert"
)
func TestGrapherCumulative(t *testing.T) {
grapher := grapher.New[int](
grapher.Cumulative,
grapher.PreviousValue,
"2006-01-02",
24*time.Hour,
)
dateNow := time.Now().UTC()
for i := 0; i < 10; i++ {
grapher.AddPoint(dateNow.AddDate(0, 0, i), 1, "data")
}
for i := 1; i < 10; i++ {
grapher.AddPoint(dateNow.AddDate(0, 0, -1*i), 1, "data")
}
dateSlice, valueSlice := grapher.ToStringSlices()
assert.Equal(t, 19, len(dateSlice))
assert.Equal(t, 19, len(valueSlice["data"]))
for i := 0; i < 19; i++ {
assert.Equal(
t,
time.Now().UTC().AddDate(0, 0, i-9).Format("2006-01-02"),
dateSlice[i],
)
assert.Equal(t, fmt.Sprint(i+1), valueSlice["data"][i])
}
}
func TestGrapherNormal(t *testing.T) {
grapher := grapher.New[int](
grapher.Normal,
grapher.PreviousValue,
"2006-01-02",
24*time.Hour,
)
dateNow := time.Now().UTC()
for i := 0; i < 10; i++ {
grapher.AddPoint(dateNow.AddDate(0, 0, i), i, "data")
}
dateSlice, valueSlice := grapher.ToStringSlices()
assert.Equal(t, 10, len(dateSlice))
assert.Equal(t, 10, len(valueSlice["data"]))
for i := 0; i < 10; i++ {
assert.Equal(
t,
time.Now().UTC().AddDate(0, 0, i).Format("2006-01-02"),
dateSlice[i],
)
assert.Equal(t, fmt.Sprint(i), valueSlice["data"][i])
}
}
func TestGrapherNormalSeconds(t *testing.T) {
grapher := grapher.New[int](grapher.Normal, grapher.None, time.RFC3339, time.Second)
dateNow := time.Now().UTC()
for i := 0; i < 10; i++ {
grapher.AddPoint(dateNow.Add(time.Duration(i)*time.Second), i, "data")
}
dateSlice, valueSlice := grapher.ToStringSlices()
assert.Equal(t, 10, len(dateSlice))
assert.Equal(t, 10, len(valueSlice["data"]))
for i := 0; i < 10; i++ {
assert.Equal(
t,
time.Now().UTC().Add(time.Duration(i)*time.Second).Format(time.RFC3339),
dateSlice[i],
)
assert.Equal(t, fmt.Sprint(i), valueSlice["data"][i])
}
}