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


Python LdapGroup.scoped方法代码示例

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


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

示例1: test_scope

# 需要导入模块: from examples.models import LdapGroup [as 别名]
# 或者: from examples.models.LdapGroup import scoped [as 别名]
    def test_scope(self):
        ScopedGroup = LdapGroup.scoped(self.scoped_dn)

        # create group
        g = LdapGroup()
        g.name = "foogroup"
        g.gid = 1000
        g.save()

        qs = LdapGroup.objects.all()
        self.assertEquals(qs.count(), 1)

        qs = ScopedGroup.objects.all()
        self.assertEquals(qs.count(), 0)

        # create scoped group
        g2 = ScopedGroup()
        g2.name = "scopedgroup"
        g2.gid = 5000
        g2.save()

        qs = LdapGroup.objects.all()
        self.assertEquals(qs.count(), 2)

        qs = ScopedGroup.objects.all()
        self.assertEquals(qs.count(), 1)
开发者ID:crito,项目名称:django-ldapdb,代码行数:28,代码来源:tests.py

示例2: setUp

# 需要导入模块: from examples.models import LdapGroup [as 别名]
# 或者: from examples.models.LdapGroup import scoped [as 别名]
 def setUp(self):
     self.mockldap.start()
     self.ldapobj = self.mockldap[settings.DATABASES['ldap']['NAME']]
     self.scoped_model = LdapGroup.scoped("ou=contacts,%s" %
                                          LdapGroup.base_dn)
开发者ID:ResearchComputing,项目名称:django-ldapdb,代码行数:7,代码来源:tests.py

示例3: setUp

# 需要导入模块: from examples.models import LdapGroup [as 别名]
# 或者: from examples.models.LdapGroup import scoped [as 别名]
 def setUp(self):
     super(ScopedTestCase, self).setUp()
     self.scoped_model = LdapGroup.scoped("ou=contacts,%s" %
                                          LdapGroup.base_dn)
开发者ID:django-ldapdb,项目名称:django-ldapdb,代码行数:6,代码来源:tests.py


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