-
Notifications
You must be signed in to change notification settings - Fork 2
/
job_test.go
138 lines (110 loc) · 2.61 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 agscheduler
import (
"context"
"reflect"
"testing"
"github.com/stretchr/testify/assert"
pb "github.com/agscheduler/agscheduler/services/proto"
)
func getJob() Job {
return Job{
Name: "Job",
Type: JOB_TYPE_INTERVAL,
Interval: "1s",
Func: func(ctx context.Context, j Job) (result string) { return },
Args: map[string]any{},
}
}
func TestJobSetId(t *testing.T) {
j := getJob()
j.setId()
assert.Len(t, j.Id, 16)
}
func TestJobString(t *testing.T) {
j := getJob()
typeOfJob := reflect.TypeOf(j)
for i := 0; i < typeOfJob.NumField(); i++ {
fieldType := typeOfJob.Field(i)
if fieldType.Name == "Func" {
continue
}
assert.Contains(t, j.String(), "'"+fieldType.Name+"'")
}
}
func TestJobDeepCopy(t *testing.T) {
j := getJob()
cJ, err := j.DeepCopy()
assert.NoError(t, err)
cJ.Args["name"] = "test"
assert.NotEmpty(t, cJ.Args)
assert.Empty(t, j.Args)
}
func TestJobMarshal(t *testing.T) {
j := getJob()
bJ, err := JobMarshal(j)
assert.IsType(t, []byte{}, bJ)
assert.NotEmpty(t, bJ)
assert.NoError(t, err)
}
func TestJobUnmarshal(t *testing.T) {
j := getJob()
bJ, err := JobMarshal(j)
assert.NoError(t, err)
j, err = JobUnmarshal(bJ)
assert.NoError(t, err)
assert.IsType(t, Job{}, j)
assert.NotEmpty(t, j)
}
func TestJobUnmarshalError(t *testing.T) {
j, err := JobUnmarshal([]byte("job"))
assert.Error(t, err)
assert.Empty(t, j)
}
func TestJobToPbJobPtr(t *testing.T) {
j := getJob()
pbJ, err := JobToPbJobPtr(j)
assert.NoError(t, err)
assert.IsType(t, &pb.Job{}, pbJ)
assert.NotEmpty(t, pbJ)
}
func TestPbJobPtrToJob(t *testing.T) {
j := getJob()
pbJ, err := JobToPbJobPtr(j)
assert.NoError(t, err)
j = PbJobPtrToJob(pbJ)
assert.IsType(t, Job{}, j)
assert.NotEmpty(t, j)
}
func TestJobsToPbJobsPtr(t *testing.T) {
js := make([]Job, 0)
js = append(js, getJob())
js = append(js, getJob())
pbJs, err := JobsToPbJobsPtr(js)
assert.NoError(t, err)
assert.IsType(t, []*pb.Job{}, pbJs)
assert.Len(t, pbJs, 2)
}
func TestPbJobsPtrToJobs(t *testing.T) {
js := make([]Job, 0)
js = append(js, getJob())
js = append(js, getJob())
pbJs, err := JobsToPbJobsPtr(js)
assert.NoError(t, err)
js = PbJobsPtrToJobs(pbJs)
assert.IsType(t, []Job{}, js)
assert.Len(t, js, 2)
}
func TestRegisterFuncs(t *testing.T) {
assert.Empty(t, FuncMap)
RegisterFuncs(
FuncPkg{Func: func(ctx context.Context, j Job) (result string) { return }},
)
assert.Len(t, FuncMap, 1)
}
func TestFuncMapReadable(t *testing.T) {
RegisterFuncs(
FuncPkg{Func: func(ctx context.Context, j Job) (result string) { return }},
)
funcLen := len(FuncMap)
assert.Len(t, FuncMapReadable(), funcLen)
}