51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package mqtt
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
)
|
|
|
|
func initTestMqttAdaptor() *MqttAdaptor {
|
|
return NewMqttAdaptor("mqtt", "localhost:1883", "client")
|
|
}
|
|
|
|
func TestMqttAdaptorConnect(t *testing.T) {
|
|
a := initTestMqttAdaptor()
|
|
gobot.Assert(t, len(a.Connect()), 0)
|
|
}
|
|
|
|
func TestMqttAdaptorFinalize(t *testing.T) {
|
|
a := initTestMqttAdaptor()
|
|
gobot.Assert(t, len(a.Finalize()), 0)
|
|
}
|
|
|
|
func TestMqttAdaptorCannotPublishUnlessConnected(t *testing.T) {
|
|
a := initTestMqttAdaptor()
|
|
data := []byte("o")
|
|
gobot.Assert(t, a.Publish("test", data), false)
|
|
}
|
|
|
|
func TestMqttAdaptorPublishWhenConnected(t *testing.T) {
|
|
a := initTestMqttAdaptor()
|
|
a.Connect()
|
|
data := []byte("o")
|
|
gobot.Assert(t, a.Publish("test", data), true)
|
|
}
|
|
|
|
func TestMqttAdaptorCannotOnUnlessConnected(t *testing.T) {
|
|
a := initTestMqttAdaptor()
|
|
gobot.Assert(t, a.On("hola", func(data []byte) {
|
|
fmt.Println("hola")
|
|
}), false)
|
|
}
|
|
|
|
func TestMqttAdaptorOnWhenConnected(t *testing.T) {
|
|
a := initTestMqttAdaptor()
|
|
a.Connect()
|
|
gobot.Assert(t, a.On("hola", func(data []byte) {
|
|
fmt.Println("hola")
|
|
}), true)
|
|
}
|