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


Python IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']方法代码示例

本文整理汇总了Python中zope.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.annotation.interfaces.IAnnotations的用法示例。


在下文中一共展示了IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testExportNodeWithAnnotation

# 需要导入模块: from zope.annotation.interfaces import IAnnotations [as 别名]
# 或者: from zope.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]
开发者ID:dibell,项目名称:Products.remember,代码行数:14,代码来源:test_install.py

示例2: test_hashers

# 需要导入模块: from zope.annotation.interfaces import IAnnotations [as 别名]
# 或者: from zope.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)))
开发者ID:a25kk,项目名称:mp-bbb,代码行数:20,代码来源:test_hashers.py


注:本文中的zope.annotation.interfaces.IAnnotations.setdefault(ANNOT_KEY,{})['hash_type']方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。