当前位置: 首页>>代码示例>>Golang>>正文


Golang gobot.Expect函数代码示例

本文整理汇总了Golang中github.com/hybridgroup/gobot.Expect函数的典型用法代码示例。如果您正苦于以下问题:Golang Expect函数的具体用法?Golang Expect怎么用?Golang Expect使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了Expect函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: TestButtonDriverActive

func TestButtonDriverActive(t *testing.T) {
	d := initTestButtonDriver()
	d.update(1)
	gobot.Expect(t, d.Active, true)

	d.update(0)
	gobot.Expect(t, d.Active, false)
}
开发者ID:heupel,项目名称:gobot,代码行数:8,代码来源:button_driver_test.go

示例2: TestLedDriverToggle

func TestLedDriverToggle(t *testing.T) {
	d := initTestLedDriver()
	d.Off()
	d.Toggle()
	gobot.Expect(t, d.IsOn(), true)
	d.Toggle()
	gobot.Expect(t, d.IsOff(), true)
}
开发者ID:heupel,项目名称:gobot,代码行数:8,代码来源:led_driver_test.go

示例3: TestFirmataAdaptorDigitalRead

func TestFirmataAdaptorDigitalRead(t *testing.T) {
	a := initTestFirmataAdaptor()
	// -1 on no data
	gobot.Expect(t, a.DigitalRead("1"), -1)

	pinNumber := "1"
	a.Board.Events = append(a.Board.Events, event{Name: fmt.Sprintf("digital_read_%v", pinNumber), Data: []byte{0x01}})
	gobot.Expect(t, a.DigitalRead(pinNumber), 0x01)
}
开发者ID:ninetwentyfour,项目名称:gobot,代码行数:9,代码来源:firmata_adaptor_test.go

示例4: TestMotorDriverIsOn

func TestMotorDriverIsOn(t *testing.T) {
	d := initTestMotorDriver()
	d.CurrentMode = "digital"
	d.CurrentState = 1
	gobot.Expect(t, d.IsOn(), true)
	d.CurrentMode = "analog"
	d.CurrentSpeed = 100
	gobot.Expect(t, d.IsOn(), true)
}
开发者ID:heupel,项目名称:gobot,代码行数:9,代码来源:motor_driver_test.go

示例5: TestPebbleDriverNotification

func TestPebbleDriverNotification(t *testing.T) {
	d := initTestPebbleDriver()
	d.SendNotification("Hello")
	d.SendNotification("World")

	gobot.Expect(t, d.Messages[0], "Hello")
	gobot.Expect(t, d.PendingMessage(), "Hello")
	gobot.Expect(t, d.PendingMessage(), "World")
	gobot.Expect(t, d.PendingMessage(), "")
}
开发者ID:kennylixi,项目名称:gobot,代码行数:10,代码来源:pebble_driver_test.go

示例6: TestFirmataAdaptorAnalogRead

func TestFirmataAdaptorAnalogRead(t *testing.T) {
	a := initTestFirmataAdaptor()
	// -1 on no data
	gobot.Expect(t, a.AnalogRead("1"), -1)

	pinNumber := "1"
	value := 133
	a.Board.Events = append(a.Board.Events, event{Name: fmt.Sprintf("analog_read_%v", pinNumber), Data: []byte{byte(value >> 24), byte(value >> 16), byte(value >> 8), byte(value & 0xff)}})
	gobot.Expect(t, a.AnalogRead(pinNumber), 133)
}
开发者ID:ninetwentyfour,项目名称:gobot,代码行数:10,代码来源:firmata_adaptor_test.go

示例7: TestMotorDriverOff

func TestMotorDriverOff(t *testing.T) {
	d := initTestMotorDriver()
	d.CurrentMode = "digital"
	d.Off()
	gobot.Expect(t, d.CurrentState, uint8(0))
	d.CurrentMode = "analog"
	d.CurrentSpeed = 100
	d.Off()
	gobot.Expect(t, d.CurrentSpeed, uint8(0))
}
开发者ID:heupel,项目名称:gobot,代码行数:10,代码来源:motor_driver_test.go

示例8: TestFirmataAdaptorI2cRead

func TestFirmataAdaptorI2cRead(t *testing.T) {
	a := initTestFirmataAdaptor()
	// [] on no data
	gobot.Expect(t, a.I2cRead(1), []byte{})

	i := []byte{100}
	i2cReply := map[string][]byte{}
	i2cReply["data"] = i
	a.Board.Events = append(a.Board.Events, event{Name: "i2c_reply", I2cReply: i2cReply})
	gobot.Expect(t, a.I2cRead(1), i)
}
开发者ID:ninetwentyfour,项目名称:gobot,代码行数:11,代码来源:firmata_adaptor_test.go

