hybridgroup.gobot/drivers/gpio/pir_motion_driver_test.go

88 lines
1.8 KiB
Go
Raw Normal View History

package gpio
import (
"errors"
"testing"
"time"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/gobottest"
)
var _ gobot.Driver = (*PIRMotionDriver)(nil)
const MOTION_TEST_DELAY = 150
func initTestPIRMotionDriver() *PIRMotionDriver {
return NewPIRMotionDriver(newGpioTestAdaptor(), "1")
}
func TestPIRMotionDriverHalt(t *testing.T) {
d := initTestPIRMotionDriver()
go func() {
<-d.halt
}()
gobottest.Assert(t, d.Halt(), nil)
}
func TestPIRMotionDriver(t *testing.T) {
d := NewPIRMotionDriver(newGpioTestAdaptor(), "1")
gobottest.Refute(t, d.Connection(), nil)
d = NewPIRMotionDriver(newGpioTestAdaptor(), "1", 30*time.Second)
gobottest.Assert(t, d.interval, 30*time.Second)
}
func TestPIRMotionDriverStart(t *testing.T) {
sem := make(chan bool, 0)
d := initTestPIRMotionDriver()
gobottest.Assert(t, d.Start(), nil)
d.Once(MotionDetected, func(data interface{}) {
gobottest.Assert(t, d.Active, true)
sem <- true
})
testAdaptorDigitalRead = func() (val int, err error) {
val = 1
return
}
select {
case <-sem:
case <-time.After(MOTION_TEST_DELAY * time.Millisecond):
t.Errorf("PIRMotionDriver Event \"MotionDetected\" was not published")
}
d.Once(MotionStopped, func(data interface{}) {
gobottest.Assert(t, d.Active, false)
sem <- true
})
testAdaptorDigitalRead = func() (val int, err error) {
val = 0
return
}
select {
case <-sem:
case <-time.After(MOTION_TEST_DELAY * time.Millisecond):
t.Errorf("PIRMotionDriver Event \"MotionStopped\" was not published")
}
testAdaptorDigitalRead = func() (val int, err error) {
err = errors.New("digital read error")
return
}
d.Once(Error, func(data interface{}) {
sem <- true
})
select {
case <-sem:
case <-time.After(MOTION_TEST_DELAY * time.Millisecond):
t.Errorf("PIRMotionDriver Event \"Error\" was not published")
}
}