hybridgroup.gobot/platforms/opencv/camera_driver_test.go

45 lines
874 B
Go

package opencv
import (
"testing"
"time"
"github.com/hybridgroup/gobot"
)
func initTestCameraDriver() *CameraDriver {
d := NewCameraDriver("bot", "")
d.start = func(c *CameraDriver) (err error) {
d.camera = &testCapture{}
return nil
}
return d
}
func TestCameraDriverStart(t *testing.T) {
sem := make(chan bool)
d := initTestCameraDriver()
gobot.Assert(t, len(d.Start()), 0)
gobot.On(d.Event("frame"), func(data interface{}) {
sem <- true
})
select {
case <-sem:
case <-time.After(100 * time.Millisecond):
t.Errorf("Event \"frame\" was not published")
}
}
func TestCameraDriver(t *testing.T) {
d := NewCameraDriver("bot", "")
gobot.Assert(t, len(d.Start()), 0)
d = NewCameraDriver("bot", true)
gobot.Refute(t, len(d.Start()), 0)
}
func TestCameraDriverHalt(t *testing.T) {
d := initTestCameraDriver()
gobot.Assert(t, len(d.Halt()), 0)
}