2019-11-30 18:03:07 +00:00
|
|
|
package arduino
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
2020-01-01 16:12:18 +00:00
|
|
|
"github.com/cyrilix/robocar-protobuf/go/events"
|
|
|
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
2022-01-03 09:24:06 +00:00
|
|
|
"google.golang.org/protobuf/proto"
|
2019-11-30 18:03:07 +00:00
|
|
|
"net"
|
2020-01-01 16:12:18 +00:00
|
|
|
"sync"
|
2019-11-30 18:03:07 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestArduinoPart_Update(t *testing.T) {
|
2020-01-01 16:12:18 +00:00
|
|
|
oldPublish := publish
|
|
|
|
defer func() { publish = oldPublish }()
|
|
|
|
|
|
|
|
publish = func(client mqtt.Client, topic string, payload *[]byte) {}
|
|
|
|
|
2019-11-30 18:03:07 +00:00
|
|
|
ln, err := net.Listen("tcp", ":8080")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to init connection for test")
|
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
defer func() {
|
|
|
|
if err := ln.Close(); err != nil {
|
|
|
|
t.Errorf("unable to close resource: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-11-30 18:03:07 +00:00
|
|
|
|
2020-01-01 16:12:18 +00:00
|
|
|
serialClient, err := net.Dial("tcp", "localhost:8080")
|
2019-11-30 18:03:07 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to init connection for test")
|
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
defer func() {
|
|
|
|
if err := serialClient.Close(); err != nil {
|
|
|
|
t.Errorf("unable to close resource: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
conn, err := ln.Accept()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to init connection for test")
|
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
defer func() {
|
|
|
|
if err := conn.Close(); err != nil {
|
|
|
|
t.Errorf("unable to close resource: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-11-30 18:03:07 +00:00
|
|
|
|
2020-01-01 16:12:18 +00:00
|
|
|
a := Part{client: nil, serial: conn, pubFrequency: 100}
|
|
|
|
go func() {
|
|
|
|
err := a.Start()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unsable to start part: %v", err)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}()
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
channel1, channel2, channel3, channel4, channel5, channel6, distanceCm := 678, 910, 1112, 1678, 1910, 112, 128
|
|
|
|
cases := []struct {
|
|
|
|
name, content string
|
|
|
|
expectedThrottle, expectedSteering float32
|
2020-01-01 16:12:18 +00:00
|
|
|
expectedDriveMode events.DriveMode
|
2019-11-30 18:03:07 +00:00
|
|
|
expectedSwitchRecord bool
|
|
|
|
}{
|
|
|
|
{"Good value",
|
|
|
|
fmt.Sprintf("12345,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Unparsable line",
|
|
|
|
"12350,invalid line\n",
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Switch record on",
|
|
|
|
fmt.Sprintf("12355,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, 998, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, true},
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
{"Switch record off",
|
|
|
|
fmt.Sprintf("12360,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, 1987, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Switch record off",
|
|
|
|
fmt.Sprintf("12365,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, 1850, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Switch record on",
|
|
|
|
fmt.Sprintf("12370,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, 1003, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, true},
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
{"DriveMode: user",
|
|
|
|
fmt.Sprintf("12375,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, channel5, 998, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"DriveMode: pilot",
|
|
|
|
fmt.Sprintf("12380,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, channel5, 1987, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_PILOT, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"DriveMode: pilot",
|
|
|
|
fmt.Sprintf("12385,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, channel5, 1850, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_PILOT, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
// DriveMode: user
|
|
|
|
{"DriveMode: user",
|
|
|
|
fmt.Sprintf("12390,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, channel2, channel3, channel4, channel5, 1003, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
{"Sterring: over left",
|
|
|
|
fmt.Sprintf("12395,%d,%d,%d,%d,%d,%d,50,%d\n", 99, channel2, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Sterring: left",
|
|
|
|
fmt.Sprintf("12400,%d,%d,%d,%d,%d,%d,50,%d\n", 998, channel2, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -0.93, events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Sterring: middle",
|
|
|
|
fmt.Sprintf("12405,%d,%d,%d,%d,%d,%d,50,%d\n", 1450, channel2, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -0.04, events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Sterring: right",
|
|
|
|
fmt.Sprintf("12410,%d,%d,%d,%d,%d,%d,50,%d\n", 1958, channel2, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., 0.96, events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Sterring: over right",
|
|
|
|
fmt.Sprintf("12415,%d,%d,%d,%d,%d,%d,50,%d\n", 2998, channel2, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., 1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
|
|
|
|
{"Throttle: over down",
|
|
|
|
fmt.Sprintf("12420,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, 99, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Throttle: down",
|
|
|
|
fmt.Sprintf("12425,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, 998, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-0.95, -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Throttle: stop",
|
|
|
|
fmt.Sprintf("12430,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, 1450, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
-0.03, -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Throttle: up",
|
|
|
|
fmt.Sprintf("12435,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, 1948, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
0.99, -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
{"Throttle: over up",
|
|
|
|
fmt.Sprintf("12440,%d,%d,%d,%d,%d,%d,50,%d\n", channel1, 2998, channel3, channel4, channel5, channel6, distanceCm),
|
2020-01-01 16:12:18 +00:00
|
|
|
1., -1., events.DriveMode_USER, false},
|
2019-11-30 18:03:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range cases {
|
2020-01-01 16:12:18 +00:00
|
|
|
w := bufio.NewWriter(serialClient)
|
2019-11-30 18:03:07 +00:00
|
|
|
_, err := w.WriteString(c.content)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to send test content: %v", c.content)
|
|
|
|
}
|
|
|
|
err = w.Flush()
|
|
|
|
if err != nil {
|
|
|
|
t.Error("unable to flush content")
|
|
|
|
}
|
|
|
|
|
2020-01-01 16:12:18 +00:00
|
|
|
time.Sleep(10 * time.Millisecond)
|
2019-11-30 18:03:07 +00:00
|
|
|
a.mutex.Lock()
|
|
|
|
if fmt.Sprintf("%0.2f", a.throttle) != fmt.Sprintf("%0.2f", c.expectedThrottle) {
|
|
|
|
t.Errorf("%s: bad throttle value, expected: %0.2f, actual: %.2f", c.name, c.expectedThrottle, a.throttle)
|
|
|
|
}
|
|
|
|
if fmt.Sprintf("%0.2f", a.steering) != fmt.Sprintf("%0.2f", c.expectedSteering) {
|
|
|
|
t.Errorf("%s: bad steering value, expected: %0.2f, actual: %.2f", c.name, c.expectedSteering, a.steering)
|
|
|
|
}
|
|
|
|
if a.driveMode != c.expectedDriveMode {
|
|
|
|
t.Errorf("%s: bad drive mode, expected: %v, actual:%v", c.name, c.expectedDriveMode, a.driveMode)
|
|
|
|
}
|
|
|
|
if a.ctrlRecord != c.expectedSwitchRecord {
|
|
|
|
t.Errorf("%s: bad switch record, expected: %v, actual:%v", c.name, c.expectedSwitchRecord, a.ctrlRecord)
|
|
|
|
}
|
|
|
|
a.mutex.Unlock()
|
|
|
|
}
|
|
|
|
}
|
2019-12-01 21:35:19 +00:00
|
|
|
|
|
|
|
func TestPublish(t *testing.T) {
|
2020-01-01 16:12:18 +00:00
|
|
|
oldPublish := publish
|
|
|
|
defer func() { publish = oldPublish }()
|
|
|
|
|
|
|
|
var muPublishedEvents sync.Mutex
|
|
|
|
pulishedEvents := make(map[string][]byte)
|
|
|
|
publish = func(client mqtt.Client, topic string, payload *[]byte) {
|
|
|
|
muPublishedEvents.Lock()
|
|
|
|
defer muPublishedEvents.Unlock()
|
|
|
|
pulishedEvents[topic] = *payload
|
|
|
|
}
|
|
|
|
|
2019-12-01 21:35:19 +00:00
|
|
|
ln, err := net.Listen("tcp", ":8080")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to init connection for test")
|
|
|
|
}
|
|
|
|
defer ln.Close()
|
|
|
|
|
|
|
|
client, err := net.Dial("tcp", "localhost:8080")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to init connection for test")
|
|
|
|
}
|
|
|
|
defer client.Close()
|
|
|
|
|
|
|
|
conn, err := ln.Accept()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to init connection for test")
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
|
|
|
pubFrequency := 100.
|
2020-01-27 18:21:26 +00:00
|
|
|
a := Part{
|
2022-01-03 09:24:06 +00:00
|
|
|
client: nil,
|
|
|
|
serial: conn,
|
|
|
|
pubFrequency: pubFrequency,
|
|
|
|
throttleTopic: "car/part/arduino/throttle",
|
|
|
|
steeringTopic: "car/part/arduino/steering",
|
|
|
|
driveModeTopic: "car/part/arduino/drive_mode",
|
2020-01-27 18:21:26 +00:00
|
|
|
switchRecordTopic: "car/part/arduino/switch_record",
|
2022-01-03 09:24:06 +00:00
|
|
|
cancel: make(chan interface{}),
|
2020-01-27 18:21:26 +00:00
|
|
|
}
|
2019-12-01 21:35:19 +00:00
|
|
|
go a.Start()
|
|
|
|
defer a.Stop()
|
|
|
|
|
|
|
|
cases := []struct {
|
2020-01-01 16:12:18 +00:00
|
|
|
throttle, steering float32
|
|
|
|
driveMode events.DriveMode
|
|
|
|
switchRecord bool
|
|
|
|
expectedThrottle events.ThrottleMessage
|
|
|
|
expectedSteering events.SteeringMessage
|
|
|
|
expectedDriveMode events.DriveModeMessage
|
|
|
|
expectedSwitchRecord events.SwitchRecordMessage
|
2019-12-01 21:35:19 +00:00
|
|
|
}{
|
2020-02-03 18:41:29 +00:00
|
|
|
{-1, 1, events.DriveMode_USER, true,
|
2020-01-01 16:12:18 +00:00
|
|
|
events.ThrottleMessage{Throttle: -1., Confidence: 1.},
|
|
|
|
events.SteeringMessage{Steering: 1.0, Confidence: 1.},
|
|
|
|
events.DriveModeMessage{DriveMode: events.DriveMode_USER},
|
|
|
|
events.SwitchRecordMessage{Enabled: false},
|
|
|
|
},
|
2020-02-03 18:41:29 +00:00
|
|
|
{0, 0, events.DriveMode_PILOT, false,
|
2020-01-01 16:12:18 +00:00
|
|
|
events.ThrottleMessage{Throttle: 0., Confidence: 1.},
|
|
|
|
events.SteeringMessage{Steering: 0., Confidence: 1.},
|
|
|
|
events.DriveModeMessage{DriveMode: events.DriveMode_PILOT},
|
|
|
|
events.SwitchRecordMessage{Enabled: true},
|
|
|
|
},
|
2020-02-03 18:41:29 +00:00
|
|
|
{0.87, -0.58, events.DriveMode_PILOT, false,
|
2020-01-01 16:12:18 +00:00
|
|
|
events.ThrottleMessage{Throttle: 0.87, Confidence: 1.},
|
|
|
|
events.SteeringMessage{Steering: -0.58, Confidence: 1.},
|
|
|
|
events.DriveModeMessage{DriveMode: events.DriveMode_PILOT},
|
|
|
|
events.SwitchRecordMessage{Enabled: true},
|
|
|
|
},
|
2019-12-01 21:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, c := range cases {
|
|
|
|
a.mutex.Lock()
|
|
|
|
a.throttle = c.throttle
|
|
|
|
a.steering = c.steering
|
|
|
|
a.driveMode = c.driveMode
|
|
|
|
a.ctrlRecord = c.switchRecord
|
|
|
|
a.mutex.Unlock()
|
|
|
|
|
|
|
|
time.Sleep(time.Second / time.Duration(int(pubFrequency)))
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
|
|
|
2020-01-01 16:12:18 +00:00
|
|
|
var throttleMsg events.ThrottleMessage
|
|
|
|
muPublishedEvents.Lock()
|
|
|
|
unmarshalMsg(t, pulishedEvents["car/part/arduino/throttle"], &throttleMsg)
|
|
|
|
muPublishedEvents.Unlock()
|
|
|
|
if throttleMsg.String() != c.expectedThrottle.String() {
|
|
|
|
t.Errorf("msg(car/part/arduino/throttle): %v, wants %v", throttleMsg, c.expectedThrottle)
|
2019-12-01 21:35:19 +00:00
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
|
|
|
|
var steeringMsg events.SteeringMessage
|
|
|
|
muPublishedEvents.Lock()
|
|
|
|
unmarshalMsg(t, pulishedEvents["car/part/arduino/steering"], &steeringMsg)
|
|
|
|
muPublishedEvents.Unlock()
|
|
|
|
if steeringMsg.String() != c.expectedSteering.String() {
|
|
|
|
t.Errorf("msg(car/part/arduino/steering): %v, wants %v", steeringMsg, c.expectedSteering)
|
2019-12-01 21:35:19 +00:00
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
|
|
|
|
var driveModeMsg events.DriveModeMessage
|
|
|
|
muPublishedEvents.Lock()
|
|
|
|
unmarshalMsg(t, pulishedEvents["car/part/arduino/drive_mode"], &driveModeMsg)
|
|
|
|
muPublishedEvents.Unlock()
|
|
|
|
if driveModeMsg.String() != c.expectedDriveMode.String() {
|
|
|
|
t.Errorf("msg(car/part/arduino/drive_mode): %v, wants %v", driveModeMsg, c.expectedDriveMode)
|
2019-12-01 21:35:19 +00:00
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
|
|
|
|
var switchRecordMsg events.SwitchRecordMessage
|
|
|
|
muPublishedEvents.Lock()
|
|
|
|
unmarshalMsg(t, pulishedEvents["car/part/arduino/switch_record"], &switchRecordMsg)
|
|
|
|
muPublishedEvents.Unlock()
|
|
|
|
if switchRecordMsg.String() != c.expectedSwitchRecord.String() {
|
|
|
|
t.Errorf("msg(car/part/arduino/switch_record): %v, wants %v", switchRecordMsg, c.expectedSwitchRecord)
|
2019-12-01 21:35:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-01 16:12:18 +00:00
|
|
|
|
|
|
|
func unmarshalMsg(t *testing.T, payload []byte, msg proto.Message) {
|
|
|
|
err := proto.Unmarshal(payload, msg)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("unable to unmarshal protobuf content to %T: %v", msg, err)
|
|
|
|
}
|
|
|
|
}
|