当前位置: 首页>>代码示例>>Python>>正文


Python CacheManager.get_hash方法代码示例

本文整理汇总了Python中ulif.openoffice.cachemanager.CacheManager.get_hash方法的典型用法代码示例。如果您正苦于以下问题:Python CacheManager.get_hash方法的具体用法?Python CacheManager.get_hash怎么用?Python CacheManager.get_hash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ulif.openoffice.cachemanager.CacheManager的用法示例。


在下文中一共展示了CacheManager.get_hash方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_get_hash

# 需要导入模块: from ulif.openoffice.cachemanager import CacheManager [as 别名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import get_hash [as 别名]
 def test_get_hash(self, cache_env, samples_dir):
     # we can compute a hash for a source file.
     cm = CacheManager(str(cache_env))
     hash1 = cm.get_hash(str(cache_env / "src1.txt"))
     hash2 = cm.get_hash(str(cache_env / "src2.txt"))
     hash3 = cm.get_hash(str(samples_dir / "testdoc1.doc"))
     assert hash1 == '737b337e605199de28b3b64c674f9422'
     assert hash2 == 'd5aa51d7fb180729089d2de904f7dffe'
     assert hash3 == '443a07e0e92b7dc6b21f8be6a388f05f'
     with pytest.raises(TypeError):
         cm.get_hash()
开发者ID:sbywater,项目名称:ulif.openoffice,代码行数:13,代码来源:test_cachemanager.py

示例2: test_get_hash

# 需要导入模块: from ulif.openoffice.cachemanager import CacheManager [as 别名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import get_hash [as 别名]
 def test_get_hash(self):
     cm = CacheManager(self.workdir)
     hash1 = cm.get_hash(self.src_path1)
     hash2 = cm.get_hash(self.src_path2)
     src = os.path.join(  # a binary stream not convertible to utf-8
         os.path.dirname(__file__), 'input', 'testdoc1.doc')
     hash3 = cm.get_hash(src)
     self.assertEqual(hash1, '737b337e605199de28b3b64c674f9422')
     self.assertEqual(hash2, 'd5aa51d7fb180729089d2de904f7dffe')
     self.assertEqual(hash3, '443a07e0e92b7dc6b21f8be6a388f05f')
     self.assertRaises(TypeError, cm.get_hash)
     return
开发者ID:sennoy,项目名称:ulif.openoffice,代码行数:14,代码来源:test_cachemanager.py

示例3: test_get_bucket_path

# 需要导入模块: from ulif.openoffice.cachemanager import CacheManager [as 别名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import get_hash [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")
开发者ID:sbywater,项目名称:ulif.openoffice,代码行数:9,代码来源:test_cachemanager.py

示例4: test_get_bucket_path

# 需要导入模块: from ulif.openoffice.cachemanager import CacheManager [as 别名]
# 或者: from ulif.openoffice.cachemanager.CacheManager import get_hash [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
开发者ID:sennoy,项目名称:ulif.openoffice,代码行数:11,代码来源:test_cachemanager.py


注:本文中的ulif.openoffice.cachemanager.CacheManager.get_hash方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。