-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
dc_motor_test.go
1024 lines (899 loc) · 26.2 KB
/
dc_motor_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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright ©2016 The ev3go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package ev3dev_test
import (
"errors"
"fmt"
"reflect"
"sort"
"strconv"
"strings"
"sync"
"syscall"
"testing"
"time"
"github.com/ev3go/sisyphus"
. "github.com/ev3go/ev3dev"
)
// dcMotor is a dcMotor sysfs directory.
type dcMotor struct {
address string
driver string
// mu protects the underscore
// prefix attributes below.
mu sync.Mutex
_lastCommand string
_commands []string
_rampUpSet time.Duration
_rampDownSet time.Duration
_timeSet time.Duration
_dutyCycle int
_dutyCycleSet int
_polarity Polarity
_state MotorState
_lastStopAction string
_stopActions []string
_uevent map[string]string
t *testing.T
}
func (m *dcMotor) commands() []string {
m.mu.Lock()
defer m.mu.Unlock()
return m._commands
}
func (m *dcMotor) lastCommand() string {
m.mu.Lock()
defer m.mu.Unlock()
return m._lastCommand
}
func (m *dcMotor) dutyCycle() int {
m.mu.Lock()
defer m.mu.Unlock()
return m._dutyCycle
}
func (m *dcMotor) setDutyCycle(sp int) {
m.mu.Lock()
m._dutyCycle = sp
m.mu.Unlock()
}
func (m *dcMotor) state() MotorState {
m.mu.Lock()
defer m.mu.Unlock()
return m._state
}
func (m *dcMotor) setState(s MotorState) {
m.mu.Lock()
m._state = s
m.mu.Unlock()
}
func (m *dcMotor) lastStopAction() string {
m.mu.Lock()
defer m.mu.Unlock()
return m._lastStopAction
}
func (m *dcMotor) stopActions() []string {
m.mu.Lock()
defer m.mu.Unlock()
return m._stopActions
}
func (m *dcMotor) uevent() map[string]string {
m.mu.Lock()
defer m.mu.Unlock()
return m._uevent
}
// dcMotorAddress is the address attribute.
type dcMotorAddress dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorAddress) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m.address)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorAddress) Size() (int64, error) {
return size(m.address), nil
}
// dcMotorDriver is the driver_name attribute.
type dcMotorDriver dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorDriver) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m.driver)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorDriver) Size() (int64, error) {
return size(m.driver), nil
}
// dcMotorCommands is the commands attribute.
type dcMotorCommands dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorCommands) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorCommands) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorCommands) String() string {
m.mu.Lock()
defer m.mu.Unlock()
sort.Strings(m._commands)
return strings.Join(m._commands, " ")
}
// dcMotorCommand is the command attribute.
type dcMotorCommand dcMotor
// Truncate is a no-op.
func (m *dcMotorCommand) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorCommand) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
command := string(chomp(b))
for _, c := range m._commands {
if command == c {
m._lastCommand = command
return len(b), nil
}
}
return len(b), syscall.EINVAL
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorCommand) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorCommand) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return m._lastCommand
}
// dcMotorStopActions is the stop_actions attribute.
type dcMotorStopActions dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorStopActions) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorStopActions) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorStopActions) String() string {
m.mu.Lock()
defer m.mu.Unlock()
sort.Strings(m._stopActions)
return strings.Join(m._stopActions, " ")
}
// dcMotorDutyCycle is the duty_cycle attribute.
type dcMotorDutyCycle dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorDutyCycle) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorDutyCycle) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorDutyCycle) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return strconv.Itoa(m._dutyCycle)
}
// dcMotorDutyCycleSet is the duty_cycle_sp attribute.
type dcMotorDutyCycleSet dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorDutyCycleSet) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Truncate is a no-op.
func (m *dcMotorDutyCycleSet) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorDutyCycleSet) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
i, err := strconv.Atoi(string(chomp(b)))
if err != nil {
m.t.Errorf("unexpected error: %v", err)
return len(b), syscall.EINVAL
}
m._dutyCycleSet = i
return len(b), nil
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorDutyCycleSet) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorDutyCycleSet) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return strconv.Itoa(m._dutyCycleSet)
}
// dcMotorPolarity is the polarity attribute.
type dcMotorPolarity dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorPolarity) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Truncate is a no-op.
func (m *dcMotorPolarity) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorPolarity) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
p := Polarity(b)
switch p {
case "normal", "inversed":
m._polarity = p
default:
m.t.Errorf("unexpected error: %q", b)
return len(b), syscall.EINVAL
}
return len(b), nil
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorPolarity) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorPolarity) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return string(m._polarity)
}
// dcMotorRampUpSet is the ramp_up_sp attribute.
type dcMotorRampUpSet dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorRampUpSet) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Truncate is a no-op.
func (m *dcMotorRampUpSet) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorRampUpSet) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
i, err := strconv.Atoi(string(chomp(b)))
if i < 0 {
err = errors.New("ev3dev: negative duration")
}
if time.Duration(i)*time.Millisecond > 10*time.Second {
err = errors.New("ev3dev: duration out of range")
}
if err != nil {
m.t.Errorf("unexpected error: %v", err)
return len(b), syscall.EINVAL
}
m._rampUpSet = time.Duration(i) * time.Millisecond
return len(b), nil
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorRampUpSet) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorRampUpSet) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return strconv.Itoa(int(m._rampUpSet / time.Millisecond))
}
// dcMotorRampDownSet is the ramp_down_sp attribute.
type dcMotorRampDownSet dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorRampDownSet) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Truncate is a no-op.
func (m *dcMotorRampDownSet) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorRampDownSet) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
i, err := strconv.Atoi(string(chomp(b)))
if i < 0 {
err = errors.New("ev3dev: negative duration")
}
if time.Duration(i)*time.Millisecond > 10*time.Second {
err = errors.New("ev3dev: duration out of range")
}
if err != nil {
m.t.Errorf("unexpected error: %v", err)
return len(b), syscall.EINVAL
}
m._rampDownSet = time.Duration(i) * time.Millisecond
return len(b), nil
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorRampDownSet) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorRampDownSet) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return strconv.Itoa(int(m._rampDownSet / time.Millisecond))
}
// dcMotorState is the state attribute.
type dcMotorState dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorState) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorState) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorState) String() string {
m.mu.Lock()
defer m.mu.Unlock()
s := strings.Replace(m._state.String(), "|", " ", -1)
if s == MotorState(0).String() {
return ""
}
return s
}
// dcMotorStopAction is the stop_actions attribute.
type dcMotorStopAction dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorStopAction) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Truncate is a no-op.
func (m *dcMotorStopAction) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorStopAction) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
stopAction := string(chomp(b))
for _, c := range m._stopActions {
if stopAction == c {
m._lastStopAction = stopAction
return len(b), nil
}
}
return len(b), syscall.EINVAL
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorStopAction) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorStopAction) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return m._lastStopAction
}
// dcMotorTimeSet is the time_sp attribute.
type dcMotorTimeSet dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorTimeSet) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Truncate is a no-op.
func (m *dcMotorTimeSet) Truncate(_ int64) error { return nil }
// WriteAt satisfies the io.WriterAt interface.
func (m *dcMotorTimeSet) WriteAt(b []byte, off int64) (int, error) {
m.mu.Lock()
defer m.mu.Unlock()
i, err := strconv.Atoi(string(chomp(b)))
if i < 0 {
err = errors.New("ev3dev: negative duration")
}
if err != nil {
m.t.Errorf("unexpected error: %v", err)
return len(b), syscall.EINVAL
}
m._timeSet = time.Duration(i) * time.Millisecond
return len(b), nil
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorTimeSet) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorTimeSet) String() string {
m.mu.Lock()
defer m.mu.Unlock()
return strconv.Itoa(int(m._timeSet / time.Millisecond))
}
// dcMotorUevent is the uevent attribute.
type dcMotorUevent dcMotor
// ReadAt satisfies the io.ReaderAt interface.
func (m *dcMotorUevent) ReadAt(b []byte, offset int64) (int, error) {
return readAt(b, offset, m)
}
// Size returns the length of the backing data and a nil error.
func (m *dcMotorUevent) Size() (int64, error) {
return size(m), nil
}
// String returns a string representation of the attribute.
func (m *dcMotorUevent) String() string {
m.mu.Lock()
defer m.mu.Unlock()
e := make([]string, 0, len(m._uevent))
for k, v := range m._uevent {
e = append(e, fmt.Sprintf("%s=%s", k, v))
}
sort.Strings(e)
return strings.Join(e, "\n")
}
type dcMotorConn struct {
id int
dcMotor *dcMotor
}
func connectedDCMotors(c ...dcMotorConn) []sisyphus.Node {
n := make([]sisyphus.Node, len(c))
for i, m := range c {
n[i] = d(fmt.Sprintf("motor%d", m.id), 0775).With(
ro(AddressName, 0444, (*dcMotorAddress)(m.dcMotor)),
ro(DriverNameName, 0444, (*dcMotorDriver)(m.dcMotor)),
ro(CommandsName, 0444, (*dcMotorCommands)(m.dcMotor)),
wo(CommandName, 0222, (*dcMotorCommand)(m.dcMotor)),
rw(PolarityName, 0666, (*dcMotorPolarity)(m.dcMotor)),
ro(DutyCycleName, 0444, (*dcMotorDutyCycle)(m.dcMotor)),
rw(DutyCycleSetpointName, 0666, (*dcMotorDutyCycleSet)(m.dcMotor)),
rw(RampUpSetpointName, 0666, (*dcMotorRampUpSet)(m.dcMotor)),
rw(RampDownSetpointName, 0666, (*dcMotorRampDownSet)(m.dcMotor)),
ro(StateName, 0444, (*dcMotorState)(m.dcMotor)),
ro(StopActionsName, 0444, (*dcMotorStopActions)(m.dcMotor)),
rw(StopActionName, 0666, (*dcMotorStopAction)(m.dcMotor)),
rw(TimeSetpointName, 0666, (*dcMotorTimeSet)(m.dcMotor)),
ro(UeventName, 0444, (*dcMotorUevent)(m.dcMotor)),
)
}
return n
}
func dcmotorsysfs(m ...dcMotorConn) *sisyphus.FileSystem {
return sisyphus.NewFileSystem(0775, clock).With(
d("sys", 0775).With(
d("class", 0775).With(
d("dc-motor", 0775).With(
connectedDCMotors(m...)...,
),
),
),
).Sync()
}
func TestDCMotor(t *testing.T) {
const driver = "rcx-motor"
conn := []dcMotorConn{
{
id: 5,
dcMotor: &dcMotor{
address: "outC",
driver: driver,
_commands: []string{
"run-forever",
"run-timed",
"run-direct",
"stop",
},
_lastStopAction: "coast",
_stopActions: []string{
"coast",
"brake",
},
_uevent: map[string]string{
"LEGO_ADDRESS": "outC",
"LEGO_DRIVER_NAME": driver,
},
t: t,
},
},
{
id: 7,
dcMotor: &dcMotor{
address: "outD",
driver: driver,
t: t,
},
},
}
fs := dcmotorsysfs(conn...)
unmount := serve(fs, t)
defer unmount()
t.Run("new DCMotor", func(t *testing.T) {
for _, r := range []struct{ port, driver string }{
{port: "", driver: conn[0].dcMotor.driver},
{port: conn[0].dcMotor.address, driver: conn[0].dcMotor.driver},
{port: conn[0].dcMotor.address, driver: ""},
} {
got, err := DCMotorFor(r.port, r.driver)
if r.driver == driver {
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
} else {
merr, ok := err.(DriverMismatch)
if !ok {
t.Errorf("unexpected error type for driver mismatch: got:%T want:%T", err, merr)
}
if merr.Have != driver {
t.Errorf("unexpected value for have driver error: got:%q want:%q", merr.Have, conn[0].dcMotor.driver)
}
}
ok, err := IsConnected(got)
if err != nil {
t.Errorf("unexpected error getting connection status:%v", err)
}
if !ok {
t.Error("expected device to be connected")
}
gotAddr, err := AddressOf(got)
if err != nil {
t.Errorf("unexpected error getting address: %v", err)
}
wantAddr := conn[0].dcMotor.address
if gotAddr != wantAddr {
t.Errorf("unexpected value for address: got:%q want:%q", gotAddr, wantAddr)
}
gotDriver, err := DriverFor(got)
if err != nil {
t.Errorf("unexpected error getting driver name:%v", err)
}
wantDriver := conn[0].dcMotor.driver
if gotDriver != wantDriver {
t.Errorf("unexpected value for driver name: got:%q want:%q", gotDriver, wantDriver)
}
methodDriver := got.Driver()
if methodDriver != wantDriver {
t.Errorf("unexpected value for driver name: got:%q want:%q", methodDriver, wantDriver)
}
}
})
t.Run("Next", func(t *testing.T) {
m, err := DCMotorFor(conn[0].dcMotor.address, conn[0].dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
got, err := m.Next()
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
ok, err := IsConnected(got)
if err != nil {
t.Errorf("unexpected error getting connection status:%v", err)
}
if !ok {
t.Error("expected device to be connected")
}
gotAddr, err := AddressOf(got)
if err != nil {
t.Errorf("unexpected error getting address: %v", err)
}
wantAddr := conn[1].dcMotor.address
if gotAddr != wantAddr {
t.Errorf("unexpected value for address: got:%q want:%q", gotAddr, wantAddr)
}
gotDriver, err := DriverFor(got)
if err != nil {
t.Errorf("unexpected error getting driver name:%v", err)
}
wantDriver := conn[1].dcMotor.driver
if gotDriver != wantDriver {
t.Errorf("unexpected value for driver name: got:%q want:%q", gotDriver, wantDriver)
}
})
t.Run("FindAfter", func(t *testing.T) {
var last *DCMotor
for _, c := range conn {
got := new(DCMotor)
err := FindAfter(last, got, driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
last = got
ok, err := IsConnected(got)
if err != nil {
t.Errorf("unexpected error getting connection status:%v", err)
}
if !ok {
t.Error("expected device to be connected")
}
gotAddr, err := AddressOf(got)
if err != nil {
t.Errorf("unexpected error getting address: %v", err)
}
wantAddr := c.dcMotor.address
if gotAddr != wantAddr {
t.Errorf("unexpected value for address: got:%q want:%q", gotAddr, wantAddr)
}
gotDriver, err := DriverFor(got)
if err != nil {
t.Errorf("unexpected error getting driver name:%v", err)
}
wantDriver := c.dcMotor.driver
if gotDriver != wantDriver {
t.Errorf("unexpected value for driver name: got:%q want:%q", gotDriver, wantDriver)
}
}
})
t.Run("Command", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
commands := m.Commands()
want := c.dcMotor.commands()
if !reflect.DeepEqual(commands, want) {
t.Errorf("unexpected commands value: got:%q want:%q", commands, want)
}
for _, command := range commands {
err := m.Command(command).Err()
if err != nil {
t.Errorf("unexpected error for command %q: %v", command, err)
}
got := c.dcMotor.lastCommand()
want := command
if got != want {
t.Errorf("unexpected command value: got:%q want:%q", got, want)
}
}
for _, command := range []string{"invalid", "another"} {
err := m.Command(command).Err()
if err == nil {
t.Errorf("expected error for command %q", command)
}
got := c.dcMotor.lastCommand()
dontwant := command
if got == dontwant {
t.Errorf("unexpected invalid command value: got:%q don't want:%q", got, dontwant)
}
}
}
})
t.Run("Duty cycle", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, sp := range []int{0, 64, 128, 192, 255} {
c.dcMotor.setDutyCycle(sp)
got, err := m.DutyCycle()
if err != nil {
t.Errorf("unexpected error: %v", err)
}
want := c.dcMotor.dutyCycle()
if got != want {
t.Errorf("unexpected duty cycle value: got:%d want:%d", got, want)
}
}
}
})
t.Run("Duty cycle setpoint", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, v := range []int{-100, -50, 0, 50, 100} {
err := m.SetDutyCycleSetpoint(v).Err()
if err != nil {
t.Errorf("unexpected error for duty cycle setpoint %d: %v", v, err)
}
got, err := m.DutyCycleSetpoint()
if err != nil {
t.Errorf("unexpected error: %v", err)
}
want := v
if got != want {
t.Errorf("unexpected duty cycle setpoint value: got:%d want:%d", got, want)
}
}
for _, v := range []int{-101, 101} {
err := m.SetDutyCycleSetpoint(v).Err()
if err == nil {
t.Errorf("expected error for duty cycle setpoint %d", v)
}
}
}
})
t.Run("Polarity", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, polarity := range []Polarity{"normal", "inversed"} {
err := m.SetPolarity(polarity).Err()
if err != nil {
t.Errorf("unexpected error for set polarity %q: %v", polarity, err)
}
got, err := m.Polarity()
if err != nil {
t.Errorf("unexpected error for polarity %q: %v", polarity, err)
}
want := polarity
if got != want {
t.Errorf("unexpected polarity value: got:%q want:%q", got, want)
}
}
for _, polarity := range []Polarity{"invalid", "another"} {
err := m.SetPolarity(polarity).Err()
if err == nil {
t.Errorf("expected error for set polarity %q", polarity)
}
got, err := m.Polarity()
if err != nil {
t.Errorf("unexpected error for polarity %q: %v", polarity, err)
}
dontwant := polarity
if got == dontwant {
t.Errorf("unexpected invalid polarity value: got:%q don't want:%q", got, dontwant)
}
}
}
})
t.Run("Ramp up setpoint", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, v := range []time.Duration{time.Millisecond, time.Second} {
err := m.SetRampUpSetpoint(v).Err()
if err != nil {
t.Errorf("unexpected error for ramp up setpoint %d: %v", v, err)
}
got, err := m.RampUpSetpoint()
if err != nil {
t.Errorf("unexpected error: %v", err)
}
want := v
if got != want {
t.Errorf("unexpected ramp up setpoint value: got:%v want:%v", got, want)
}
}
for _, v := range []time.Duration{-time.Millisecond, -time.Second, -time.Minute, time.Minute} {
err := m.SetRampUpSetpoint(v).Err()
if err == nil {
t.Errorf("expected error for set position setpoint %d", v)
}
}
}
})
t.Run("Ramp down setpoint", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, v := range []time.Duration{time.Millisecond, time.Second} {
err := m.SetRampDownSetpoint(v).Err()
if err != nil {
t.Errorf("unexpected error for ramp down setpoint %d: %v", v, err)
}
got, err := m.RampDownSetpoint()
if err != nil {
t.Errorf("unexpected error: %v", err)
}
want := v
if got != want {
t.Errorf("unexpected ramp down setpoint value: got:%v want:%v", got, want)
}
}
for _, v := range []time.Duration{-time.Millisecond, -time.Second, -time.Minute, time.Minute} {
err := m.SetRampDownSetpoint(v).Err()
if err == nil {
t.Errorf("expected error for set position setpoint %d", v)
}
}
}
})
t.Run("State", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, s := range []MotorState{
0,
Running,
Running | Ramping,
Running | Stalled,
Running | Overloaded,
Running | Stalled | Overloaded,
Holding,
} {
c.dcMotor.setState(s)
got, err := m.State()
if err != nil {
t.Errorf("unexpected error: %v", err)
}
want := c.dcMotor.state()
if got != want {
t.Errorf("unexpected state value: got:%v want:%v", got, want)
}
}
}
})
t.Run("Stop action", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
stopActions := m.StopActions()
want := c.dcMotor.stopActions()
if !reflect.DeepEqual(stopActions, want) {
t.Errorf("unexpected stop actions value: got:%q want:%q", stopActions, want)
}
for _, stopAction := range stopActions {
err := m.SetStopAction(stopAction).Err()
if err != nil {
t.Errorf("unexpected error for set stop action %q: %v", stopAction, err)
}
got := c.dcMotor.lastStopAction()
want := stopAction
if got != want {
t.Errorf("unexpected stop action value: got:%q want:%q", got, want)
}
got, err = m.StopAction()
if err != nil {
t.Errorf("unexpected error for stop action %q: %v", stopAction, err)
}
if got != want {
t.Errorf("unexpected stop action value: got:%q want:%q", got, want)
}
}
for _, stopAction := range []string{"invalid", "another"} {
err := m.SetStopAction(stopAction).Err()
if err == nil {
t.Errorf("expected error for set stop action %q", stopAction)
}
got := c.dcMotor.lastStopAction()
dontwant := stopAction
if got == dontwant {
t.Errorf("unexpected invalid stop action value: got:%q don't want:%q", got, dontwant)
}
}
}
})
t.Run("Time setpoint", func(t *testing.T) {
for _, c := range conn {
m, err := DCMotorFor(c.dcMotor.address, c.dcMotor.driver)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
for _, v := range []time.Duration{time.Millisecond, time.Second, time.Minute} {
err := m.SetTimeSetpoint(v).Err()
if err != nil {
t.Errorf("unexpected error for time setpoint %d: %v", v, err)
}
got, err := m.TimeSetpoint()
if err != nil {
t.Errorf("unexpected error: %v", err)
}
want := v
if got != want {
t.Errorf("unexpected time setpoint value: got:%v want:%v", got, want)
}
}
for _, v := range []time.Duration{-time.Millisecond, -time.Second, -time.Minute} {
err := m.SetTimeSetpoint(v).Err()