本文整理汇总了Python中Products.DCWorkflow.Guard.Guard.check方法的典型用法代码示例。如果您正苦于以下问题:Python Guard.check方法的具体用法?Python Guard.check怎么用?Python Guard.check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Products.DCWorkflow.Guard.Guard
的用法示例。
在下文中一共展示了Guard.check方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_checkGuardExpr
# 需要导入模块: from Products.DCWorkflow.Guard import Guard [as 别名]
# 或者: from Products.DCWorkflow.Guard.Guard import check [as 别名]
def test_checkGuardExpr(self):
#
# Basic checks.
#
guard = Guard()
# Create compulsory context elements
sm = getSecurityManager()
self.site._setObject("dummy", DummyContent("dummy"))
ob = self.site.dummy
wf_def = self._getDummyWorkflow()
# Initialize the guard with an ok guard
guard_props = {"guard_permissions": "", "guard_roles": "", "guard_expr": "python:1"}
res = guard.changeFromProperties(guard_props)
self.assert_(res)
self.assert_(guard.check(sm, wf_def, ob))
# Initialize the guard with a not ok guard
guard_props = {"guard_permissions": "", "guard_roles": "", "guard_expr": "python:0"}
res = guard.changeFromProperties(guard_props)
self.assert_(res)
self.assert_(not guard.check(sm, wf_def, ob))
示例2: test_checkWithKwargs
# 需要导入模块: from Products.DCWorkflow.Guard import Guard [as 别名]
# 或者: from Products.DCWorkflow.Guard.Guard import check [as 别名]
def test_checkWithKwargs(self):
#
# Checks with kwargs
#
guard = Guard()
# Create compulsory context elements
sm = getSecurityManager()
self.site._setObject('dummy', DummyContent('dummy'))
ob = self.site.dummy
wf_def = self._getDummyWorkflow()
# Initialize the guard with an ok guard
guard_props = {'guard_permissions':'',
'guard_roles':'',
'guard_expr' :'python:1'}
res = guard.changeFromProperties(guard_props)
self.assert_(res)
self.assert_(guard.check(sm, wf_def, ob, arg1=1, arg2=2))
# Initialize the guard with a not ok guard
guard_props = {'guard_permissions':'',
'guard_roles':'',
'guard_expr' :'python:0'}
res = guard.changeFromProperties(guard_props)
self.assert_(res)
self.assert_(not guard.check(sm, wf_def, ob, arg1=1, arg2=2))
示例3: test_checkGuardExpr
# 需要导入模块: from Products.DCWorkflow.Guard import Guard [as 别名]
# 或者: from Products.DCWorkflow.Guard.Guard import check [as 别名]
def test_checkGuardExpr(self):
#
# Basic checks.
#
guard = Guard()
# Create compulsory context elements
sm = getSecurityManager()
ob = DummyContent('dummy')
wf_def = self._getDummyWorkflow()
# Initialize the guard with an ok guard
guard_props = {'guard_permissions':'',
'guard_roles':'',
'guard_expr' :'python:1'}
res = guard.changeFromProperties(guard_props)
self.assert_(res)
self.assert_(guard.check(sm, wf_def, ob))
# Initialize the guard with a not ok guard
guard_props = {'guard_permissions':'',
'guard_roles':'',
'guard_expr' :'python:0'}
res = guard.changeFromProperties(guard_props)
self.assert_(res)
self.assert_(not guard.check(sm, wf_def, ob))