2014-05-03 06:22:05 +08:00
|
|
|
package pebble
|
|
|
|
|
|
|
|
import (
|
2014-06-14 05:18:57 +08:00
|
|
|
"testing"
|
2014-11-05 12:55:24 +08:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hybridgroup/gobot"
|
2016-02-22 13:21:24 +08:00
|
|
|
"github.com/hybridgroup/gobot/gobottest"
|
2014-05-03 06:22:05 +08:00
|
|
|
)
|
|
|
|
|
2016-07-14 01:01:36 +08:00
|
|
|
var _ gobot.Driver = (*PebbleDriver)(nil)
|
|
|
|
|
2014-06-14 07:01:39 +08:00
|
|
|
func initTestPebbleDriver() *PebbleDriver {
|
|
|
|
return NewPebbleDriver(NewPebbleAdaptor("adaptor"), "pebble")
|
2014-06-14 05:18:57 +08:00
|
|
|
}
|
2014-05-24 06:09:18 +08:00
|
|
|
|
2014-06-14 07:01:39 +08:00
|
|
|
func TestPebbleDriverStart(t *testing.T) {
|
|
|
|
d := initTestPebbleDriver()
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, len(d.Start()), 0)
|
2014-06-14 05:18:57 +08:00
|
|
|
}
|
2014-05-24 06:09:18 +08:00
|
|
|
|
2014-06-14 07:01:39 +08:00
|
|
|
func TestPebbleDriverHalt(t *testing.T) {
|
|
|
|
d := initTestPebbleDriver()
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, len(d.Halt()), 0)
|
2014-06-14 05:18:57 +08:00
|
|
|
}
|
2014-05-24 06:09:18 +08:00
|
|
|
|
2014-11-05 12:55:24 +08:00
|
|
|
func TestPebbleDriver(t *testing.T) {
|
2014-06-14 07:01:39 +08:00
|
|
|
d := initTestPebbleDriver()
|
2014-12-18 06:04:18 +08:00
|
|
|
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, d.Name(), "pebble")
|
|
|
|
gobottest.Assert(t, d.Connection().Name(), "adaptor")
|
2014-12-18 06:04:18 +08:00
|
|
|
|
2014-11-05 12:55:24 +08:00
|
|
|
sem := make(chan bool)
|
2014-06-14 07:01:39 +08:00
|
|
|
d.SendNotification("Hello")
|
|
|
|
d.SendNotification("World")
|
2014-05-24 06:09:18 +08:00
|
|
|
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, d.Messages[0], "Hello")
|
|
|
|
gobottest.Assert(t, d.PendingMessage(), "Hello")
|
|
|
|
gobottest.Assert(t, d.PendingMessage(), "World")
|
|
|
|
gobottest.Assert(t, d.PendingMessage(), "")
|
2014-11-05 12:55:24 +08:00
|
|
|
|
2016-08-30 23:10:50 +08:00
|
|
|
d.On(d.Event("button"), func(data interface{}) {
|
2014-11-05 12:55:24 +08:00
|
|
|
sem <- true
|
|
|
|
})
|
|
|
|
|
|
|
|
d.PublishEvent("button", "")
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-sem:
|
|
|
|
case <-time.After(100 * time.Millisecond):
|
|
|
|
t.Errorf("Button Event was not published")
|
|
|
|
}
|
|
|
|
|
2016-08-30 23:10:50 +08:00
|
|
|
d.On(d.Event("accel"), func(data interface{}) {
|
2014-11-05 12:55:24 +08:00
|
|
|
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!"})
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, d.Messages[0], "Hey buddy!")
|
2014-11-05 12:55:24 +08:00
|
|
|
|
|
|
|
message := d.Command("pending_message")(map[string]interface{}{})
|
2016-02-22 13:21:24 +08:00
|
|
|
gobottest.Assert(t, message, "Hey buddy!")
|
2014-11-05 12:55:24 +08:00
|
|
|
|
2014-06-14 05:18:57 +08:00
|
|
|
}
|