hybridgroup.gobot/drivers/gpio/motor_driver_test.go

139 lines
2.9 KiB
Go
Raw Normal View History

2014-04-28 10:34:16 +08:00
package gpio
import (
"strings"
2014-06-14 03:39:02 +08:00
"testing"
2014-09-28 02:45:52 +08:00
"gobot.io/x/gobot"
"gobot.io/x/gobot/gobottest"
2014-04-28 10:34:16 +08:00
)
var _ gobot.Driver = (*MotorDriver)(nil)
2014-06-14 07:01:39 +08:00
func initTestMotorDriver() *MotorDriver {
return NewMotorDriver(newGpioTestAdaptor(), "1")
2014-06-14 03:39:02 +08:00
}
2014-12-17 05:42:48 +08:00
func TestMotorDriver(t *testing.T) {
d := NewMotorDriver(newGpioTestAdaptor(), "1")
gobottest.Refute(t, d.Connection(), nil)
2014-12-17 05:42:48 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverStart(t *testing.T) {
d := initTestMotorDriver()
gobottest.Assert(t, d.Start(), nil)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverHalt(t *testing.T) {
d := initTestMotorDriver()
gobottest.Assert(t, d.Halt(), nil)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverIsOn(t *testing.T) {
d := initTestMotorDriver()
d.CurrentMode = "digital"
d.CurrentState = 1
gobottest.Assert(t, d.IsOn(), true)
2014-06-14 07:01:39 +08:00
d.CurrentMode = "analog"
d.CurrentSpeed = 100
gobottest.Assert(t, d.IsOn(), true)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverIsOff(t *testing.T) {
d := initTestMotorDriver()
d.Off()
gobottest.Assert(t, d.IsOff(), true)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverOn(t *testing.T) {
d := initTestMotorDriver()
d.CurrentMode = "digital"
d.On()
gobottest.Assert(t, d.CurrentState, uint8(1))
2014-06-14 07:01:39 +08:00
d.CurrentMode = "analog"
d.CurrentSpeed = 0
d.On()
gobottest.Assert(t, d.CurrentSpeed, uint8(255))
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverOff(t *testing.T) {
d := initTestMotorDriver()
d.CurrentMode = "digital"
d.Off()
gobottest.Assert(t, d.CurrentState, uint8(0))
2014-06-14 07:01:39 +08:00
d.CurrentMode = "analog"
d.CurrentSpeed = 100
d.Off()
gobottest.Assert(t, d.CurrentSpeed, uint8(0))
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverToggle(t *testing.T) {
d := initTestMotorDriver()
d.Off()
d.Toggle()
gobottest.Assert(t, d.IsOn(), true)
2014-06-14 07:01:39 +08:00
d.Toggle()
gobottest.Assert(t, d.IsOn(), false)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverMin(t *testing.T) {
d := initTestMotorDriver()
d.Min()
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverMax(t *testing.T) {
d := initTestMotorDriver()
d.Max()
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverSpeed(t *testing.T) {
d := initTestMotorDriver()
d.Speed(100)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverForward(t *testing.T) {
d := initTestMotorDriver()
d.Forward(100)
gobottest.Assert(t, d.CurrentSpeed, uint8(100))
gobottest.Assert(t, d.CurrentDirection, "forward")
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverBackward(t *testing.T) {
d := initTestMotorDriver()
d.Backward(100)
gobottest.Assert(t, d.CurrentSpeed, uint8(100))
gobottest.Assert(t, d.CurrentDirection, "backward")
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverDirection(t *testing.T) {
d := initTestMotorDriver()
d.Direction("none")
d.DirectionPin = "2"
d.Direction("forward")
d.Direction("backward")
2014-06-14 03:39:02 +08:00
}
func TestMotorDriverDigital(t *testing.T) {
d := initTestMotorDriver()
d.SpeedPin = "" // Disable speed
d.CurrentMode = "digital"
d.ForwardPin = "2"
d.BackwardPin = "3"
d.On()
gobottest.Assert(t, d.CurrentState, uint8(1))
d.Off()
gobottest.Assert(t, d.CurrentState, uint8(0))
}
func TestMotorDriverDefaultName(t *testing.T) {
d := initTestMotorDriver()
gobottest.Assert(t, strings.HasPrefix(d.Name(), "Motor"), true)
}
func TestMotorDriverSetName(t *testing.T) {
d := initTestMotorDriver()
d.SetName("mybot")
gobottest.Assert(t, d.Name(), "mybot")
}