hybridgroup.gobot/drivers/i2c/drv2605l_driver_test.go

171 lines
4.5 KiB
Go

package i2c
import (
"bytes"
"encoding/binary"
"errors"
"testing"
"gobot.io/x/gobot"
"gobot.io/x/gobot/gobottest"
)
var _ gobot.Driver = (*DRV2605LDriver)(nil)
// --------- HELPERS
func initTestDriverAndAdaptor() (*DRV2605LDriver, *i2cTestAdaptor) {
adaptor := newI2cTestAdaptor()
// Prime adapter reader to make "Start()" call happy
adaptor.i2cReadImpl = func(b []byte) (int, error) {
buf := new(bytes.Buffer)
binary.Write(buf, binary.LittleEndian, uint8(42))
copy(b, buf.Bytes())
return buf.Len(), nil
}
return NewDRV2605LDriver(adaptor), adaptor
}
// --------- TESTS
func TestDRV2605LDriver(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
gobottest.Refute(t, d.Connection(), nil)
}
func TestDRV2605LDriverStart(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
gobottest.Assert(t, d.Start(), nil)
}
func TestDRV2605LStartConnectError(t *testing.T) {
d, adaptor := initTestDriverAndAdaptor()
adaptor.Testi2cConnectErr(true)
gobottest.Assert(t, d.Start(), errors.New("Invalid i2c connection"))
}
func TestDRVD2605DriverStartWriteError(t *testing.T) {
d, a := initTestDriverAndAdaptor()
a.i2cWriteImpl = func(b []byte) (int, error) {
return 0, errors.New("write error")
}
gobottest.Assert(t, d.Start(), errors.New("write error"))
}
func TestDRVD2605DriverStartReadError(t *testing.T) {
d, a := initTestDriverAndAdaptor()
a.i2cReadImpl = func(b []byte) (int, error) {
return 0, errors.New("read error")
}
gobottest.Assert(t, d.Start(), errors.New("read error"))
}
func TestDRV2605LDriverHalt(t *testing.T) {
d, adaptor := initTestDriverAndAdaptor()
gobottest.Assert(t, d.Start(), nil)
adaptor.written = []byte{}
gobottest.Assert(t, d.Halt(), nil)
gobottest.Assert(t, adaptor.written, []byte{drv2605RegGo, 0, drv2605RegMode, 42 | drv2605Standby})
}
func TestDRVD2605DriverHaltWriteError(t *testing.T) {
d, a := initTestDriverAndAdaptor()
d.Start()
a.i2cWriteImpl = func(b []byte) (int, error) {
return 0, errors.New("write error")
}
gobottest.Assert(t, d.Halt(), errors.New("write error"))
}
func TestDRV2605LDriverGetPause(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
gobottest.Assert(t, d.Start(), nil)
gobottest.Assert(t, d.GetPauseWaveform(0), uint8(0x80))
gobottest.Assert(t, d.GetPauseWaveform(1), uint8(0x81))
gobottest.Assert(t, d.GetPauseWaveform(128), d.GetPauseWaveform(127))
}
func TestDRV2605LDriverSequenceTermination(t *testing.T) {
d, adaptor := initTestDriverAndAdaptor()
gobottest.Assert(t, d.Start(), nil)
adaptor.written = []byte{}
gobottest.Assert(t, d.SetSequence([]byte{1, 2}), nil)
gobottest.Assert(t, adaptor.written, []byte{
drv2605RegWaveSeq1, 1,
drv2605RegWaveSeq2, 2,
drv2605RegWaveSeq3, 0,
})
}
func TestDRV2605LDriverSequenceTruncation(t *testing.T) {
d, adaptor := initTestDriverAndAdaptor()
gobottest.Assert(t, d.Start(), nil)
adaptor.written = []byte{}
gobottest.Assert(t, d.SetSequence([]byte{1, 2, 3, 4, 5, 6, 7, 8, 99, 100}), nil)
gobottest.Assert(t, adaptor.written, []byte{
drv2605RegWaveSeq1, 1,
drv2605RegWaveSeq2, 2,
drv2605RegWaveSeq3, 3,
drv2605RegWaveSeq4, 4,
drv2605RegWaveSeq5, 5,
drv2605RegWaveSeq6, 6,
drv2605RegWaveSeq7, 7,
drv2605RegWaveSeq8, 8,
})
}
func TestDRV2605LDriverSetName(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
d.SetName("TESTME")
gobottest.Assert(t, d.Name(), "TESTME")
}
func TestDRV2605DriverOptions(t *testing.T) {
d := NewDRV2605LDriver(newI2cTestAdaptor(), WithBus(2))
gobottest.Assert(t, d.GetBusOrDefault(1), 2)
}
func TestDRV2605LDriverSetMode(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
d.Start()
gobottest.Assert(t, d.SetMode(DRV2605ModeIntTrig), nil)
}
func TestDRV2605LDriverSetModeReadError(t *testing.T) {
d, a := initTestDriverAndAdaptor()
d.Start()
a.i2cReadImpl = func(b []byte) (int, error) {
return 0, errors.New("read error")
}
gobottest.Assert(t, d.SetMode(DRV2605ModeIntTrig), errors.New("read error"))
}
func TestDRV2605LDriverSetStandbyMode(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
d.Start()
gobottest.Assert(t, d.SetStandbyMode(true), nil)
}
func TestDRV2605LDriverSetStandbyModeReadError(t *testing.T) {
d, a := initTestDriverAndAdaptor()
d.Start()
a.i2cReadImpl = func(b []byte) (int, error) {
return 0, errors.New("read error")
}
gobottest.Assert(t, d.SetStandbyMode(true), errors.New("read error"))
}
func TestDRV2605LDriverSelectLibrary(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
d.Start()
gobottest.Assert(t, d.SelectLibrary(1), nil)
}
func TestDRV2605LDriverGo(t *testing.T) {
d, _ := initTestDriverAndAdaptor()
d.Start()
gobottest.Assert(t, d.Go(), nil)
}