forked from jasonlvhit/gocron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgocron_test.go
161 lines (146 loc) · 4.25 KB
/
gocron_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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package gocron
import (
"fmt"
"testing"
"time"
)
var err = 1
func task() {
fmt.Println("I am a running job.")
}
func taskWithParams(a int, b string) {
fmt.Println(a, b)
}
func TestSecond(*testing.T) {
defaultScheduler.Every(1).Second().Do(task)
defaultScheduler.Every(1).Second().Do(taskWithParams, 1, "hello")
defaultScheduler.Start()
time.Sleep(10 * time.Second)
}
// This is a basic test for the issue described here: https://github.com/jasonlvhit/gocron/issues/23
func TestScheduler_Weekdays(t *testing.T) {
scheduler := NewScheduler()
job1 := scheduler.Every(1).Monday().At("23:59")
job2 := scheduler.Every(1).Wednesday().At("23:59")
job1.Do(task)
job2.Do(task)
t.Logf("job1 scheduled for %s", job1.NextScheduledTime())
t.Logf("job2 scheduled for %s", job2.NextScheduledTime())
if job1.NextScheduledTime() == job2.NextScheduledTime() {
t.Fail()
t.Logf("Two jobs scheduled at the same time on two different weekdays should never run at the same time.[job1: %s; job2: %s]", job1.NextScheduledTime(), job2.NextScheduledTime())
}
}
// This ensures that if you schedule a job for today's weekday, but the time is already passed, it will be scheduled for
// next week at the requested time.
func TestScheduler_WeekdaysTodayAfter(t *testing.T) {
scheduler := NewScheduler()
now := time.Now()
timeToSchedule := time.Date(now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute()-1, 0, 0, time.Local)
job := callTodaysWeekday(scheduler.Every(1)).At(fmt.Sprintf("%02d:%02d", timeToSchedule.Hour(), timeToSchedule.Minute()))
job.Do(task)
t.Logf("job is scheduled for %s", job.NextScheduledTime())
if job.NextScheduledTime().Weekday() != timeToSchedule.Weekday() {
t.Fail()
t.Logf("Job scheduled for current weekday for earlier time, should still be scheduled for current weekday (but next week)")
}
nextWeek := time.Date(now.Year(), now.Month(), now.Day()+7, now.Hour(), now.Minute()-1, 0, 0, time.Local)
if !job.NextScheduledTime().Equal(nextWeek) {
t.Fail()
t.Logf("Job should be scheduled for the correct time next week.")
}
}
// This is to ensure that if you schedule a job for today's weekday, and the time hasn't yet passed, the next run time
// will be scheduled for today.
func TestScheduler_WeekdaysTodayBefore(t *testing.T) {
scheduler := NewScheduler()
now := time.Now()
timeToSchedule := time.Date(now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute()+1, 0, 0, time.Local)
job := callTodaysWeekday(scheduler.Every(1)).At(fmt.Sprintf("%02d:%02d", timeToSchedule.Hour(), timeToSchedule.Minute()))
job.Do(task)
t.Logf("job is scheduled for %s", job.NextScheduledTime())
if !job.NextScheduledTime().Equal(timeToSchedule) {
t.Fail()
t.Logf("Job should be run today, at the set time.")
}
}
func Test_formatTime(t *testing.T) {
tests := []struct {
name string
args string
wantHour int
wantMin int
wantErr bool
}{
{
name: "normal",
args: "16:18",
wantHour: 16,
wantMin: 18,
wantErr: false,
},
{
name: "normal",
args: "6:18",
wantHour: 6,
wantMin: 18,
wantErr: false,
},
{
name: "notnumber",
args: "e:18",
wantHour: 0,
wantMin: 0,
wantErr: true,
},
{
name: "outofrange",
args: "25:18",
wantHour: 25,
wantMin: 18,
wantErr: true,
},
{
name: "wrongformat",
args: "19:18:17",
wantHour: 0,
wantMin: 0,
wantErr: true,
},
{
name: "wrongminute",
args: "19:1e",
wantHour: 19,
wantMin: 0,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotHour, gotMin, err := formatTime(tt.args)
if (err != nil) != tt.wantErr {
t.Errorf("formatTime() error = %v, wantErr %v", err, tt.wantErr)
return
}
if gotHour != tt.wantHour {
t.Errorf("formatTime() gotHour = %v, want %v", gotHour, tt.wantHour)
}
if gotMin != tt.wantMin {
t.Errorf("formatTime() gotMin = %v, want %v", gotMin, tt.wantMin)
}
})
}
}
// utility function for testing the weekday functions *on* the current weekday.
func callTodaysWeekday(job *Job) *Job {
switch time.Now().Weekday() {
case 0: job.Sunday()
case 1: job.Monday()
case 2: job.Tuesday()
case 3: job.Wednesday()
case 4: job.Thursday()
case 5: job.Friday()
case 6: job.Saturday()
}
return job
}