本文整理汇总了Python中WMComponent.JobSubmitter.JobSubmitterPoller.JobSubmitterPoller.refreshCache方法的典型用法代码示例。如果您正苦于以下问题:Python JobSubmitterPoller.refreshCache方法的具体用法?Python JobSubmitterPoller.refreshCache怎么用?Python JobSubmitterPoller.refreshCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WMComponent.JobSubmitter.JobSubmitterPoller.JobSubmitterPoller
的用法示例。
在下文中一共展示了JobSubmitterPoller.refreshCache方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testCaching
# 需要导入模块: from WMComponent.JobSubmitter.JobSubmitterPoller import JobSubmitterPoller [as 别名]
# 或者: from WMComponent.JobSubmitter.JobSubmitterPoller.JobSubmitterPoller import refreshCache [as 别名]
def testCaching(self):
"""
_testCaching_
Verify that JobSubmitter caching works.
"""
config = self.createConfig()
mySubmitterPoller = JobSubmitterPoller(config)
mySubmitterPoller.getThresholds()
mySubmitterPoller.refreshCache()
self.assertEqual(len(mySubmitterPoller.cachedJobIDs), 0,
"Error: The job cache should be empty.")
self.injectJobs()
mySubmitterPoller.refreshCache()
# Verify the cache is full
self.assertEqual(len(mySubmitterPoller.cachedJobIDs), 20,
"Error: The job cache should contain 20 jobs. Contains: %i" % len(mySubmitterPoller.cachedJobIDs))
killWorkflow("wf001", jobCouchConfig = config)
mySubmitterPoller.refreshCache()
# Verify that the workflow is gone from the cache
self.assertEqual(len(mySubmitterPoller.cachedJobIDs), 10,
"Error: The job cache should contain 10 jobs. Contains: %i" % len(mySubmitterPoller.cachedJobIDs))
killWorkflow("wf002", jobCouchConfig = config)
mySubmitterPoller.refreshCache()
# Verify that the workflow is gone from the cache
self.assertEqual(len(mySubmitterPoller.cachedJobIDs), 0,
"Error: The job cache should be empty. Contains: %i" % len(mySubmitterPoller.cachedJobIDs))
return