本文整理汇总了Python中twistedcaldav.resource.CalDAVResource.isOwner方法的典型用法代码示例。如果您正苦于以下问题:Python CalDAVResource.isOwner方法的具体用法?Python CalDAVResource.isOwner怎么用?Python CalDAVResource.isOwner使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twistedcaldav.resource.CalDAVResource
的用法示例。
在下文中一共展示了CalDAVResource.isOwner方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_isOwnerUnauthenticated
# 需要导入模块: from twistedcaldav.resource import CalDAVResource [as 别名]
# 或者: from twistedcaldav.resource.CalDAVResource import isOwner [as 别名]
def test_isOwnerUnauthenticated(self):
"""
L{CalDAVResource.isOwner} returns C{False} for unauthenticated requests.
"""
site = None
request = SimpleRequest(site, "GET", "/not/a/real/url/")
request.authzUser = request.authnUser = None
rsrc = CalDAVResource()
rsrc.owner = lambda igreq: HRef("/somebody/")
self.assertEquals((yield rsrc.isOwner(request)), False)
示例2: test_isOwnerYes
# 需要导入模块: from twistedcaldav.resource import CalDAVResource [as 别名]
# 或者: from twistedcaldav.resource.CalDAVResource import isOwner [as 别名]
def test_isOwnerYes(self):
"""
L{CalDAVResource.isOwner} returns C{True} for authenticated requests
with a principal that matches the resource's owner.
"""
site = None
request = SimpleRequest(site, "GET", "/not/a/real/url/")
request.authzUser = request.authnUser = StubPrincipal("/yes-i-am-the-owner/")
rsrc = CalDAVResource()
rsrc.owner = lambda igreq: HRef("/yes-i-am-the-owner/")
self.assertEquals((yield rsrc.isOwner(request)), True)
示例3: test_isOwnerReadPrincipal
# 需要导入模块: from twistedcaldav.resource import CalDAVResource [as 别名]
# 或者: from twistedcaldav.resource.CalDAVResource import isOwner [as 别名]
def test_isOwnerReadPrincipal(self):
"""
L{CalDAVResource.isOwner} returns C{True} for authenticated requests
with a principal that matches any principal configured in the
L{AdminPrincipals} list.
"""
theAdmin = "/read-only-admin/"
self.patch(config, "ReadPrincipals", [theAdmin])
site = None
request = SimpleRequest(site, "GET", "/not/a/real/url/")
request.authzUser = request.authnUser = StubPrincipal(theAdmin)
rsrc = CalDAVResource()
rsrc.owner = lambda igreq: HRef("/some-other-user/")
self.assertEquals((yield rsrc.isOwner(request)), True)