2013-12-31 08:51:21 +08:00
|
|
|
package gobot
|
|
|
|
|
2014-04-30 04:20:32 +08:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
2014-04-16 08:59:44 +08:00
|
|
|
|
2014-04-16 12:10:32 +08:00
|
|
|
type testStruct struct {
|
|
|
|
i int
|
|
|
|
f float64
|
|
|
|
}
|
|
|
|
|
2014-06-11 06:16:11 +08:00
|
|
|
func (t *testStruct) Hello(name string, message string) string {
|
2014-04-16 12:10:32 +08:00
|
|
|
return fmt.Sprintf("Hello %v! %v", name, message)
|
|
|
|
}
|
|
|
|
|
2014-04-11 21:02:21 +08:00
|
|
|
type null struct{}
|
|
|
|
|
|
|
|
func (null) Write(p []byte) (int, error) {
|
|
|
|
return len(p), nil
|
|
|
|
}
|
|
|
|
|
2013-12-31 08:51:21 +08:00
|
|
|
type testDriver struct {
|
|
|
|
Driver
|
2014-04-16 08:59:44 +08:00
|
|
|
Adaptor *testAdaptor
|
2013-12-31 08:51:21 +08:00
|
|
|
}
|
|
|
|
|
2014-06-11 06:16:11 +08:00
|
|
|
func (t *testDriver) Init() bool { return true }
|
|
|
|
func (t *testDriver) Start() bool { return true }
|
|
|
|
func (t *testDriver) Halt() bool { return true }
|
2013-12-31 08:51:21 +08:00
|
|
|
|
|
|
|
type testAdaptor struct {
|
|
|
|
Adaptor
|
|
|
|
}
|
|
|
|
|
2014-06-11 06:16:11 +08:00
|
|
|
func (t *testAdaptor) Finalize() bool { return true }
|
|
|
|
func (t *testAdaptor) Connect() bool { return true }
|
2013-12-31 08:51:21 +08:00
|
|
|
|
2014-04-16 08:59:44 +08:00
|
|
|
func newTestDriver(name string, adaptor *testAdaptor) *testDriver {
|
2014-06-12 08:41:04 +08:00
|
|
|
t := &testDriver{
|
2014-06-11 06:16:11 +08:00
|
|
|
Driver: Driver{
|
2014-06-12 08:41:04 +08:00
|
|
|
Commands: make(map[string]func(map[string]interface{}) interface{}),
|
|
|
|
Name: name,
|
2014-06-11 06:16:11 +08:00
|
|
|
},
|
|
|
|
Adaptor: adaptor,
|
2013-12-31 09:22:16 +08:00
|
|
|
}
|
2014-06-12 08:41:04 +08:00
|
|
|
|
|
|
|
t.Driver.AddCommand("TestDriverCommand", func(params map[string]interface{}) interface{} {
|
|
|
|
name := params["name"].(string)
|
|
|
|
return fmt.Sprintf("hello %v", name)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Driver.AddCommand("DriverCommand", func(params map[string]interface{}) interface{} {
|
|
|
|
name := params["name"].(string)
|
|
|
|
return fmt.Sprintf("hello %v", name)
|
|
|
|
})
|
|
|
|
|
|
|
|
return t
|
2013-12-31 08:51:21 +08:00
|
|
|
}
|
2014-04-15 14:16:35 +08:00
|
|
|
|
2013-12-31 08:51:21 +08:00
|
|
|
func newTestAdaptor(name string) *testAdaptor {
|
2014-06-11 06:16:11 +08:00
|
|
|
return &testAdaptor{
|
|
|
|
Adaptor: Adaptor{
|
|
|
|
Name: name,
|
|
|
|
Params: map[string]interface{}{
|
|
|
|
"param1": "1",
|
|
|
|
"param2": 2,
|
|
|
|
},
|
|
|
|
},
|
2014-04-15 14:16:35 +08:00
|
|
|
}
|
2013-12-31 08:51:21 +08:00
|
|
|
}
|
2014-01-01 05:16:25 +08:00
|
|
|
|
2014-05-16 02:50:45 +08:00
|
|
|
func NewTestRobot(name string) *Robot {
|
|
|
|
return newTestRobot(name)
|
|
|
|
}
|
2014-04-15 14:16:35 +08:00
|
|
|
func newTestRobot(name string) *Robot {
|
2014-04-16 08:59:44 +08:00
|
|
|
adaptor1 := newTestAdaptor("Connection 1")
|
|
|
|
adaptor2 := newTestAdaptor("Connection 2")
|
|
|
|
adaptor3 := newTestAdaptor("Connection 3")
|
|
|
|
driver1 := newTestDriver("Device 1", adaptor1)
|
|
|
|
driver2 := newTestDriver("Device 2", adaptor2)
|
|
|
|
driver3 := newTestDriver("Device 3", adaptor3)
|
2014-05-03 18:22:22 +08:00
|
|
|
work := func() {}
|
2014-06-12 08:41:04 +08:00
|
|
|
r := NewRobot(name, []Connection{adaptor1, adaptor2, adaptor3}, []Device{driver1, driver2, driver3}, work)
|
|
|
|
r.AddCommand("robotTestFunction", func(params map[string]interface{}) interface{} {
|
|
|
|
message := params["message"].(string)
|
|
|
|
robot := params["robot"].(string)
|
|
|
|
fmt.Println(params)
|
|
|
|
return fmt.Sprintf("hey %v, %v", robot, message)
|
|
|
|
})
|
|
|
|
return r
|
2014-01-01 05:16:25 +08:00
|
|
|
}
|
2014-04-16 12:10:32 +08:00
|
|
|
|
|
|
|
func newTestStruct() *testStruct {
|
|
|
|
s := new(testStruct)
|
|
|
|
s.i = 10
|
|
|
|
s.f = 0.2
|
|
|
|
return s
|
|
|
|
}
|