本文整理汇总了Python中twisted.protocols.amp.ListOf方法的典型用法代码示例。如果您正苦于以下问题:Python amp.ListOf方法的具体用法?Python amp.ListOf怎么用?Python amp.ListOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twisted.protocols.amp
的用法示例。
在下文中一共展示了amp.ListOf方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_toBox
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [as 别名]
def test_toBox(self):
"""
L{ListOf.toBox} extracts the list of objects from the C{objects}
dictionary passed to it, using the C{name} key also passed to it,
serializes each of the elements in that list using the L{Argument}
instance previously passed to its initializer, combines the serialized
results, and inserts the result into the C{strings} dictionary using
the same C{name} key.
"""
stringList = amp.ListOf(self.elementType)
strings = amp.AmpBox()
for key in self.objects:
stringList.toBox(
key.encode("ascii"), strings, self.objects.copy(), None)
self.assertEqual(strings, self.strings)
示例2: test_fromBox
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [as 别名]
def test_fromBox(self):
"""
L{ListOf.fromBox} reverses the operation performed by L{ListOf.toBox}.
"""
stringList = amp.ListOf(self.elementType)
objects = {}
for key in self.strings:
stringList.fromBox(key, self.strings.copy(), objects, None)
self.assertEqual(objects, self.objects)
示例3: test_requiredArgumentWithNoneValueRaisesTypeError
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [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)
示例4: test_optionalArgumentWithNoneValueOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [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, {})
示例5: test_optionalArgumentWithKeyMissingOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [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 ListOf [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: test_toBox
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [as 别名]
def test_toBox(self):
"""
L{ListOf.toBox} extracts the list of objects from the C{objects}
dictionary passed to it, using the C{name} key also passed to it,
serializes each of the elements in that list using the L{Argument}
instance previously passed to its initializer, combines the serialized
results, and inserts the result into the C{strings} dictionary using
the same C{name} key.
"""
stringList = amp.ListOf(self.elementType)
strings = amp.AmpBox()
for key in self.objects:
stringList.toBox(key, strings, self.objects.copy(), None)
self.assertEquals(strings, self.strings)
示例8: test_fromBox
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [as 别名]
def test_fromBox(self):
"""
L{ListOf.fromBox} reverses the operation performed by L{ListOf.toBox}.
"""
stringList = amp.ListOf(self.elementType)
objects = {}
for key in self.strings:
stringList.fromBox(key, self.strings.copy(), objects, None)
self.assertEquals(objects, self.objects)
示例9: test_requiredArgumentWithNoneValueRaisesTypeError
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [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)
示例10: test_optionalArgumentWithNoneValueOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [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, {})
示例11: test_optionalArgumentWithKeyMissingOmitted
# 需要导入模块: from twisted.protocols import amp [as 别名]
# 或者: from twisted.protocols.amp import ListOf [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 ListOf [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})