1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00
hybridgroup.gobot/drivers/gpio/motor_driver_test.go

113 lines
2.4 KiB
Go
Raw Normal View History

2014-04-27 19:34:16 -07:00
package gpio
import (
2014-06-13 12:39:02 -07:00
"testing"
2014-09-27 11:45:52 -07:00
"gobot.io/x/gobot"
"gobot.io/x/gobot/gobottest"
2014-04-27 19:34:16 -07:00
)
var _ gobot.Driver = (*MotorDriver)(nil)
2014-06-13 16:01:39 -07:00
func initTestMotorDriver() *MotorDriver {
return NewMotorDriver(newGpioTestAdaptor(), "1")
2014-06-13 12:39:02 -07:00
}
2014-12-16 13:42:48 -08:00
func TestMotorDriver(t *testing.T) {
d := NewMotorDriver(newGpioTestAdaptor(), "1")
gobottest.Refute(t, d.Connection(), nil)
2014-12-16 13:42:48 -08:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverStart(t *testing.T) {
d := initTestMotorDriver()
gobottest.Assert(t, d.Start(), nil)
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverHalt(t *testing.T) {
d := initTestMotorDriver()
gobottest.Assert(t, d.Halt(), nil)
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverIsOn(t *testing.T) {
d := initTestMotorDriver()
d.CurrentMode = "digital"
d.CurrentState = 1
gobottest.Assert(t, d.IsOn(), true)
2014-06-13 16:01:39 -07:00
d.CurrentMode = "analog"
d.CurrentSpeed = 100
gobottest.Assert(t, d.IsOn(), true)
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverIsOff(t *testing.T) {
d := initTestMotorDriver()
d.Off()
gobottest.Assert(t, d.IsOff(), true)
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverOn(t *testing.T) {
d := initTestMotorDriver()
d.CurrentMode = "digital"
d.On()
gobottest.Assert(t, d.CurrentState, uint8(1))
2014-06-13 16:01:39 -07:00
d.CurrentMode = "analog"
d.CurrentSpeed = 0
d.On()
gobottest.Assert(t, d.CurrentSpeed, uint8(255))
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverOff(t *testing.T) {
d := initTestMotorDriver()
d.CurrentMode = "digital"
d.Off()
gobottest.Assert(t, d.CurrentState, uint8(0))
2014-06-13 16:01:39 -07:00
d.CurrentMode = "analog"
d.CurrentSpeed = 100
d.Off()
gobottest.Assert(t, d.CurrentSpeed, uint8(0))
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverToggle(t *testing.T) {
d := initTestMotorDriver()
d.Off()
d.Toggle()
gobottest.Assert(t, d.IsOn(), true)
2014-06-13 16:01:39 -07:00
d.Toggle()
gobottest.Assert(t, d.IsOn(), false)
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverMin(t *testing.T) {
d := initTestMotorDriver()
d.Min()
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverMax(t *testing.T) {
d := initTestMotorDriver()
d.Max()
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverSpeed(t *testing.T) {
d := initTestMotorDriver()
d.Speed(100)
2014-06-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07: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-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07: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-13 12:39:02 -07:00
}
2014-06-13 16:01:39 -07:00
func TestMotorDriverDirection(t *testing.T) {
d := initTestMotorDriver()
d.Direction("none")
d.DirectionPin = "2"
d.Direction("forward")
d.Direction("backward")
2014-06-13 12:39:02 -07:00
}