示例9: TestRobotDevices

func TestRobotDevices(t *testing.T) {
	a := initTestAPI()
	request, _ := http.NewRequest("GET", "/robots/Robot%201/devices", nil)
	response := httptest.NewRecorder()
	a.server.ServeHTTP(response, request)

	body, _ := ioutil.ReadAll(response.Body)
	var i []map[string]interface{}
	json.Unmarshal(body, &i)
	gobot.Expect(t, len(i), 3)
}
开发者ID:heupel,项目名称:gobot,代码行数:11,代码来源:api_test.go

示例10: TestRobotCommands

func TestRobotCommands(t *testing.T) {
	a := initTestAPI()
	request, _ := http.NewRequest("GET", "/robots/Robot%201/commands", nil)
	response := httptest.NewRecorder()
	a.server.ServeHTTP(response, request)

	body, _ := ioutil.ReadAll(response.Body)
	var i []string
	json.Unmarshal(body, &i)
	gobot.Expect(t, i, []string{"robotTestFunction"})
}
开发者ID:heupel,项目名称:gobot,代码行数:11,代码来源:api_test.go

示例11: TestRobot

func TestRobot(t *testing.T) {
	a := initTestAPI()
	request, _ := http.NewRequest("GET", "/robots/Robot%201", nil)
	response := httptest.NewRecorder()
	a.server.ServeHTTP(response, request)

	body, _ := ioutil.ReadAll(response.Body)
	var i map[string]interface{}
	json.Unmarshal(body, &i)
	gobot.Expect(t, i["name"].(string), "Robot 1")
}
开发者ID:heupel,项目名称:gobot,代码行数:11,代码来源:api_test.go

示例12: TestLeapMotionDriverParser

func TestLeapMotionDriverParser(t *testing.T) {
	d := initTestLeapMotionDriver()
	file, _ := ioutil.ReadFile("./test/support/example_frame.json")
	parsedFrame := d.ParseFrame(file)

	if parsedFrame.Hands == nil || parsedFrame.Pointables == nil || parsedFrame.Gestures == nil {
		t.Errorf("ParseFrame incorrectly parsed frame")
	}

	parsedFrame = d.ParseFrame([]byte{})
	gobot.Expect(t, parsedFrame.Timestamp, 0)
}
开发者ID:kennylixi,项目名称:gobot,代码行数:12,代码来源:leap_motion_driver_test.go

示例13: TestExecuteRobotDeviceCommand

func TestExecuteRobotDeviceCommand(t *testing.T) {
	a := initTestAPI()
	request, _ := http.NewRequest("GET", "/robots/Robot%201/devices/Device%201/commands/TestDriverCommand", bytes.NewBufferString(`{"name":"human"}`))
	request.Header.Add("Content-Type", "application/json")
	response := httptest.NewRecorder()
	a.server.ServeHTTP(response, request)

	body, _ := ioutil.ReadAll(response.Body)
	var i interface{}
	json.Unmarshal(body, &i)
	gobot.Expect(t, i, "hello human")
}
开发者ID:heupel,项目名称:gobot,代码行数:12,代码来源:api_test.go

示例14: TestUnknownRobotCommand

func TestUnknownRobotCommand(t *testing.T) {
	a := initTestAPI()
	request, _ := http.NewRequest("GET", "/robots/Robot%201/commands/robotTestFuntion1", bytes.NewBufferString(`{"message":"Beep Boop"}`))
	request.Header.Add("Content-Type", "application/json")
	response := httptest.NewRecorder()
	a.server.ServeHTTP(response, request)

	body, _ := ioutil.ReadAll(response.Body)
	var i interface{}
	json.Unmarshal(body, &i)
	gobot.Expect(t, i, "Unknown Command")
}
开发者ID:heupel,项目名称:gobot,代码行数:12,代码来源:api_test.go

示例15: TestConnect

func TestConnect(t *testing.T) {
	a := initTestArdroneAdaptor()
	gobot.Expect(t, a.Connect(), true)
}
开发者ID:heupel,项目名称:gobot,代码行数:4,代码来源:ardrone_adaptor_test.go


注:本文中的github.com/hybridgroup/gobot.Expect函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。