forked from go-co-op/gocron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob_test.go
138 lines (123 loc) · 3.31 KB
/
job_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
package gocron
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestTags(t *testing.T) {
j, _ := NewScheduler(time.UTC).Every(1).Minute().Do(task)
j.Tag("some")
j.Tag("tag")
j.Tag("more")
j.Tag("tags")
assert.ElementsMatch(t, j.Tags(), []string{"tags", "tag", "more", "some"})
j.Untag("more")
assert.ElementsMatch(t, j.Tags(), []string{"tags", "tag", "some"})
}
func TestGetScheduledTime(t *testing.T) {
t.Run("valid", func(t *testing.T) {
j, err := NewScheduler(time.UTC).Every(1).Day().At("10:30").Do(task)
require.NoError(t, err)
assert.Equal(t, "10:30", j.ScheduledAtTime())
})
t.Run("invalid", func(t *testing.T) {
j, err := NewScheduler(time.UTC).Every(1).Minute().At("10:30").Do(task)
assert.EqualError(t, err, ErrAtTimeNotSupported.Error())
assert.Nil(t, j)
})
}
func TestGetWeekday(t *testing.T) {
s := NewScheduler(time.UTC)
wednesday := time.Wednesday
weedayJob, _ := s.Every(1).Weekday(wednesday).Do(task)
nonWeekdayJob, _ := s.Every(1).Minute().Do(task)
testCases := []struct {
desc string
job *Job
expectedWeekday time.Weekday
expectedError error
}{
{"success", weedayJob, wednesday, nil},
{"fail - not set for weekday", nonWeekdayJob, time.Sunday, ErrNotScheduledWeekday},
}
for _, tc := range testCases {
t.Run(tc.desc, func(t *testing.T) {
weekday, err := tc.job.Weekday()
if tc.expectedError != nil {
assert.Error(t, tc.expectedError, err)
} else {
assert.Equal(t, tc.expectedWeekday, weekday)
assert.Nil(t, err)
}
})
}
}
func TestJob_shouldRunAgain(t *testing.T) {
tests := []struct {
name string
runConfig runConfig
runCount int
want bool
}{
{
name: "should run again (infinite)",
runConfig: runConfig{finiteRuns: false},
want: true,
},
{
name: "should run again (finite)",
runConfig: runConfig{finiteRuns: true, maxRuns: 2},
runCount: 1,
want: true,
},
{
name: "shouldn't run again #1",
runConfig: runConfig{finiteRuns: true, maxRuns: 2},
runCount: 2,
want: false,
},
{
name: "shouldn't run again #2",
runConfig: runConfig{finiteRuns: true, maxRuns: 2},
runCount: 4,
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
j := &Job{
jobFunction: jobFunction{
runConfig: tt.runConfig,
},
runCount: tt.runCount,
}
if got := j.shouldRun(); got != tt.want {
t.Errorf("Job.shouldRunAgain() = %v, want %v", got, tt.want)
}
})
}
}
func TestJob_LimitRunsTo(t *testing.T) {
j, _ := NewScheduler(time.Local).Every(1).Second().Do(func() {})
j.LimitRunsTo(2)
assert.Equal(t, j.shouldRun(), true, "Expecting it to run again")
j.runCount++
assert.Equal(t, j.shouldRun(), true, "Expecting it to run again")
j.runCount++
assert.Equal(t, j.shouldRun(), false, "Not expecting it to run again")
}
func TestJob_CommonExports(t *testing.T) {
s := NewScheduler(time.Local)
j, _ := s.Every(1).Second().Do(func() {})
assert.Equal(t, 0, j.RunCount())
assert.True(t, j.LastRun().IsZero())
assert.True(t, j.NextRun().IsZero())
s.StartAsync()
assert.False(t, j.NextRun().IsZero())
j.runCount = 5
assert.Equal(t, 5, j.RunCount())
lastRun := time.Now()
j.lastRun = lastRun
assert.Equal(t, lastRun, j.LastRun())
}