1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/platforms/opencv/window_driver_test.go

42 lines
930 B
Go
Raw Normal View History

2014-04-27 16:58:34 -07:00
package opencv
import (
2014-07-23 16:38:46 -07:00
"path"
"runtime"
"testing"
2014-06-13 13:45:50 -07:00
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/gobottest"
cv "github.com/lazywei/go-opencv/opencv"
)
var _ gobot.Driver = (*WindowDriver)(nil)
2014-06-13 16:01:39 -07:00
func initTestWindowDriver() *WindowDriver {
2014-07-23 16:54:39 -07:00
d := NewWindowDriver("bot")
return d
2014-06-13 13:45:50 -07:00
}
2014-12-19 11:57:35 -08:00
func TestWindowDriver(t *testing.T) {
d := initTestWindowDriver()
gobottest.Assert(t, d.Name(), "bot")
gobottest.Assert(t, d.Connection(), (gobot.Connection)(nil))
2014-12-19 11:57:35 -08:00
}
2014-06-13 16:01:39 -07:00
func TestWindowDriverStart(t *testing.T) {
d := initTestWindowDriver()
gobottest.Assert(t, len(d.Start()), 0)
2014-06-13 13:45:50 -07:00
}
2014-06-13 16:01:39 -07:00
func TestWindowDriverHalt(t *testing.T) {
d := initTestWindowDriver()
gobottest.Assert(t, len(d.Halt()), 0)
2014-06-13 13:45:50 -07:00
}
2014-07-16 16:37:58 -05:00
func TestWindowDriverShowImage(t *testing.T) {
d := initTestWindowDriver()
2014-07-23 16:38:46 -07:00
_, currentfile, _, _ := runtime.Caller(0)
image := cv.LoadImage(path.Join(path.Dir(currentfile), "lena-256x256.jpg"))
d.Start()
d.ShowImage(image)
2014-07-16 16:37:58 -05:00
}