-
Notifications
You must be signed in to change notification settings - Fork 1
/
task_test.go
60 lines (57 loc) · 995 Bytes
/
task_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
package dcron
import (
"context"
"reflect"
"testing"
)
func TestTaskInContext(t *testing.T) {
task := Task{
Key: "test_task",
}
zero := Task{}
type args struct {
ctx context.Context
}
tests := []struct {
name string
args args
want Task
want1 bool
}{
{
name: "regular",
args: args{
ctx: context.WithValue(context.Background(), keyContextTask, task),
},
want: task,
want1: true,
},
{
name: "nil context",
args: args{
ctx: nil,
},
want: zero,
want1: false,
},
{
name: "context without task",
args: args{
ctx: context.Background(),
},
want: zero,
want1: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := TaskFromContext(tt.args.ctx)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("TaskFromContext() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("TaskFromContext() got1 = %v, want %v", got1, tt.want1)
}
})
}
}