hybridgroup.gobot/platforms/neurosky/neurosky_adaptor_test.go

99 lines
2.0 KiB
Go
Raw Normal View History

2014-04-28 08:17:05 +08:00
package neurosky
import (
2014-12-19 06:42:59 +08:00
"errors"
"io"
"strings"
"sync"
2014-06-14 04:40:24 +08:00
"testing"
2014-07-23 09:00:54 +08:00
"gobot.io/x/gobot"
"gobot.io/x/gobot/gobottest"
)
var _ gobot.Adaptor = (*Adaptor)(nil)
type NullReadWriteCloser struct {
mtx sync.Mutex
readError error
closeError error
}
// func NewNullReadWriteCloser() *NullReadWriteCloser {
// return NullReadWriteCloser{
//
// }
// }
func (n *NullReadWriteCloser) ReadError(e error) {
n.mtx.Lock()
defer n.mtx.Unlock()
n.readError = e
}
2014-12-19 06:42:59 +08:00
func (n *NullReadWriteCloser) CloseError(e error) {
n.mtx.Lock()
defer n.mtx.Unlock()
n.closeError = e
}
2014-12-19 06:42:59 +08:00
func (n *NullReadWriteCloser) Write(p []byte) (int, error) {
return len(p), nil
}
2014-12-19 06:42:59 +08:00
func (n *NullReadWriteCloser) Read(b []byte) (int, error) {
n.mtx.Lock()
defer n.mtx.Unlock()
return len(b), n.readError
}
2014-12-19 06:42:59 +08:00
func (n *NullReadWriteCloser) Close() error {
n.mtx.Lock()
defer n.mtx.Unlock()
return n.closeError
}
func initTestNeuroskyAdaptor() *Adaptor {
a := NewAdaptor("/dev/null")
a.connect = func(n *Adaptor) (io.ReadWriteCloser, error) {
2014-12-19 06:42:59 +08:00
return &NullReadWriteCloser{}, nil
2014-07-23 09:00:54 +08:00
}
return a
2014-06-14 04:40:24 +08:00
}
2014-12-19 06:42:59 +08:00
func TestNeuroskyAdaptor(t *testing.T) {
a := NewAdaptor("/dev/null")
gobottest.Assert(t, a.Port(), "/dev/null")
2014-12-19 06:42:59 +08:00
}
func TestNeuroskyAdaptorName(t *testing.T) {
a := NewAdaptor("/dev/null")
gobottest.Assert(t, strings.HasPrefix(a.Name(), "Neurosky"), true)
a.SetName("NewName")
gobottest.Assert(t, a.Name(), "NewName")
}
2014-06-14 07:01:39 +08:00
func TestNeuroskyAdaptorConnect(t *testing.T) {
a := initTestNeuroskyAdaptor()
gobottest.Assert(t, a.Connect(), nil)
2014-12-19 06:42:59 +08:00
a.connect = func(n *Adaptor) (io.ReadWriteCloser, error) {
2014-12-19 06:42:59 +08:00
return nil, errors.New("connection error")
}
gobottest.Assert(t, a.Connect(), errors.New("connection error"))
2014-06-14 04:40:24 +08:00
}
2014-07-23 09:00:54 +08:00
func TestNeuroskyAdaptorFinalize(t *testing.T) {
rwc := &NullReadWriteCloser{}
a := NewAdaptor("/dev/null")
a.connect = func(n *Adaptor) (io.ReadWriteCloser, error) {
return rwc, nil
}
2014-07-23 09:00:54 +08:00
a.Connect()
gobottest.Assert(t, a.Finalize(), nil)
2014-12-19 06:42:59 +08:00
rwc.CloseError(errors.New("close error"))
2014-12-19 06:42:59 +08:00
a.Connect()
gobottest.Assert(t, a.Finalize(), errors.New("close error"))
2014-07-23 09:00:54 +08:00
}