-
Notifications
You must be signed in to change notification settings - Fork 1
/
cron_test.go
131 lines (113 loc) · 2.92 KB
/
cron_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
package yeelight
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestClient_AddCron(t *testing.T) {
testTimeout := (30 * time.Minute) + (5 * time.Second)
tests := map[string]struct {
on bool
tr transportFn
expErr error
}{
"correct_on": {
on: true,
tr: isRaw(t, testResultOkStr, `{"id":123,"method":"cron_add","params":[1,30]}`),
},
"correct_off": {
on: false,
tr: isRaw(t, testResultOkStr, `{"id":123,"method":"cron_add","params":[0,30]}`),
},
"err_connection": {
on: true,
tr: func(ctx context.Context, host string, raw string) ([]byte, error) {
return nil, ErrConnect
},
expErr: ErrConnect,
},
}
for testCase, tt := range tests {
t.Run(testCase, func(t *testing.T) {
err := Client{host: testHost, transport: tt.tr}.AddCron(testCtx, tt.on, testTimeout)
require.Equal(t, tt.expErr, err)
})
}
}
func TestClient_GetCron(t *testing.T) {
tests := map[string]struct {
on bool
tr transportFn
exp time.Duration
expErr error
}{
"correct_on": {
on: true,
tr: isRaw(t, `{"id":1, "result":[{"type": 1, "delay": 15, "mix": 0}]}`, `{"id":123,"method":"cron_get","params":[1]}`),
exp: 15 * time.Minute,
},
"correct_off": {
on: false,
tr: isRaw(t, `{"id":1, "result":[{"type": 0, "delay": 15, "mix": 0}]}`, `{"id":123,"method":"cron_get","params":[0]}`),
exp: 15 * time.Minute,
},
"correct_is_unset": {
on: true,
tr: func(ctx context.Context, host string, raw string) ([]byte, error) {
return []byte(`{"id":1, "result":[]}`), nil
},
expErr: ErrCronIsUnset,
},
"err_connection": {
on: true,
tr: func(ctx context.Context, host string, raw string) ([]byte, error) {
return nil, ErrConnect
},
expErr: ErrConnect,
},
"json_error": {
on: true,
tr: func(ctx context.Context, host string, raw string) ([]byte, error) {
return []byte(`{"id":1, "result":[{"delay" : "im_bad_value"}]}`), nil
},
expErr: ErrResponseJSONSyntax,
},
}
for testCase, tt := range tests {
t.Run(testCase, func(t *testing.T) {
got, err := Client{host: testHost, transport: tt.tr}.GetCron(testCtx, tt.on)
require.Equal(t, tt.expErr, err)
require.Equal(t, tt.exp, got)
})
}
}
func TestClient_DeleteCron(t *testing.T) {
tests := map[string]struct {
on bool
tr transportFn
expErr error
}{
"correct_on": {
on: true,
tr: isRaw(t, testResultOkStr, `{"id":123,"method":"cron_del","params":[1]}`),
},
"correct_off": {
on: false,
tr: isRaw(t, testResultOkStr, `{"id":123,"method":"cron_del","params":[0]}`),
},
"err_connection": {
on: true,
tr: func(ctx context.Context, host string, raw string) ([]byte, error) {
return nil, ErrConnect
},
expErr: ErrConnect,
},
}
for testCase, tt := range tests {
t.Run(testCase, func(t *testing.T) {
err := Client{host: testHost, transport: tt.tr}.DeleteCron(testCtx, tt.on)
require.Equal(t, tt.expErr, err)
})
}
}