robocar-camera/camera/camera_test.go

84 lines
1.8 KiB
Go
Raw Normal View History

2019-12-18 23:08:07 +00:00
package camera
import (
"bytes"
"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"
"sync"
2019-12-18 23:08:07 +00:00
"testing"
"time"
)
type fakeVideoSource struct {
}
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) {
var muPubEvents sync.Mutex
publishedEvents := make(map[string]*[]byte)
oldPublish := publish
defer func() {
2020-01-28 22:30:38 +00:00
publish = oldPublish
}()
publish = func(_ mqtt.Client, topic string, payload *[]byte) {
muPubEvents.Lock()
defer muPubEvents.Unlock()
publishedEvents[topic] = payload
}
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,
publishFrequency: 1000,
imgBuffered: &imgBuffer,
}
go part.Start()
time.Sleep(5 * time.Millisecond)
2019-12-18 23:08:07 +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 {
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")
}
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
}
_, 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)
}
}