2019-12-18 23:08:07 +00:00
|
|
|
package camera
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-12-31 16:14:05 +00:00
|
|
|
"github.com/cyrilix/robocar-protobuf/go/events"
|
|
|
|
mqtt "github.com/eclipse/paho.mqtt.golang"
|
|
|
|
"github.com/golang/protobuf/proto"
|
2019-12-18 23:08:07 +00:00
|
|
|
"gocv.io/x/gocv"
|
|
|
|
"image/jpeg"
|
|
|
|
"log"
|
2019-12-31 16:14:05 +00:00
|
|
|
"sync"
|
2019-12-18 23:08:07 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type fakeVideoSource struct {
|
2019-12-31 16:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f fakeVideoSource) Close() error {
|
|
|
|
return nil
|
2019-12-18 23:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f fakeVideoSource) Read(dest *gocv.Mat) bool {
|
|
|
|
img := gocv.IMRead("testdata/img.jpg", gocv.IMReadUnchanged)
|
|
|
|
if img.Total() == 0 {
|
|
|
|
log.Print("image read is empty")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
img.CopyTo(dest)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOpencvCameraPart(t *testing.T) {
|
2019-12-31 16:14:05 +00:00
|
|
|
var muPubEvents sync.Mutex
|
|
|
|
publishedEvents := make(map[string]*[]byte)
|
|
|
|
oldPublish := publish
|
|
|
|
defer func() {
|
2020-01-28 22:30:38 +00:00
|
|
|
publish = oldPublish
|
|
|
|
}()
|
2021-09-09 21:19:39 +00:00
|
|
|
waitEvent := sync.WaitGroup{}
|
|
|
|
waitEvent.Add(1)
|
2020-01-28 22:30:38 +00:00
|
|
|
publish = func(_ mqtt.Client, topic string, payload *[]byte) {
|
2019-12-31 16:14:05 +00:00
|
|
|
muPubEvents.Lock()
|
|
|
|
defer muPubEvents.Unlock()
|
|
|
|
publishedEvents[topic] = payload
|
2021-09-09 21:19:39 +00:00
|
|
|
waitEvent.Done()
|
2019-12-31 16:14:05 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 23:08:07 +00:00
|
|
|
const topic = "topic/test/camera"
|
|
|
|
imgBuffer := gocv.NewMat()
|
|
|
|
|
|
|
|
part := OpencvCameraPart{
|
2020-01-28 22:30:38 +00:00
|
|
|
client: nil,
|
2019-12-18 23:08:07 +00:00
|
|
|
vc: fakeVideoSource{},
|
|
|
|
topic: topic,
|
2021-09-09 21:19:39 +00:00
|
|
|
publishFrequency: 2, // Send 2 img/s for tests
|
2019-12-18 23:08:07 +00:00
|
|
|
imgBuffered: &imgBuffer,
|
|
|
|
}
|
|
|
|
|
|
|
|
go part.Start()
|
2021-09-09 21:19:39 +00:00
|
|
|
waitEvent.Wait()
|
2019-12-18 23:08:07 +00:00
|
|
|
|
2019-12-31 16:14:05 +00:00
|
|
|
var frameMsg events.FrameMessage
|
|
|
|
muPubEvents.Lock()
|
|
|
|
err := proto.Unmarshal(*(publishedEvents[topic]), &frameMsg)
|
2019-12-18 23:08:07 +00:00
|
|
|
if err != nil {
|
2019-12-31 16:14:05 +00:00
|
|
|
t.Errorf("unable to unmarshal pubblished frame")
|
|
|
|
}
|
|
|
|
muPubEvents.Unlock()
|
|
|
|
|
|
|
|
if frameMsg.GetId().GetName() != "camera" {
|
|
|
|
t.Errorf("bad name frame: %v, wants %v", frameMsg.GetId().GetName(), "camera")
|
|
|
|
}
|
2020-01-03 16:41:42 +00:00
|
|
|
if len(frameMsg.GetId().GetId()) != 13 {
|
|
|
|
t.Errorf("bad id length: %v, wants %v", len(frameMsg.GetId().GetId()), 13)
|
|
|
|
}
|
|
|
|
|
|
|
|
if frameMsg.GetId().GetCreatedAt() == nil {
|
|
|
|
t.Errorf("missin CreatedAt field")
|
2019-12-18 23:08:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 16:14:05 +00:00
|
|
|
_, err = jpeg.Decode(bytes.NewReader(frameMsg.GetFrame()))
|
2019-12-18 23:08:07 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("image published can't be decoded: %v", err)
|
|
|
|
}
|
|
|
|
}
|