forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservo_driver_test.go
89 lines (69 loc) · 1.96 KB
/
servo_driver_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package gpio
import (
"errors"
"strings"
"testing"
"gobot.io/x/gobot"
"gobot.io/x/gobot/gobottest"
)
var _ gobot.Driver = (*ServoDriver)(nil)
func initTestServoDriver() *ServoDriver {
return NewServoDriver(newGpioTestAdaptor(), "1")
}
func TestServoDriver(t *testing.T) {
var err interface{}
a := newGpioTestAdaptor()
d := NewServoDriver(a, "1")
gobottest.Assert(t, d.Pin(), "1")
gobottest.Refute(t, d.Connection(), nil)
a.testAdaptorServoWrite = func() (err error) {
return errors.New("pwm error")
}
err = d.Command("Min")(nil)
gobottest.Assert(t, err.(error), errors.New("pwm error"))
err = d.Command("Center")(nil)
gobottest.Assert(t, err.(error), errors.New("pwm error"))
err = d.Command("Max")(nil)
gobottest.Assert(t, err.(error), errors.New("pwm error"))
err = d.Command("Move")(map[string]interface{}{"angle": 100.0})
gobottest.Assert(t, err.(error), errors.New("pwm error"))
}
func TestServoDriverStart(t *testing.T) {
d := initTestServoDriver()
gobottest.Assert(t, d.Start(), nil)
}
func TestServoDriverHalt(t *testing.T) {
d := initTestServoDriver()
gobottest.Assert(t, d.Halt(), nil)
}
func TestServoDriverMove(t *testing.T) {
d := initTestServoDriver()
d.Move(100)
gobottest.Assert(t, d.CurrentAngle, uint8(100))
err := d.Move(200)
gobottest.Assert(t, err, ErrServoOutOfRange)
}
func TestServoDriverMin(t *testing.T) {
d := initTestServoDriver()
d.Min()
gobottest.Assert(t, d.CurrentAngle, uint8(0))
}
func TestServoDriverMax(t *testing.T) {
d := initTestServoDriver()
d.Max()
gobottest.Assert(t, d.CurrentAngle, uint8(180))
}
func TestServoDriverCenter(t *testing.T) {
d := initTestServoDriver()
d.Center()
gobottest.Assert(t, d.CurrentAngle, uint8(90))
}
func TestServoDriverDefaultName(t *testing.T) {
d := initTestServoDriver()
gobottest.Assert(t, strings.HasPrefix(d.Name(), "Servo"), true)
}
func TestServoDriverSetName(t *testing.T) {
d := initTestServoDriver()
d.SetName("mybot")
gobottest.Assert(t, d.Name(), "mybot")
}