-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule_test.go
114 lines (109 loc) · 1.77 KB
/
schedule_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
package wasp
import (
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestSmokeSchedules(t *testing.T) {
type test struct {
name string
input []*Segment
output []*Segment
}
tests := []test{
{
name: "increasing line",
input: Steps(10, 10, 3, 30*time.Second),
output: []*Segment{
{
From: 10,
Duration: 10 * time.Second,
},
{
From: 20,
Duration: 10 * time.Second,
},
{
From: 30,
Duration: 10 * time.Second,
},
},
},
{
name: "decreasing line",
input: Steps(100, -10, 3, 30*time.Second),
output: []*Segment{
{
From: 100,
Duration: 10 * time.Second,
},
{
From: 90,
Duration: 10 * time.Second,
},
{
From: 80,
Duration: 10 * time.Second,
},
},
},
{
name: "plain",
input: Plain(1, 1*time.Second),
output: []*Segment{
{
From: 1,
Duration: 1 * time.Second,
},
},
},
{
name: "combine",
input: Combine(
Plain(200, 1*time.Second),
Plain(300, 1*time.Second),
),
output: []*Segment{
{
From: 200,
Duration: 1 * time.Second,
},
{
From: 300,
Duration: 1 * time.Second,
},
},
},
{
name: "combine and repeat",
input: CombineAndRepeat(
2,
Plain(1, 1*time.Second),
Plain(100, 1*time.Second),
),
output: []*Segment{
{
From: 1,
Duration: 1 * time.Second,
},
{
From: 100,
Duration: 1 * time.Second,
},
{
From: 1,
Duration: 1 * time.Second,
},
{
From: 100,
Duration: 1 * time.Second,
},
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
require.Equal(t, tc.input, tc.output)
})
}
}