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


Python LdapCherry._get_user方法代码示例

本文整理汇总了Python中ldapcherry.LdapCherry._get_user方法的典型用法代码示例。如果您正苦于以下问题:Python LdapCherry._get_user方法的具体用法?Python LdapCherry._get_user怎么用?Python LdapCherry._get_user使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ldapcherry.LdapCherry的用法示例。


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

示例1: testGetUser

# 需要导入模块: from ldapcherry import LdapCherry [as 别名]
# 或者: from ldapcherry.LdapCherry import _get_user [as 别名]
 def testGetUser(self):
     app = LdapCherry()
     loadconf('./tests/cfg/ldapcherry_test.ini', app)
     expected = {
         'password': u'passwordsmith',
         'cn': u'Sheri Smith',
         'uid': u'ssmith',
         'name': u'smith',
         'email': [u'[email protected]',
                  u'[email protected]',
                  u'[email protected]'
             ],
         }
     ret = app._get_user('ssmith')
     assert expected == ret
开发者ID:kakwa,项目名称:ldapcherry,代码行数:17,代码来源:test_LdapCherry.py

示例2: ValueError

# 需要导入模块: from ldapcherry import LdapCherry [as 别名]
# 或者: from ldapcherry.LdapCherry import _get_user [as 别名]
        if section not in result:
            result[section] = {}
        for option in self.options(section):
            value = self.get(section, option, raw=raw, vars=vars)
            try:
                value = cherrypy.lib.reprconf.unrepr(value)
            except Exception:
                x = sys.exc_info()[1]
                msg = ("Config error in section: %r, option: %r, "
                       "value: %r. Config values must be valid Python." %
                       (section, option, value))
                raise ValueError(msg, x.__class__.__name__, x.args)
            result[section][option] = value
    return result
cherrypy.lib.reprconf.Parser.as_dict = new_as_dict


def loadconf(configfile, instance):
    app = cherrypy.tree.mount(instance, '/', configfile)
    cherrypy.config.update(configfile)
    instance.reload(app.config)

app = LdapCherry()
loadconf('./tests/cfg/ldapcherry.ini', app)
ret = app._get_user('ssmith')
print ret

}

form = {'groups': {}, 'attrs': {'password1': u'password☭', 'password2': u'password☭', 'shell': u'/bin/zsh', 'cn': u'Test ☭ Test', 'name': u'Test ☭', 'uidNumber': u'1000', 'gidNumber': u'1000', 'home': u'/home/test', 'first-name': u'Test ☭', 'email': u'[email protected]', 'uid': u'test'}, 'roles': {'admin-lv3': u'on', 'admin-lv2': u'on', 'users': u'on'}}
开发者ID:kakwa,项目名称:ldapcherry,代码行数:32,代码来源:debug_lc.py


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