2014-11-04 10:30:56 +08:00
|
|
|
package mqtt
|
|
|
|
|
|
|
|
import (
|
2016-11-08 03:44:22 +08:00
|
|
|
"errors"
|
2014-11-05 00:33:05 +08:00
|
|
|
"fmt"
|
2017-04-06 16:55:06 +08:00
|
|
|
"strings"
|
2014-11-04 10:56:33 +08:00
|
|
|
"testing"
|
2014-11-07 04:28:04 +08:00
|
|
|
|
2016-11-08 03:44:22 +08:00
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/gobottest"
|
2014-11-04 10:30:56 +08:00
|
|
|
)
|
|
|
|
|
2016-09-26 16:13:37 +08:00
|
|
|
var _ gobot.Adaptor = (*Adaptor)(nil)
|
2016-07-14 01:01:36 +08:00
|
|
|
|
2016-09-26 16:13:37 +08:00
|
|
|
func initTestMqttAdaptor() *Adaptor {
|
2017-04-19 16:46:28 +08:00
|
|
|
return NewAdaptor("tcp://localhost:1883", "client")
|
2014-11-04 10:30:56 +08:00
|
|
|
}
|
|
|
|
|
2017-04-06 16:55:06 +08:00
|
|
|
func TestMqttAdaptorName(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, strings.HasPrefix(a.Name(), "MQTT"), true)
|
|
|
|
a.SetName("NewName")
|
|
|
|
gobottest.Assert(t, a.Name(), "NewName")
|
|
|
|
}
|
|
|
|
|
2017-04-19 16:30:30 +08:00
|
|
|
func TestMqttAdaptorPort(t *testing.T) {
|
2014-11-04 10:56:33 +08:00
|
|
|
a := initTestMqttAdaptor()
|
2017-04-19 16:46:28 +08:00
|
|
|
gobottest.Assert(t, a.Port(), "tcp://localhost:1883")
|
2017-04-19 16:30:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorAutoReconnect(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, a.AutoReconnect(), false)
|
|
|
|
a.SetAutoReconnect(true)
|
|
|
|
gobottest.Assert(t, a.AutoReconnect(), true)
|
|
|
|
}
|
|
|
|
|
2017-09-24 19:45:47 +08:00
|
|
|
func TestMqttAdaptorCleanSession(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, a.CleanSession(), true)
|
|
|
|
a.SetCleanSession(false)
|
|
|
|
gobottest.Assert(t, a.CleanSession(), false)
|
|
|
|
}
|
|
|
|
|
2017-04-19 16:30:30 +08:00
|
|
|
func TestMqttAdaptorUseSSL(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, a.UseSSL(), false)
|
|
|
|
a.SetUseSSL(true)
|
|
|
|
gobottest.Assert(t, a.UseSSL(), true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorUseServerCert(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, a.ServerCert(), "")
|
|
|
|
a.SetServerCert("/path/to/server.cert")
|
|
|
|
gobottest.Assert(t, a.ServerCert(), "/path/to/server.cert")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorUseClientCert(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, a.ClientCert(), "")
|
|
|
|
a.SetClientCert("/path/to/client.cert")
|
|
|
|
gobottest.Assert(t, a.ClientCert(), "/path/to/client.cert")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorUseClientKey(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
gobottest.Assert(t, a.ClientKey(), "")
|
|
|
|
a.SetClientKey("/path/to/client.key")
|
|
|
|
gobottest.Assert(t, a.ClientKey(), "/path/to/client.key")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorConnectError(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
2017-04-19 16:46:28 +08:00
|
|
|
|
2017-05-03 02:34:46 +08:00
|
|
|
err := a.Connect()
|
2017-05-03 02:39:49 +08:00
|
|
|
gobottest.Assert(t, strings.Contains(err.Error(), "connection refused"), true)
|
2017-04-19 16:46:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorConnectSSLError(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
a.SetUseSSL(true)
|
2017-05-03 02:34:46 +08:00
|
|
|
err := a.Connect()
|
2017-05-03 02:39:49 +08:00
|
|
|
gobottest.Assert(t, strings.Contains(err.Error(), "connection refused"), true)
|
2017-04-19 16:30:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorConnectWithAuthError(t *testing.T) {
|
|
|
|
a := NewAdaptorWithAuth("localhost:1883", "client", "user", "pass")
|
2016-11-08 03:44:22 +08:00
|
|
|
var expected error
|
|
|
|
expected = multierror.Append(expected, errors.New("Network Error : Unknown protocol"))
|
|
|
|
|
|
|
|
gobottest.Assert(t, a.Connect(), expected)
|
2014-11-04 10:30:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorFinalize(t *testing.T) {
|
2014-11-04 10:56:33 +08:00
|
|
|
a := initTestMqttAdaptor()
|
2016-11-08 02:52:28 +08:00
|
|
|
gobottest.Assert(t, a.Finalize(), nil)
|
2014-11-04 10:30:56 +08:00
|
|
|
}
|
2014-11-05 00:33:05 +08:00
|
|
|
|
|
|
|
func TestMqttAdaptorCannotPublishUnlessConnected(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
data := []byte("o")
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, a.Publish("test", data), false)
|
2014-11-05 00:33:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorPublishWhenConnected(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
a.Connect()
|
|
|
|
data := []byte("o")
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, a.Publish("test", data), true)
|
2014-11-05 00:33:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorCannotOnUnlessConnected(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
2017-04-19 01:49:17 +08:00
|
|
|
gobottest.Assert(t, a.On("hola", func(msg Message) {
|
2014-11-05 00:33:05 +08:00
|
|
|
fmt.Println("hola")
|
|
|
|
}), false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMqttAdaptorOnWhenConnected(t *testing.T) {
|
|
|
|
a := initTestMqttAdaptor()
|
|
|
|
a.Connect()
|
2017-04-19 01:49:17 +08:00
|
|
|
gobottest.Assert(t, a.On("hola", func(msg Message) {
|
2014-11-05 00:33:05 +08:00
|
|
|
fmt.Println("hola")
|
|
|
|
}), true)
|
|
|
|
}
|