-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyeelightConn_test.go
89 lines (81 loc) · 1.42 KB
/
yeelightConn_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
package yeelight
import (
"bufio"
"io"
"net"
"testing"
"github.com/pkg/errors"
)
var mockTCP struct {
net.Listener
listening bool
stop chan struct{}
buf io.Reader
}
func startMockTCP() error {
if mockTCP.listening {
return nil
}
mockTCP.stop = make(chan struct{})
var err error
mockTCP.Listener, err = net.Listen("tcp4", ":0")
if err != nil {
return err
}
mockTCP.listening = true
go func() {
c, _ := mockTCP.Accept()
mockTCP.buf = bufio.NewReader(c)
}()
return nil
}
func stopMockTCP() error {
mockTCP.listening = false
return mockTCP.Listener.Close()
}
func TestYeeLight_Close(t *testing.T) {
tests := []struct {
name string
wantErr bool
errType error
}{
{
"Close a nil connection",
true,
ErrConnNotInitialized,
},
{
"Close an established connection",
false,
ErrConnNotInitialized,
},
}
err := startMockTCP()
if err != nil {
t.Fatalf("%+v", err)
}
defer stopMockTCP()
for _, tt := range tests {
y := &YeeLight{}
if !tt.wantErr {
y.Location = mockTCP.Addr().String()
y.Open()
}
t.Run(tt.name, func(t *testing.T) {
err := y.Close()
if err != nil {
if !tt.wantErr {
t.Errorf("Close() error: expected no errors, got %+v", err)
return
}
if tt.errType == nil {
return
}
if errors.Cause(err) != tt.errType {
t.Errorf("Close() error: expected %v, got %+v", tt.errType, err)
return
}
}
})
}
}