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


Python Gluster_DiskFile.put_metadata方法代码示例

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


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

示例1: test_put_w_tombstone

# 需要导入模块: from gluster.swift.common.DiskFile import Gluster_DiskFile [as 别名]
# 或者: from gluster.swift.common.DiskFile.Gluster_DiskFile import put_metadata [as 别名]
    def test_put_w_tombstone(self):
        assert not os.path.exists("/tmp/foo")
        gdf = Gluster_DiskFile("/tmp/foo", "vol0", "p57", "ufo47", "bar", "z", self.lg)
        assert gdf.metadata == {}

        gdf.put_metadata({"x": "1"}, tombstone=True)
        assert gdf.metadata == {}
开发者ID:portante,项目名称:glusterfs,代码行数:9,代码来源:test_diskfile.py

示例2: test_put_metadata

# 需要导入模块: from gluster.swift.common.DiskFile import Gluster_DiskFile [as 别名]
# 或者: from gluster.swift.common.DiskFile.Gluster_DiskFile import put_metadata [as 别名]
 def test_put_metadata(self):
     td = tempfile.mkdtemp()
     the_path = os.path.join(td, "vol0", "bar")
     the_dir = os.path.join(the_path, "z")
     try:
         os.makedirs(the_dir)
         gdf = Gluster_DiskFile(td, "vol0", "p57", "ufo47", "bar", "z", self.lg)
         md = {"Content-Type": "application/octet-stream", "a": "b"}
         gdf.put_metadata(md.copy())
         assert gdf.metadata == md, "gdf.metadata = %r, md = %r" % (gdf.metadata, md)
         assert _metadata[the_dir] == md
     finally:
         shutil.rmtree(td)
开发者ID:portante,项目名称:glusterfs,代码行数:15,代码来源:test_diskfile.py

示例3: test_put_w_marker_dir

# 需要导入模块: from gluster.swift.common.DiskFile import Gluster_DiskFile [as 别名]
# 或者: from gluster.swift.common.DiskFile.Gluster_DiskFile import put_metadata [as 别名]
 def test_put_w_marker_dir(self):
     td = tempfile.mkdtemp()
     the_path = os.path.join(td, "vol0", "bar")
     the_dir = os.path.join(the_path, "dir")
     try:
         os.makedirs(the_dir)
         gdf = Gluster_DiskFile(td, "vol0", "p57", "ufo47", "bar", "dir", self.lg)
         newmd = gdf.metadata.copy()
         newmd["X-Object-Meta-test"] = "1234"
         gdf.put_metadata(newmd)
         assert gdf.metadata == newmd
         assert _metadata[the_dir] == newmd
     finally:
         shutil.rmtree(td)
开发者ID:portante,项目名称:glusterfs,代码行数:16,代码来源:test_diskfile.py

示例4: test_put_w_meta_file

# 需要导入模块: from gluster.swift.common.DiskFile import Gluster_DiskFile [as 别名]
# 或者: from gluster.swift.common.DiskFile.Gluster_DiskFile import put_metadata [as 别名]
 def test_put_w_meta_file(self):
     td = tempfile.mkdtemp()
     the_path = os.path.join(td, "vol0", "bar")
     the_file = os.path.join(the_path, "z")
     try:
         os.makedirs(the_path)
         with open(the_file, "wb") as fd:
             fd.write("1234")
         gdf = Gluster_DiskFile(td, "vol0", "p57", "ufo47", "bar", "z", self.lg)
         newmd = gdf.metadata.copy()
         newmd["X-Object-Meta-test"] = "1234"
         gdf.put_metadata(newmd)
         assert gdf.metadata == newmd
         assert _metadata[the_file] == newmd
     finally:
         shutil.rmtree(td)
开发者ID:portante,项目名称:glusterfs,代码行数:18,代码来源:test_diskfile.py


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