hybridgroup.gobot/platforms/gpio/motor_driver_test.go

111 lines
2.3 KiB
Go
Raw Normal View History

2014-04-28 10:34:16 +08:00
package gpio
import (
2014-06-14 03:39:02 +08:00
"testing"
2014-09-28 02:45:52 +08:00
"github.com/hybridgroup/gobot"
2014-04-28 10:34:16 +08:00
)
2014-06-14 07:01:39 +08:00
func initTestMotorDriver() *MotorDriver {
return NewMotorDriver(newGpioTestAdaptor("adaptor"), "bot")
2014-06-14 03:39:02 +08:00
}
2014-12-17 05:42:48 +08:00
func TestMotorDriver(t *testing.T) {
d := NewMotorDriver(newGpioTestAdaptor("adaptor"), "bot")
gobot.Assert(t, d.Name(), "bot")
gobot.Assert(t, d.Connection().Name(), "adaptor")
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverStart(t *testing.T) {
d := initTestMotorDriver()
gobot.Assert(t, len(d.Start()), 0)
2014-06-14 03:39:02 +08:00
}
2014-06-14 07:01:39 +08:00
func TestMotorDriverHalt(t *testing.T) {
d := initTestMotorDriver()
gobot.Assert(t, len(d.Halt()), 0)
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
gobot.Assert(t, d.IsOn(), true)
2014-06-14 07:01:39 +08:00
d.CurrentMode = "analog"
d.CurrentSpeed = 100
gobot.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()
gobot.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()
gobot.Assert(t, d.CurrentState, uint8(1))
2014-06-14 07:01:39 +08:00
d.CurrentMode = "analog"
d.CurrentSpeed = 0
d.On()
gobot.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()
gobot.Assert(t, d.CurrentState, uint8(0))
2014-06-14 07:01:39 +08:00
d.CurrentMode = "analog"
d.CurrentSpeed = 100
d.Off()
gobot.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()
gobot.Assert(t, d.IsOn(), true)
2014-06-14 07:01:39 +08:00
d.Toggle()
gobot.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)
gobot.Assert(t, d.CurrentSpeed, uint8(100))
gobot.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)
gobot.Assert(t, d.CurrentSpeed, uint8(100))
gobot.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
}