103 lines
2.2 KiB
Go
103 lines
2.2 KiB
Go
package gpio
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/gobottest"
|
|
)
|
|
|
|
const MAKEY_TEST_DELAY = 30
|
|
|
|
func initTestMakeyButtonDriver() *MakeyButtonDriver {
|
|
return NewMakeyButtonDriver(newGpioTestAdaptor("adaptor"), "bot", "1")
|
|
}
|
|
|
|
func TestMakeyButtonDriverHalt(t *testing.T) {
|
|
d := initTestMakeyButtonDriver()
|
|
go func() {
|
|
<-d.halt
|
|
}()
|
|
gobottest.Assert(t, len(d.Halt()), 0)
|
|
}
|
|
|
|
func TestMakeyButtonDriver(t *testing.T) {
|
|
d := NewMakeyButtonDriver(newGpioTestAdaptor("adaptor"), "bot", "1")
|
|
gobottest.Assert(t, d.Name(), "bot")
|
|
gobottest.Assert(t, d.Connection().Name(), "adaptor")
|
|
|
|
d = NewMakeyButtonDriver(newGpioTestAdaptor("adaptor"), "bot", "1", 30*time.Second)
|
|
gobottest.Assert(t, d.interval, MAKEY_TEST_DELAY*time.Second)
|
|
}
|
|
|
|
func TestMakeyButtonDriverStart(t *testing.T) {
|
|
sem := make(chan bool, 0)
|
|
d := initTestMakeyButtonDriver()
|
|
gobottest.Assert(t, len(d.Start()), 0)
|
|
|
|
testAdaptorDigitalRead = func() (val int, err error) {
|
|
val = 0
|
|
return
|
|
}
|
|
|
|
gobot.Once(d.Event(Push), func(data interface{}) {
|
|
gobottest.Assert(t, d.Active, true)
|
|
sem <- true
|
|
})
|
|
|
|
select {
|
|
case <-sem:
|
|
case <-time.After(MAKEY_TEST_DELAY * time.Millisecond):
|
|
t.Errorf("MakeyButton Event \"Push\" was not published")
|
|
}
|
|
|
|
testAdaptorDigitalRead = func() (val int, err error) {
|
|
val = 1
|
|
return
|
|
}
|
|
|
|
gobot.Once(d.Event(Release), func(data interface{}) {
|
|
gobottest.Assert(t, d.Active, false)
|
|
sem <- true
|
|
})
|
|
|
|
select {
|
|
case <-sem:
|
|
case <-time.After(MAKEY_TEST_DELAY * time.Millisecond):
|
|
t.Errorf("MakeyButton Event \"Release\" was not published")
|
|
}
|
|
|
|
testAdaptorDigitalRead = func() (val int, err error) {
|
|
err = errors.New("digital read error")
|
|
return
|
|
}
|
|
|
|
gobot.Once(d.Event(Error), func(data interface{}) {
|
|
sem <- true
|
|
})
|
|
|
|
select {
|
|
case <-sem:
|
|
case <-time.After(MAKEY_TEST_DELAY * time.Millisecond):
|
|
t.Errorf("MakeyButton Event \"Error\" was not published")
|
|
}
|
|
|
|
gobot.Once(d.Event(Release), func(data interface{}) {
|
|
sem <- true
|
|
})
|
|
testAdaptorDigitalRead = func() (val int, err error) {
|
|
val = 1
|
|
return
|
|
}
|
|
|
|
d.halt <- true
|
|
|
|
select {
|
|
case <-sem:
|
|
t.Errorf("MakeyButton Event should not have been published")
|
|
case <-time.After(MAKEY_TEST_DELAY * time.Millisecond):
|
|
}
|
|
}
|