2017-01-16 00:59:54 +01:00
|
|
|
package i2c
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
2017-04-04 13:05:14 +02:00
|
|
|
"errors"
|
2017-02-15 00:01:47 +01:00
|
|
|
"strings"
|
2017-01-16 00:59:54 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/gobottest"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ gobot.Driver = (*TSL2561Driver)(nil)
|
|
|
|
|
|
|
|
func initTestTSL2561Driver() (*TSL2561Driver, *i2cTestAdaptor) {
|
|
|
|
adaptor := newI2cTestAdaptor()
|
|
|
|
return NewTSL2561Driver(adaptor), adaptor
|
|
|
|
}
|
|
|
|
|
2017-02-06 18:34:33 +01:00
|
|
|
func idReader(b []byte) (int, error) {
|
2017-01-20 00:27:24 +01:00
|
|
|
buf := new(bytes.Buffer)
|
2017-02-06 18:34:33 +01:00
|
|
|
// Mock device responding 0xA
|
2017-01-20 00:27:24 +01:00
|
|
|
binary.Write(buf, binary.LittleEndian, uint8(0x0A))
|
2017-02-06 18:34:33 +01:00
|
|
|
copy(b, buf.Bytes())
|
|
|
|
return buf.Len(), nil
|
2017-01-20 00:27:24 +01:00
|
|
|
}
|
|
|
|
|
2017-04-04 13:05:14 +02:00
|
|
|
func TestTSL2561DriverStart(t *testing.T) {
|
2017-01-16 00:59:54 +01:00
|
|
|
d, adaptor := initTestTSL2561Driver()
|
2017-04-04 13:05:14 +02:00
|
|
|
adaptor.i2cReadImpl = idReader
|
2017-02-15 00:01:47 +01:00
|
|
|
gobottest.Assert(t, strings.HasPrefix(d.Name(), "TSL2561"), true)
|
2017-04-04 13:05:14 +02:00
|
|
|
gobottest.Assert(t, d.Start(), nil)
|
2017-04-11 12:50:32 +02:00
|
|
|
gobottest.Refute(t, d.Connection(), nil)
|
2017-04-04 13:05:14 +02:00
|
|
|
}
|
2017-01-16 00:59:54 +01:00
|
|
|
|
2017-04-04 13:05:14 +02:00
|
|
|
func TestTSL2561DriverStartError(t *testing.T) {
|
|
|
|
d, adaptor := initTestTSL2561Driver()
|
|
|
|
adaptor.i2cWriteImpl = func([]byte) (int, error) {
|
|
|
|
return 0, errors.New("write error")
|
|
|
|
}
|
|
|
|
gobottest.Assert(t, d.Start(), errors.New("write error"))
|
|
|
|
}
|
2017-01-20 00:27:24 +01:00
|
|
|
|
2017-04-04 13:05:14 +02:00
|
|
|
func TestTSL2561DriverHalt(t *testing.T) {
|
|
|
|
d, adaptor := initTestTSL2561Driver()
|
|
|
|
adaptor.i2cReadImpl = idReader
|
2017-01-20 00:27:24 +01:00
|
|
|
|
2017-04-04 13:05:14 +02:00
|
|
|
d.Start()
|
|
|
|
gobottest.Assert(t, strings.HasPrefix(d.Name(), "TSL2561"), true)
|
2017-01-20 00:27:24 +01:00
|
|
|
gobottest.Assert(t, d.Halt(), nil)
|
|
|
|
}
|
|
|
|
|
2017-02-15 00:01:47 +01:00
|
|
|
func TestTSL2561DriverRead16(t *testing.T) {
|
2017-01-20 00:27:24 +01:00
|
|
|
d, adaptor := initTestTSL2561Driver()
|
|
|
|
|
|
|
|
adaptor.i2cReadImpl = idReader
|
|
|
|
|
|
|
|
gobottest.Assert(t, d.Start(), nil)
|
|
|
|
|
2017-02-06 18:34:33 +01:00
|
|
|
adaptor.i2cReadImpl = func(b []byte) (int, error) {
|
2017-01-16 00:59:54 +01:00
|
|
|
buf := new(bytes.Buffer)
|
2017-01-20 00:27:24 +01:00
|
|
|
// send low
|
|
|
|
binary.Write(buf, binary.LittleEndian, uint8(0xEA))
|
|
|
|
// send high
|
|
|
|
binary.Write(buf, binary.LittleEndian, uint8(0xAE))
|
2017-02-06 18:34:33 +01:00
|
|
|
copy(b, buf.Bytes())
|
|
|
|
return buf.Len(), nil
|
2017-01-16 00:59:54 +01:00
|
|
|
}
|
2017-02-06 18:34:33 +01:00
|
|
|
val, err := d.connection.ReadWordData(1)
|
2017-01-20 00:27:24 +01:00
|
|
|
gobottest.Assert(t, err, nil)
|
|
|
|
gobottest.Assert(t, val, uint16(0xAEEA))
|
2017-01-16 00:59:54 +01:00
|
|
|
}
|
|
|
|
|
2017-02-15 00:01:47 +01:00
|
|
|
func TestTSL2561DriverValidOptions(t *testing.T) {
|
2017-01-16 00:59:54 +01:00
|
|
|
adaptor := newI2cTestAdaptor()
|
|
|
|
|
2017-02-15 00:01:47 +01:00
|
|
|
device := NewTSL2561Driver(adaptor,
|
|
|
|
WithTSL2561IntegrationTime101MS,
|
|
|
|
WithAddress(TSL2561AddressLow),
|
|
|
|
WithTSL2561AutoGain)
|
2017-01-16 00:59:54 +01:00
|
|
|
|
|
|
|
gobottest.Refute(t, device, nil)
|
2017-04-04 13:05:14 +02:00
|
|
|
gobottest.Assert(t, device.autoGain, true)
|
|
|
|
gobottest.Assert(t, device.integrationTime, TSL2561IntegrationTime101MS)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTSL2561DriverMoreOptions(t *testing.T) {
|
|
|
|
adaptor := newI2cTestAdaptor()
|
|
|
|
|
|
|
|
device := NewTSL2561Driver(adaptor,
|
|
|
|
WithTSL2561IntegrationTime101MS,
|
|
|
|
WithAddress(TSL2561AddressLow),
|
|
|
|
WithTSL2561Gain16X)
|
|
|
|
|
|
|
|
gobottest.Refute(t, device, nil)
|
|
|
|
gobottest.Assert(t, device.autoGain, false)
|
|
|
|
gobottest.Assert(t, device.gain, TSL2561Gain(TSL2561Gain16X))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTSL2561DriverEvenMoreOptions(t *testing.T) {
|
|
|
|
adaptor := newI2cTestAdaptor()
|
|
|
|
|
|
|
|
device := NewTSL2561Driver(adaptor,
|
2017-04-11 12:50:32 +02:00
|
|
|
WithTSL2561IntegrationTime13MS,
|
2017-04-04 13:05:14 +02:00
|
|
|
WithAddress(TSL2561AddressLow),
|
|
|
|
WithTSL2561Gain1X)
|
|
|
|
|
|
|
|
gobottest.Refute(t, device, nil)
|
|
|
|
gobottest.Assert(t, device.autoGain, false)
|
|
|
|
gobottest.Assert(t, device.gain, TSL2561Gain(TSL2561Gain1X))
|
2017-04-11 12:50:32 +02:00
|
|
|
gobottest.Assert(t, device.integrationTime, TSL2561IntegrationTime13MS)
|
2017-04-04 13:05:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestTSL2561DriverYetEvenMoreOptions(t *testing.T) {
|
|
|
|
adaptor := newI2cTestAdaptor()
|
|
|
|
|
|
|
|
device := NewTSL2561Driver(adaptor,
|
|
|
|
WithTSL2561IntegrationTime402MS,
|
|
|
|
WithAddress(TSL2561AddressLow),
|
|
|
|
WithTSL2561AutoGain)
|
|
|
|
|
|
|
|
gobottest.Refute(t, device, nil)
|
|
|
|
gobottest.Assert(t, device.autoGain, true)
|
|
|
|
gobottest.Assert(t, device.integrationTime, TSL2561IntegrationTime402MS)
|
2017-01-16 00:59:54 +01:00
|
|
|
}
|
|
|
|
|
2017-02-15 00:01:47 +01:00
|
|
|
func TestTSL2561DriverSetName(t *testing.T) {
|
|
|
|
d, _ := initTestTSL2561Driver()
|
|
|
|
d.SetName("TESTME")
|
|
|
|
gobottest.Assert(t, d.Name(), "TESTME")
|
2017-01-16 00:59:54 +01:00
|
|
|
}
|
|
|
|
|
2017-02-15 00:01:47 +01:00
|
|
|
func TestTSL2561DriverOptions(t *testing.T) {
|
|
|
|
d := NewTSL2561Driver(newI2cTestAdaptor(), WithBus(2))
|
|
|
|
gobottest.Assert(t, d.GetBusOrDefault(1), 2)
|
2017-01-16 00:59:54 +01:00
|
|
|
}
|
2017-04-04 14:06:58 +02:00
|
|
|
|
|
|
|
func TestTSL2561DriverGetLuminocity(t *testing.T) {
|
|
|
|
d, adaptor := initTestTSL2561Driver()
|
|
|
|
|
|
|
|
// TODO: obtain real sensor data here for testing
|
|
|
|
adaptor.i2cReadImpl = func(b []byte) (int, error) {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
buf.Write([]byte{77, 48})
|
|
|
|
copy(b, buf.Bytes())
|
|
|
|
return buf.Len(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Start()
|
|
|
|
bb, ir, err := d.GetLuminocity()
|
|
|
|
gobottest.Assert(t, err, nil)
|
|
|
|
gobottest.Assert(t, bb, uint16(12365))
|
|
|
|
gobottest.Assert(t, ir, uint16(12365))
|
|
|
|
gobottest.Assert(t, d.CalculateLux(bb, ir), uint32(72))
|
|
|
|
}
|
2017-04-07 17:28:59 +02:00
|
|
|
|
|
|
|
func TestTSL2561DriverGetLuminocityAutoGain(t *testing.T) {
|
|
|
|
adaptor := newI2cTestAdaptor()
|
|
|
|
d := NewTSL2561Driver(adaptor,
|
|
|
|
WithTSL2561IntegrationTime402MS,
|
|
|
|
WithAddress(TSL2561AddressLow),
|
|
|
|
WithTSL2561AutoGain)
|
|
|
|
|
|
|
|
// TODO: obtain real sensor data here for testing
|
|
|
|
adaptor.i2cReadImpl = func(b []byte) (int, error) {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
buf.Write([]byte{77, 48})
|
|
|
|
copy(b, buf.Bytes())
|
|
|
|
return buf.Len(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Start()
|
|
|
|
bb, ir, err := d.GetLuminocity()
|
|
|
|
gobottest.Assert(t, err, nil)
|
|
|
|
gobottest.Assert(t, bb, uint16(12365))
|
|
|
|
gobottest.Assert(t, ir, uint16(12365))
|
|
|
|
gobottest.Assert(t, d.CalculateLux(bb, ir), uint32(72))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTSL2561SetIntegrationTimeError(t *testing.T) {
|
|
|
|
d, adaptor := initTestTSL2561Driver()
|
|
|
|
d.Start()
|
|
|
|
adaptor.i2cWriteImpl = func([]byte) (int, error) {
|
|
|
|
return 0, errors.New("write error")
|
|
|
|
}
|
|
|
|
gobottest.Assert(t, d.SetIntegrationTime(TSL2561IntegrationTime101MS), errors.New("write error"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTSL2561SetGainError(t *testing.T) {
|
|
|
|
d, adaptor := initTestTSL2561Driver()
|
|
|
|
d.Start()
|
|
|
|
adaptor.i2cWriteImpl = func([]byte) (int, error) {
|
|
|
|
return 0, errors.New("write error")
|
|
|
|
}
|
|
|
|
gobottest.Assert(t, d.SetGain(TSL2561Gain16X), errors.New("write error"))
|
|
|
|
}
|