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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
// SPDX-FileCopyrightText: 2020 Ethel Morgan
//
// SPDX-License-Identifier: MIT
package catbus
import (
"fmt"
"log"
"reflect"
"testing"
"time"
mqtt "github.com/eclipse/paho.mqtt.golang"
)
type (
message struct {
retention Retention
payload string
}
)
func TestOnConnect(t *testing.T) {
tests := []struct {
payloadByTopic map[string]string
subscribe []string
receive map[string]message
want map[string]string
}{
{
payloadByTopic: map[string]string{
"tv/power": "off",
},
want: map[string]string{
"tv/power": "off",
},
},
{
payloadByTopic: map[string]string{
"tv/power": "off",
},
subscribe: []string{
"tv/power",
},
receive: map[string]message{
"tv/power": {Retain, "on"},
},
want: map[string]string{
"tv/power": "on",
},
},
{
subscribe: []string{
"tv/power",
},
receive: map[string]message{
"tv/power": {Retain, "on"},
},
want: map[string]string{
"tv/power": "on",
},
},
{
payloadByTopic: map[string]string{
"tv/power": "off",
},
subscribe: []string{
"tv/power",
},
receive: map[string]message{
"tv/power": {DontRetain, "on"},
},
want: map[string]string{
"tv/power": "on",
},
},
{
subscribe: []string{
"tv/power",
},
receive: map[string]message{
"tv/power": {DontRetain, "on"},
},
want: map[string]string{},
},
{
payloadByTopic: map[string]string{
"tv/power": "off",
},
subscribe: []string{
"tv/power",
},
receive: map[string]message{
"tv/power": {DontRetain, ""},
},
want: map[string]string{},
},
}
for i, tt := range tests {
fakeMQTT := &fakeMQTT{
callbackByTopic: map[string]mqtt.MessageHandler{},
payloadByTopic: map[string]string{},
}
catbus := &client{
mqtt: fakeMQTT,
payloadByTopic: map[string]string{},
onconnectTimerByTopic: map[string]*time.Timer{},
onconnectDelay: 1 * time.Millisecond,
onconnectJitter: 1,
}
if tt.payloadByTopic != nil {
catbus.payloadByTopic = tt.payloadByTopic
}
for _, topic := range tt.subscribe {
catbus.Subscribe(topic, func(_ Client, _ Message) {})
}
for topic, message := range tt.receive {
fakeMQTT.send(topic, message.retention, message.payload)
}
catbus.stopAllTimers()
catbus.startAllTimers()
// TODO: replace with proper channel signaling or sth.
time.Sleep(1 * time.Second)
got := fakeMQTT.payloadByTopic
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("[%d]: got %v, want %v", i, got, tt.want)
}
}
}
type (
fakeMQTT struct {
mqtt.Client
callbackByTopic map[string]mqtt.MessageHandler
payloadByTopic map[string]string
}
fakeMessage struct {
mqtt.Message
topic string
retained bool
payload []byte
}
fakeToken struct{}
)
func (f *fakeMQTT) Publish(topic string, qos byte, retain bool, payload interface{}) mqtt.Token {
bytes, ok := payload.(string)
if !ok {
panic(fmt.Sprintf("expected type string, got %v", reflect.TypeOf(payload)))
}
log.Printf("topic %q payload %s", topic, payload)
f.payloadByTopic[topic] = bytes
return &fakeToken{}
}
func (f *fakeMQTT) Subscribe(topic string, qos byte, callback mqtt.MessageHandler) mqtt.Token {
f.callbackByTopic[topic] = callback
return &fakeToken{}
}
func (f *fakeMQTT) send(topic string, retention Retention, payload string) {
// if retention == Retain {
// f.payloadByTopic[topic] = payload
// }
if callback, ok := f.callbackByTopic[topic]; ok {
msg := &fakeMessage{
topic: topic,
retained: bool(retention),
payload: []byte(payload),
}
callback(f, msg)
}
}
func (f *fakeMessage) Topic() string {
return f.topic
}
func (f *fakeMessage) Payload() []byte {
return f.payload
}
func (f *fakeMessage) Retained() bool {
return f.retained
}
func (_ *fakeToken) Wait() bool {
return false
}
func (_ *fakeToken) WaitTimeout(_ time.Duration) bool {
return false
}
func (_ *fakeToken) Error() error {
return nil
}
|