82 lines
1.7 KiB
Go
82 lines
1.7 KiB
Go
package sphero
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
)
|
|
|
|
type nullReadWriteCloser struct{}
|
|
|
|
var testAdaptorRead = func(p []byte) (int, error) {
|
|
return len(p), nil
|
|
}
|
|
|
|
func (nullReadWriteCloser) Write(p []byte) (int, error) {
|
|
return testAdaptorRead(p)
|
|
}
|
|
|
|
var testAdaptorWrite = func(b []byte) (int, error) {
|
|
return len(b), nil
|
|
}
|
|
|
|
func (nullReadWriteCloser) Read(b []byte) (int, error) {
|
|
return testAdaptorWrite(b)
|
|
}
|
|
|
|
var testAdaptorClose = func() error {
|
|
return nil
|
|
}
|
|
|
|
func (nullReadWriteCloser) Close() error {
|
|
return testAdaptorClose()
|
|
}
|
|
|
|
func initTestSpheroAdaptor() *SpheroAdaptor {
|
|
a := NewSpheroAdaptor("bot", "/dev/null")
|
|
a.sp = nullReadWriteCloser{}
|
|
a.connect = func(a *SpheroAdaptor) (err error) { return nil }
|
|
return a
|
|
}
|
|
|
|
func TestSpheroAdaptor(t *testing.T) {
|
|
a := initTestSpheroAdaptor()
|
|
gobot.Assert(t, a.Name(), "bot")
|
|
gobot.Assert(t, a.Port(), "/dev/null")
|
|
}
|
|
|
|
func TestSpheroAdaptorReconnect(t *testing.T) {
|
|
a := initTestSpheroAdaptor()
|
|
a.Connect()
|
|
gobot.Assert(t, a.connected, true)
|
|
a.Reconnect()
|
|
gobot.Assert(t, a.connected, true)
|
|
a.Disconnect()
|
|
gobot.Assert(t, a.connected, false)
|
|
a.Reconnect()
|
|
gobot.Assert(t, a.connected, true)
|
|
}
|
|
|
|
func TestSpheroAdaptorFinalize(t *testing.T) {
|
|
a := initTestSpheroAdaptor()
|
|
gobot.Assert(t, len(a.Finalize()), 0)
|
|
|
|
testAdaptorClose = func() error {
|
|
return errors.New("close error")
|
|
}
|
|
|
|
gobot.Assert(t, a.Finalize()[0], errors.New("close error"))
|
|
}
|
|
|
|
func TestSpheroAdaptorConnect(t *testing.T) {
|
|
a := initTestSpheroAdaptor()
|
|
gobot.Assert(t, len(a.Connect()), 0)
|
|
|
|
a.connect = func(a *SpheroAdaptor) (err error) {
|
|
return errors.New("connect error")
|
|
}
|
|
|
|
gobot.Assert(t, a.Connect()[0], errors.New("connect error"))
|
|
}
|