本文整理匯總了Python中ulif.openoffice.cachemanager.CacheManager.getAllSources方法的典型用法代碼示例。如果您正苦於以下問題:Python CacheManager.getAllSources方法的具體用法?Python CacheManager.getAllSources怎麽用?Python CacheManager.getAllSources使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ulif.openoffice.cachemanager.CacheManager
的用法示例。
在下文中一共展示了CacheManager.getAllSources方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_get_all_sources
# 需要導入模塊: from ulif.openoffice.cachemanager import CacheManager [as 別名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import getAllSources [as 別名]
def test_get_all_sources(self):
cm = CacheManager(self.workdir)
result1 = cm.getAllSources()
self.assertTrue(isinstance(result1, types.GeneratorType))
self.assertEqual(list(result1), [])
cm.registerDoc(
self.src_path1, self.result_path1, suffix=None)
cm.registerDoc(
self.src_path2, self.result_path2, suffix='foo')
result2 = list(cm.getAllSources())
self.assertTrue(len(result2) == 2)
open(os.path.join(self.workdir, 'crapfile'), 'wb').write('crap')
result3 = list(cm.getAllSources())
self.assertFalse('crap' in result3)
os.mkdir(os.path.join(self.workdir, 'crapdir'))
result4 = list(cm.getAllSources())
self.assertFalse('crapdir' in result4)
os.makedirs(os.path.join(self.workdir, '66', 'invalid_hashdir'))
result5 = list(cm.getAllSources())
self.assertFalse('66' in result5)
return