2013-12-30 16:51:21 -08:00
|
|
|
package gobot
|
|
|
|
|
2014-11-20 18:00:32 -08:00
|
|
|
import "fmt"
|
2014-06-12 14:38:03 -07:00
|
|
|
|
2014-06-13 14:46:07 -07:00
|
|
|
type testStruct struct {
|
|
|
|
i int
|
|
|
|
f float64
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTestStruct() *testStruct {
|
|
|
|
return &testStruct{
|
|
|
|
i: 10,
|
|
|
|
f: 0.2,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-10 15:16:11 -07:00
|
|
|
func (t *testStruct) Hello(name string, message string) string {
|
2014-04-15 21:10:32 -07:00
|
|
|
return fmt.Sprintf("Hello %v! %v", name, message)
|
|
|
|
}
|
|
|
|
|
2014-06-13 16:01:39 -07:00
|
|
|
type NullReadWriteCloser struct{}
|
2014-04-11 06:02:21 -07:00
|
|
|
|
2014-06-13 16:01:39 -07:00
|
|
|
func (NullReadWriteCloser) Write(p []byte) (int, error) {
|
2014-04-11 06:02:21 -07:00
|
|
|
return len(p), nil
|
|
|
|
}
|
|
|
|
|
2014-06-13 16:01:39 -07:00
|
|
|
func (NullReadWriteCloser) Read(b []byte) (int, error) {
|
|
|
|
return len(b), nil
|
|
|
|
}
|
2014-07-09 09:38:43 -07:00
|
|
|
|
2014-06-13 16:01:39 -07:00
|
|
|
func (NullReadWriteCloser) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-30 16:51:21 -08:00
|
|
|
type testDriver struct {
|
2014-11-20 18:00:32 -08:00
|
|
|
name string
|
|
|
|
pin string
|
|
|
|
connection Connection
|
|
|
|
Commander
|
2013-12-30 16:51:21 -08:00
|
|
|
}
|
|
|
|
|
2014-11-20 18:00:32 -08:00
|
|
|
func (t *testDriver) Start() (errs []error) { return }
|
|
|
|
func (t *testDriver) Halt() (errs []error) { return }
|
|
|
|
func (t *testDriver) Name() string { return t.name }
|
|
|
|
func (t *testDriver) Pin() string { return t.pin }
|
|
|
|
func (t *testDriver) String() string { return "testDriver" }
|
|
|
|
func (t *testDriver) Connection() Connection { return t.connection }
|
|
|
|
func (t *testDriver) ToJSON() *JSONDevice { return &JSONDevice{} }
|
2013-12-30 16:51:21 -08:00
|
|
|
|
2014-06-13 14:46:07 -07:00
|
|
|
func NewTestDriver(name string, adaptor *testAdaptor) *testDriver {
|
2014-06-11 17:41:04 -07:00
|
|
|
t := &testDriver{
|
2014-11-20 18:00:32 -08:00
|
|
|
name: name,
|
|
|
|
connection: adaptor,
|
|
|
|
pin: "1",
|
|
|
|
Commander: NewCommander(),
|
2013-12-30 17:22:16 -08:00
|
|
|
}
|
2014-06-11 17:41:04 -07:00
|
|
|
|
2014-07-09 18:32:27 -07:00
|
|
|
t.AddCommand("TestDriverCommand", func(params map[string]interface{}) interface{} {
|
2014-06-11 17:41:04 -07:00
|
|
|
name := params["name"].(string)
|
|
|
|
return fmt.Sprintf("hello %v", name)
|
|
|
|
})
|
|
|
|
|
2014-07-09 18:32:27 -07:00
|
|
|
t.AddCommand("DriverCommand", func(params map[string]interface{}) interface{} {
|
2014-06-11 17:41:04 -07:00
|
|
|
name := params["name"].(string)
|
|
|
|
return fmt.Sprintf("hello %v", name)
|
|
|
|
})
|
|
|
|
|
|
|
|
return t
|
2013-12-30 16:51:21 -08:00
|
|
|
}
|
2014-04-14 23:16:35 -07:00
|
|
|
|
2014-06-13 14:46:07 -07:00
|
|
|
type testAdaptor struct {
|
2014-11-20 18:00:32 -08:00
|
|
|
name string
|
|
|
|
port string
|
2014-06-13 14:46:07 -07:00
|
|
|
}
|
|
|
|
|
2014-11-19 23:21:19 -08:00
|
|
|
func (t *testAdaptor) Finalize() (errs []error) { return }
|
|
|
|
func (t *testAdaptor) Connect() (errs []error) { return }
|
2014-11-20 18:00:32 -08:00
|
|
|
func (t *testAdaptor) Name() string { return t.name }
|
|
|
|
func (t *testAdaptor) Port() string { return t.port }
|
|
|
|
func (t *testAdaptor) String() string { return "testAdaptor" }
|
|
|
|
func (t *testAdaptor) ToJSON() *JSONConnection { return &JSONConnection{} }
|
2014-06-13 14:46:07 -07:00
|
|
|
|
|
|
|
func NewTestAdaptor(name string) *testAdaptor {
|
2014-06-10 15:16:11 -07:00
|
|
|
return &testAdaptor{
|
2014-11-20 18:00:32 -08:00
|
|
|
name: name,
|
|
|
|
port: "/dev/null",
|
2014-04-14 23:16:35 -07:00
|
|
|
}
|
2013-12-30 16:51:21 -08:00
|
|
|
}
|
2013-12-31 13:16:25 -08:00
|
|
|
|
2014-05-15 11:50:45 -07:00
|
|
|
func NewTestRobot(name string) *Robot {
|
2014-07-21 21:14:00 -07:00
|
|
|
adaptor1 := NewTestAdaptor("Connection1")
|
|
|
|
adaptor2 := NewTestAdaptor("Connection2")
|
2014-07-10 11:14:08 -07:00
|
|
|
adaptor3 := NewTestAdaptor("")
|
2014-07-21 21:14:00 -07:00
|
|
|
driver1 := NewTestDriver("Device1", adaptor1)
|
|
|
|
driver2 := NewTestDriver("Device2", adaptor2)
|
2014-07-10 11:14:08 -07:00
|
|
|
driver3 := NewTestDriver("", adaptor3)
|
2014-05-03 03:22:22 -07:00
|
|
|
work := func() {}
|
2014-07-10 11:14:08 -07:00
|
|
|
r := NewRobot(name,
|
|
|
|
[]Connection{adaptor1, adaptor2, adaptor3},
|
|
|
|
[]Device{driver1, driver2, driver3},
|
|
|
|
work,
|
|
|
|
)
|
2014-06-11 17:41:04 -07:00
|
|
|
r.AddCommand("robotTestFunction", func(params map[string]interface{}) interface{} {
|
|
|
|
message := params["message"].(string)
|
|
|
|
robot := params["robot"].(string)
|
|
|
|
return fmt.Sprintf("hey %v, %v", robot, message)
|
|
|
|
})
|
|
|
|
return r
|
2013-12-31 13:16:25 -08:00
|
|
|
}
|