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


Python authentication.Authentication类代码示例

本文整理汇总了Python中tastypie.authentication.Authentication的典型用法代码示例。如果您正苦于以下问题:Python Authentication类的具体用法?Python Authentication怎么用?Python Authentication使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: test_check_active_false

    def test_check_active_false(self):
        auth = Authentication(require_active=False)
        user = User.objects.get(username='johndoe')
        self.assertTrue(auth.check_active(user))

        auth = Authentication(require_active=False)
        user = User.objects.get(username='bobdoe')
        self.assertTrue(auth.check_active(user))
开发者ID:mthornhill,项目名称:django-tastypie,代码行数:8,代码来源:authentication.py

示例2: test_get_identifier

    def test_get_identifier(self):
        auth = Authentication()
        request = HttpRequest()
        self.assertEqual(auth.get_identifier(request), 'noaddr_nohost')

        request = HttpRequest()
        request.META['REMOTE_ADDR'] = '127.0.0.1'
        request.META['REMOTE_HOST'] = 'nebula.local'
        self.assertEqual(auth.get_identifier(request), '127.0.0.1_nebula.local')
开发者ID:mthornhill,项目名称:django-tastypie,代码行数:9,代码来源:authentication.py

示例3: test_check_active_true

    def test_check_active_true(self):
        auth = Authentication(require_active=True)
        user = User.objects.get(username="johndoe")
        self.assertTrue(auth.check_active(user))

        auth = Authentication(require_active=True)
        user = User.objects.get(username="bobdoe")
        self.assertFalse(auth.check_active(user))

        # Check the default.
        auth = Authentication()
        user = User.objects.get(username="bobdoe")
        self.assertFalse(auth.check_active(user))
开发者ID:mattbriancon,项目名称:django-tastypie,代码行数:13,代码来源:authentication.py

示例4: test_is_authenticated

 def test_is_authenticated(self):
     auth = Authentication()
     request = HttpRequest()
     # Doesn't matter. Always true.
     self.assertTrue(auth.is_authenticated(None))
     self.assertTrue(auth.is_authenticated(request))
开发者ID:mthornhill,项目名称:django-tastypie,代码行数:6,代码来源:authentication.py

示例5: get_identifier

 def get_identifier(self, request):
     if request.method == 'POST':
         return Authentication.get_identifier(self, request)
     return super(PostFreeSessionAuthentication, self).get_identifier(request)
开发者ID:mente,项目名称:p2psafety,代码行数:4,代码来源:authentication.py


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