本文整理汇总了Python中twisted.protocols.amp.Integer方法的典型用法代码示例。如果您正苦于以下问题:Python amp.Integer方法的具体用法?Python amp.Integer怎么用?Python amp.Integer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twisted.protocols.amp
的用法示例。
在下文中一共展示了amp.Integer方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_sendTableWithName
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_sendTableWithName(self):
"""
You can send a reference to a table through a L{SchemaAMP} via
L{TableSyntaxByName}.
"""
client = AMP()
class SampleCommand(Command):
arguments = [("id", Integer())]
class Receiver(AMP):
@SampleCommand.responder
def gotIt(self, id):
self.it = id
return {}
server = Receiver()
clientT = StringTransport()
serverT = StringTransport()
client.makeConnection(clientT)
server.makeConnection(serverT)
client.callRemote(SampleCommand, id=123)
server.dataReceived(clientT.io.getvalue())
self.assertEqual(server.it, 123)
示例2: test_requiredArgumentWithNoneValueRaisesTypeError
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_requiredArgumentWithNoneValueRaisesTypeError(self):
"""
L{ListOf.toBox} raises C{TypeError} when passed a value of L{None}
for the argument.
"""
stringList = amp.ListOf(amp.Integer())
self.assertRaises(
TypeError, stringList.toBox, b'omitted', amp.AmpBox(),
{'omitted': None}, None)
示例3: test_optionalArgumentWithNoneValueOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_optionalArgumentWithNoneValueOmitted(self):
"""
L{ListOf.toBox} silently omits serializing any argument with a
value of L{None} that is designated as optional for the protocol.
"""
stringList = amp.ListOf(amp.Integer(), optional=True)
strings = amp.AmpBox()
stringList.toBox(b'omitted', strings, {b'omitted': None}, None)
self.assertEqual(strings, {})
示例4: test_requiredArgumentWithKeyMissingRaisesKeyError
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_requiredArgumentWithKeyMissingRaisesKeyError(self):
"""
L{ListOf.toBox} raises C{KeyError} if the argument's key is not
present in the objects dictionary.
"""
stringList = amp.ListOf(amp.Integer())
self.assertRaises(
KeyError, stringList.toBox, b'ommited', amp.AmpBox(),
{'someOtherKey': 0}, None)
示例5: test_optionalArgumentWithKeyMissingOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_optionalArgumentWithKeyMissingOmitted(self):
"""
L{ListOf.toBox} silently omits serializing any argument designated
as optional whose key is not present in the objects dictionary.
"""
stringList = amp.ListOf(amp.Integer(), optional=True)
stringList.toBox(b'ommited', amp.AmpBox(), {b'someOtherKey': 0}, None)
示例6: test_omittedOptionalArgumentDeserializesAsNone
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_omittedOptionalArgumentDeserializesAsNone(self):
"""
L{ListOf.fromBox} correctly reverses the operation performed by
L{ListOf.toBox} for optional arguments.
"""
stringList = amp.ListOf(amp.Integer(), optional=True)
objects = {}
stringList.fromBox(b'omitted', {}, objects, None)
self.assertEqual(objects, {'omitted': None})
示例7: txnarg
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def txnarg():
return [("transactionID", Integer())]
示例8: test_requiredArgumentWithNoneValueRaisesTypeError
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_requiredArgumentWithNoneValueRaisesTypeError(self):
"""
L{ListOf.toBox} raises C{TypeError} when passed a value of C{None}
for the argument.
"""
stringList = amp.ListOf(amp.Integer())
self.assertRaises(
TypeError, stringList.toBox, 'omitted', amp.AmpBox(),
{'omitted': None}, None)
示例9: test_optionalArgumentWithNoneValueOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_optionalArgumentWithNoneValueOmitted(self):
"""
L{ListOf.toBox} silently omits serializing any argument with a
value of C{None} that is designated as optional for the protocol.
"""
stringList = amp.ListOf(amp.Integer(), optional=True)
strings = amp.AmpBox()
stringList.toBox('omitted', strings, {'omitted': None}, None)
self.assertEquals(strings, {})
示例10: test_requiredArgumentWithKeyMissingRaisesKeyError
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_requiredArgumentWithKeyMissingRaisesKeyError(self):
"""
L{ListOf.toBox} raises C{KeyError} if the argument's key is not
present in the objects dictionary.
"""
stringList = amp.ListOf(amp.Integer())
self.assertRaises(
KeyError, stringList.toBox, 'ommited', amp.AmpBox(),
{'someOtherKey': 0}, None)
示例11: test_optionalArgumentWithKeyMissingOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_optionalArgumentWithKeyMissingOmitted(self):
"""
L{ListOf.toBox} silently omits serializing any argument designated
as optional whose key is not present in the objects dictionary.
"""
stringList = amp.ListOf(amp.Integer(), optional=True)
stringList.toBox('ommited', amp.AmpBox(), {'someOtherKey': 0}, None)
示例12: test_omittedOptionalArgumentDeserializesAsNone
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import Integer [as 别名]
def test_omittedOptionalArgumentDeserializesAsNone(self):
"""
L{ListOf.fromBox} correctly reverses the operation performed by
L{ListOf.toBox} for optional arguments.
"""
stringList = amp.ListOf(amp.Integer(), optional=True)
objects = {}
stringList.fromBox('omitted', {}, objects, None)
self.assertEquals(objects, {'omitted': None})