本文整理汇总了Python中zope.app.annotation.interfaces.IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']方法的典型用法代码示例。如果您正苦于以下问题:Python IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']方法的具体用法?Python IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']怎么用?Python IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类zope.app.annotation.interfaces.IAnnotations
的用法示例。
在下文中一共展示了IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testExportNodeWithAnnotation
# 需要导入模块: from zope.app.annotation.interfaces import IAnnotations [as 别名]
# 或者: from zope.app.annotation.interfaces.IAnnotations import setdefault(ANNOT_KEY,{})['hash_type'] [as 别名]
def testExportNodeWithAnnotation(self):
"""
when membrane tool is annotated, hash-type node should get exported
attribute 'name' on the node should contain the hash-type
"""
# initially add the annotation on to the membrane_tool
annot = IAnnotations(self.portal.membrane_tool)
annot.setdefault(ANNOT_KEY, {})['hash_type'] = 'bcrypt'
node = self.adapter._exportNode()
self.failUnless('<hash-type name="bcrypt"/>' in node.toxml())
# clear the bogus annotation
del annot[ANNOT_KEY]
示例2: test_hashers
# 需要导入模块: from zope.app.annotation.interfaces import IAnnotations [as 别名]
# 或者: from zope.app.annotation.interfaces.IAnnotations import setdefault(ANNOT_KEY,{})['hash_type'] [as 别名]
def test_hashers(self):
for htype in HASHERS:
login_id = 'hashtest_%s' % htype
member = self.portal_member
if not getAdapter(member, IHashPW, htype).isAvailable(): continue
mbtool = getToolByName(member, 'membrane_tool')
annot = IAnnotations(mbtool)
annot.setdefault(ANNOT_KEY, {})['hash_type'] = htype
member.setRoles('Member')
member.processForm(values=MEM_DATA)
password = member.getPassword()
hash_type, hashed = password.split(':', 1)
self.assertEqual(htype, hash_type)
self.failUnless(member.verifyCredentials(dict(login='portal_member',
**MEM_DATA)))