本文整理汇总了Python中makerbot_driver.Encoder.unpack_response_with_string方法的典型用法代码示例。如果您正苦于以下问题:Python Encoder.unpack_response_with_string方法的具体用法?Python Encoder.unpack_response_with_string怎么用?Python Encoder.unpack_response_with_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类makerbot_driver.Encoder
的用法示例。
在下文中一共展示了Encoder.unpack_response_with_string方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_unpack_response_with_string_no_format
# 需要导入模块: from makerbot_driver import Encoder [as 别名]
# 或者: from makerbot_driver.Encoder import unpack_response_with_string [as 别名]
def test_unpack_response_with_string_no_format(self):
expected_string = 'abcde\x00'
b = bytearray()
b.extend(expected_string)
data = Encoder.unpack_response_with_string('',b)
assert(len(data) == 1)
assert data[0] == expected_string
示例2: test_unpack_response_with_string
# 需要导入模块: from makerbot_driver import Encoder [as 别名]
# 或者: from makerbot_driver.Encoder import unpack_response_with_string [as 别名]
def test_unpack_response_with_string(self):
expected_data = [1, 'a', 'b', 'c', 'ABCDE\x00']
b = bytearray()
b.extend(Encoder.encode_uint32(1))
for data in expected_data[1:-1]:
b.append(data)
b.extend(expected_data[-1])
data = Encoder.unpack_response_with_string('<Iccc',b)
for expected, d in zip(expected_data, data):
self.assertEqual(expected, d)
示例3: test_unpack_response_with_string_empty_string
# 需要导入模块: from makerbot_driver import Encoder [as 别名]
# 或者: from makerbot_driver.Encoder import unpack_response_with_string [as 别名]
def test_unpack_response_with_string_empty_string(self):
expected_string = '\x00'
b = bytearray()
b.append(expected_string)
data = Encoder.unpack_response_with_string('', b)
self.assertEqual(expected_string, data[0])