hybridgroup.gobot/sysfs/i2c_device_test.go

157 lines
3.2 KiB
Go
Raw Normal View History

2014-10-31 07:06:04 +08:00
package sysfs
import (
"os"
"testing"
"gobot.io/x/gobot/gobottest"
2014-10-31 07:06:04 +08:00
)
func TestNewI2cDeviceClose(t *testing.T) {
fs := NewMockFilesystem([]string{
"/dev/i2c-1",
})
SetFilesystem(fs)
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
gobottest.Assert(t, i.Close(), nil)
}
2014-10-31 07:06:04 +08:00
func TestNewI2cDevice(t *testing.T) {
2014-11-08 08:21:39 +08:00
fs := NewMockFilesystem([]string{})
SetFilesystem(fs)
i, err := NewI2cDevice(os.DevNull)
gobottest.Assert(t, err.Error(), " : /dev/null: No such file.")
2014-11-08 08:21:39 +08:00
fs = NewMockFilesystem([]string{
"/dev/i2c-1",
})
SetFilesystem(fs)
i, err = NewI2cDevice("/dev/i2c-1")
gobottest.Assert(t, err, nil)
2014-11-08 08:21:39 +08:00
2014-11-08 08:56:13 +08:00
SetSyscall(&MockSyscall{})
2014-11-08 08:21:39 +08:00
i, err = NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
gobottest.Assert(t, i.SetAddress(0xff), nil)
buf := []byte{0x01, 0x02, 0x03}
n, err := i.Write(buf)
gobottest.Assert(t, n, len(buf))
gobottest.Assert(t, err, nil)
buf = make([]byte, 4)
n, err = i.Read(buf)
gobottest.Assert(t, n, 3)
gobottest.Assert(t, err, nil)
}
func TestNewI2cDeviceReadByteNotSupported(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
_, err = i.ReadByte()
gobottest.Assert(t, err.Error(), "SMBus read byte not supported")
}
func TestNewI2cDeviceWriteByteNotSupported(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
err = i.WriteByte(0x01)
gobottest.Assert(t, err.Error(), "SMBus write byte not supported")
}
func TestNewI2cDeviceReadByteDataNotSupported(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
_, err = i.ReadByteData(0x01)
gobottest.Assert(t, err.Error(), "SMBus read byte data not supported")
}
func TestNewI2cDeviceWriteByteDataNotSupported(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
err = i.WriteByteData(0x01, 0x01)
gobottest.Assert(t, err.Error(), "SMBus write byte data not supported")
}
func TestNewI2cDeviceReadWordDataNotSupported(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
_, err = i.ReadWordData(0x01)
gobottest.Assert(t, err.Error(), "SMBus read word data not supported")
}
func TestNewI2cDeviceWriteWordDataNotSupported(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
err = i.WriteWordData(0x01, 0x01)
gobottest.Assert(t, err.Error(), "SMBus write word data not supported")
}
func TestNewI2cDeviceWrite(t *testing.T) {
SetSyscall(&MockSyscall{})
i, err := NewI2cDevice("/dev/i2c-1")
var _ I2cDevice = i
gobottest.Assert(t, err, nil)
i.SetAddress(0xff)
buf := []byte{0x01, 0x02, 0x03}
n, err := i.Write(buf)
gobottest.Assert(t, n, len(buf))
gobottest.Assert(t, err, nil)
2014-10-31 07:06:04 +08:00
}