1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-11 19:29:20 +08:00
hybridgroup.gobot/platforms/pebble/pebble_driver_test.go
deadprogram 36092d2908 core: Refactor Pebble platform for new Adaptor/Driver creation signatures
Signed-off-by: deadprogram <ron@hybridgroup.com>
2016-10-01 18:01:30 +02:00

72 lines
1.5 KiB
Go

package pebble
import (
"testing"
"time"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/gobottest"
)
var _ gobot.Driver = (*Driver)(nil)
func initTestDriver() *Driver {
return NewDriver(NewAdaptor())
}
func TestDriverStart(t *testing.T) {
d := initTestDriver()
gobottest.Assert(t, len(d.Start()), 0)
}
func TestDriverHalt(t *testing.T) {
d := initTestDriver()
gobottest.Assert(t, len(d.Halt()), 0)
}
func TestDriver(t *testing.T) {
d := initTestDriver()
gobottest.Assert(t, d.Name(), "Pebble")
gobottest.Assert(t, d.Connection().Name(), "Pebble")
sem := make(chan bool)
d.SendNotification("Hello")
d.SendNotification("World")
gobottest.Assert(t, d.Messages[0], "Hello")
gobottest.Assert(t, d.PendingMessage(), "Hello")
gobottest.Assert(t, d.PendingMessage(), "World")
gobottest.Assert(t, d.PendingMessage(), "")
d.On(d.Event("button"), func(data interface{}) {
sem <- true
})
d.PublishEvent("button", "")
select {
case <-sem:
case <-time.After(100 * time.Millisecond):
t.Errorf("Button Event was not published")
}
d.On(d.Event("accel"), func(data interface{}) {
sem <- true
})
d.Command("publish_event")(map[string]interface{}{"name": "accel", "data": "100"})
select {
case <-sem:
case <-time.After(100 * time.Millisecond):
t.Errorf("Accel Event was not published")
}
d.Command("send_notification")(map[string]interface{}{"message": "Hey buddy!"})
gobottest.Assert(t, d.Messages[0], "Hey buddy!")
message := d.Command("pending_message")(map[string]interface{}{})
gobottest.Assert(t, message, "Hey buddy!")
}