本文整理匯總了Python中ulif.openoffice.cachemanager.CacheManager._get_bucket_path方法的典型用法代碼示例。如果您正苦於以下問題:Python CacheManager._get_bucket_path方法的具體用法?Python CacheManager._get_bucket_path怎麽用?Python CacheManager._get_bucket_path使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ulif.openoffice.cachemanager.CacheManager
的用法示例。
在下文中一共展示了CacheManager._get_bucket_path方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_get_bucket_path
# 需要導入模塊: from ulif.openoffice.cachemanager import CacheManager [as 別名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import _get_bucket_path [as 別名]
def test_get_bucket_path(self, tmpdir):
# we can get a bucket path from a hash value
cm = CacheManager(str(tmpdir.join("cache")))
tmpdir.join("src.txt").write("source1\n")
hash_val = cm.get_hash(str(tmpdir / "src.txt"))
assert cm._get_bucket_path(hash_val) == (
tmpdir / "cache" / "73" / "737b337e605199de28b3b64c674f9422")
示例2: test_get_bucket_path
# 需要導入模塊: from ulif.openoffice.cachemanager import CacheManager [as 別名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import _get_bucket_path [as 別名]
def test_get_bucket_path(self):
cm = CacheManager(self.workdir)
hash_val = cm.get_hash(self.src_path1)
path = cm._get_bucket_path(hash_val)
expected_path_end = os.path.join(
'73', '737b337e605199de28b3b64c674f9422')
self.assertEqual(os.listdir(self.workdir), [])
self.assertTrue(path.endswith(expected_path_end))
return