45 lines
892 B
Go
45 lines
892 B
Go
package bebop
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
"testing"
|
|
|
|
"gobot.io/x/gobot"
|
|
"gobot.io/x/gobot/gobottest"
|
|
)
|
|
|
|
var _ gobot.Adaptor = (*Adaptor)(nil)
|
|
|
|
func initTestBebopAdaptor() *Adaptor {
|
|
a := NewAdaptor()
|
|
a.connect = func(b *Adaptor) (err error) {
|
|
b.drone = &testDrone{}
|
|
return nil
|
|
}
|
|
return a
|
|
}
|
|
|
|
func TestBebopAdaptorName(t *testing.T) {
|
|
a := NewAdaptor()
|
|
gobottest.Assert(t, strings.HasPrefix(a.Name(), "Bebop"), true)
|
|
a.SetName("NewName")
|
|
gobottest.Assert(t, a.Name(), "NewName")
|
|
}
|
|
|
|
func TestBebopAdaptorConnect(t *testing.T) {
|
|
a := initTestBebopAdaptor()
|
|
gobottest.Assert(t, a.Connect(), nil)
|
|
|
|
a.connect = func(a *Adaptor) error {
|
|
return errors.New("connection error")
|
|
}
|
|
gobottest.Assert(t, a.Connect(), errors.New("connection error"))
|
|
}
|
|
|
|
func TestBebopAdaptorFinalize(t *testing.T) {
|
|
a := initTestBebopAdaptor()
|
|
a.Connect()
|
|
gobottest.Assert(t, a.Finalize(), nil)
|
|
}
|