-
Notifications
You must be signed in to change notification settings - Fork 1
/
job_option_test.go
166 lines (157 loc) · 2.86 KB
/
job_option_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
162
163
164
165
166
package dcron
import (
"fmt"
"testing"
"time"
)
func TestWithAfterFunc(t *testing.T) {
after := func(task Task) {
}
type args struct {
after AfterFunc
}
tests := []struct {
name string
args args
check func(t *testing.T, option JobOption)
}{
{
name: "regular",
args: args{
after: after,
},
check: func(t *testing.T, option JobOption) {
j := &innerJob{}
option(j)
if fmt.Sprintf("%p", j.after) != fmt.Sprintf("%p", after) {
t.Fatal()
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := WithAfterFunc(tt.args.after)
tt.check(t, got)
})
}
}
func TestWithBeforeFunc(t *testing.T) {
before := func(task Task) (skip bool) {
return false
}
type args struct {
before BeforeFunc
}
tests := []struct {
name string
args args
check func(t *testing.T, option JobOption)
}{
{
name: "regular",
args: args{
before: before,
},
check: func(t *testing.T, option JobOption) {
j := &innerJob{}
option(j)
if fmt.Sprintf("%p", j.before) != fmt.Sprintf("%p", before) {
t.Fatal()
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := WithBeforeFunc(tt.args.before)
tt.check(t, got)
})
}
}
func TestWithRetryInterval(t *testing.T) {
retryInterval := func(triedTimes int) time.Duration {
return time.Second
}
type args struct {
retryInterval RetryInterval
}
tests := []struct {
name string
args args
check func(t *testing.T, option JobOption)
}{
{
name: "regular",
args: args{
retryInterval: retryInterval,
},
check: func(t *testing.T, option JobOption) {
j := &innerJob{}
option(j)
if fmt.Sprintf("%p", j.retryInterval) != fmt.Sprintf("%p", retryInterval) {
t.Fatal()
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := WithRetryInterval(tt.args.retryInterval)
tt.check(t, got)
})
}
}
func TestWithRetryTimes(t *testing.T) {
type args struct {
retryTimes int
}
tests := []struct {
name string
args args
check func(t *testing.T, option JobOption)
}{
{
name: "regular",
args: args{
retryTimes: 10,
},
check: func(t *testing.T, option JobOption) {
j := &innerJob{}
option(j)
if j.retryTimes != 10 {
t.Fatal(j.retryTimes)
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := WithRetryTimes(tt.args.retryTimes)
tt.check(t, got)
})
}
}
func TestWithNoMutex(t *testing.T) {
tests := []struct {
name string
check func(t *testing.T, option JobOption)
}{
{
name: "regular",
check: func(t *testing.T, option JobOption) {
j := &innerJob{}
option(j)
if !j.noMutex {
t.Fatal(j.noMutex)
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := WithNoMutex()
tt.check(t, got)
})
}
}