2019-12-27 14:38:12 +00:00
|
|
|
package testtools
|
|
|
|
|
|
|
|
import (
|
|
|
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
2020-01-01 19:33:41 +00:00
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2019-12-27 14:38:12 +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 19:33:41 +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)
|
|
|
|
}
|