1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-14 19:29:32 +08:00
hybridgroup.gobot/platforms/neurosky/neurosky_adaptor_test.go

93 lines
1.9 KiB
Go
Raw Normal View History

2014-04-27 17:17:05 -07:00
package neurosky
import (
2014-12-18 14:42:59 -08:00
"errors"
"io"
"strings"
"sync"
2014-06-13 13:40:24 -07:00
"testing"
2014-07-22 18:00:54 -07:00
"github.com/stretchr/testify/assert"
"gobot.io/x/gobot/v2"
)
var _ gobot.Adaptor = (*Adaptor)(nil)
type NullReadWriteCloser struct {
mtx sync.Mutex
readError error
closeError error
}
func (n *NullReadWriteCloser) ReadError(e error) {
n.mtx.Lock()
defer n.mtx.Unlock()
n.readError = e
}
2014-12-18 14:42:59 -08:00
func (n *NullReadWriteCloser) CloseError(e error) {
n.mtx.Lock()
defer n.mtx.Unlock()
n.closeError = e
}
2014-12-18 14:42:59 -08:00
func (n *NullReadWriteCloser) Write(p []byte) (int, error) {
return len(p), nil
}
2014-12-18 14: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-18 14: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-18 14:42:59 -08:00
return &NullReadWriteCloser{}, nil
2014-07-22 18:00:54 -07:00
}
return a
2014-06-13 13:40:24 -07:00
}
2014-12-18 14:42:59 -08:00
func TestNeuroskyAdaptor(t *testing.T) {
a := NewAdaptor("/dev/null")
assert.Equal(t, "/dev/null", a.Port())
2014-12-18 14:42:59 -08:00
}
func TestNeuroskyAdaptorName(t *testing.T) {
a := NewAdaptor("/dev/null")
assert.True(t, strings.HasPrefix(a.Name(), "Neurosky"))
a.SetName("NewName")
assert.Equal(t, "NewName", a.Name())
}
2014-06-13 16:01:39 -07:00
func TestNeuroskyAdaptorConnect(t *testing.T) {
a := initTestNeuroskyAdaptor()
assert.NoError(t, a.Connect())
2014-12-18 14:42:59 -08:00
a.connect = func(n *Adaptor) (io.ReadWriteCloser, error) {
2014-12-18 14:42:59 -08:00
return nil, errors.New("connection error")
}
assert.ErrorContains(t, a.Connect(), "connection error")
2014-06-13 13:40:24 -07:00
}
2014-07-22 18:00:54 -07:00
func TestNeuroskyAdaptorFinalize(t *testing.T) {
rwc := &NullReadWriteCloser{}
a := NewAdaptor("/dev/null")
a.connect = func(n *Adaptor) (io.ReadWriteCloser, error) {
return rwc, nil
}
_ = a.Connect()
assert.NoError(t, a.Finalize())
2014-12-18 14:42:59 -08:00
rwc.CloseError(errors.New("close error"))
_ = a.Connect()
assert.ErrorContains(t, a.Finalize(), "close error")
2014-07-22 18:00:54 -07:00
}