2019-11-30 20:49:19 +00:00
|
|
|
package testtools
|
|
|
|
|
|
|
|
import (
|
2019-12-07 10:18:11 +00:00
|
|
|
"github.com/cyrilix/robocar-base/mqttdevice"
|
2019-12-14 09:41:57 +00:00
|
|
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
2020-01-01 16:39:15 +00:00
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2019-12-07 10:18:11 +00:00
|
|
|
"sync"
|
2019-11-30 20:49:19 +00:00
|
|
|
)
|
|
|
|
|
2019-12-07 10:18:11 +00:00
|
|
|
|
2019-12-14 09:43:02 +00:00
|
|
|
func NewFakePublisher() *FakePublisher {
|
|
|
|
return &FakePublisher{msg: make(map[string]mqttdevice.MqttValue)}
|
2019-12-07 10:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FakePublisher struct {
|
|
|
|
muMsg sync.Mutex
|
|
|
|
msg map[string]mqttdevice.MqttValue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FakePublisher) Publish(topic string, payload mqttdevice.MqttValue) {
|
|
|
|
f.muMsg.Lock()
|
|
|
|
defer f.muMsg.Unlock()
|
|
|
|
f.msg[topic] = payload
|
|
|
|
}
|
|
|
|
|
2019-12-14 09:41:57 +00:00
|
|
|
func (f *FakePublisher) PublishedEvent(topic string) mqttdevice.MqttValue {
|
2019-12-07 10:18:11 +00:00
|
|
|
f.muMsg.Lock()
|
|
|
|
defer f.muMsg.Unlock()
|
|
|
|
return f.msg[topic]
|
|
|
|
}
|
2019-12-14 09:41:57 +00:00
|
|
|
|
|
|
|
type fakeMessage struct {
|
|
|
|
qos byte
|
|
|
|
topic string
|
|
|
|
payload []byte
|
|
|
|
acked bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) Duplicate() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) Qos() byte {
|
|
|
|
return f.qos
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) Retained() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) Topic() string {
|
|
|
|
return f.topic
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) MessageID() uint16 {
|
|
|
|
return 1234
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) Payload() []byte {
|
|
|
|
return f.payload
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeMessage) Ack() {
|
|
|
|
f.acked = true
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewFakeMessage(topic string, payload []byte) mqtt.Message {
|
|
|
|
return &fakeMessage{
|
|
|
|
qos: 0,
|
|
|
|
topic: topic,
|
|
|
|
payload: payload,
|
|
|
|
acked: false,
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 16:39:15 +00:00
|
|
|
|
|
|
|
func NewFakeMessageFromProtobuf(topic string, msg proto.Message) mqtt.Message{
|
|
|
|
payload, err := proto.Marshal(msg)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("unable to marshal protobuf message %T: %v", msg, err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return NewFakeMessage(topic, payload)
|
|
|
|
}
|