本文整理汇总了Python中Naked.toolshed.network.HTTP.post_bin_write_file方法的典型用法代码示例。如果您正苦于以下问题:Python HTTP.post_bin_write_file方法的具体用法?Python HTTP.post_bin_write_file怎么用?Python HTTP.post_bin_write_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Naked.toolshed.network.HTTP
的用法示例。
在下文中一共展示了HTTP.post_bin_write_file方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_http_post_text_file_present
# 需要导入模块: from Naked.toolshed.network import HTTP [as 别名]
# 或者: from Naked.toolshed.network.HTTP import post_bin_write_file [as 别名]
def test_http_post_text_file_present(self):
"""Test HTTP POST request text file write does not occur when file already exists"""
filepath = os.path.join('testfiles', 'keep', 'file1.txt')
if not file_exists(filepath):
raise RuntimeError("Missing test file for unit test")
http = HTTP('http://httpbin.org/gzip')
response = http.post_bin_write_file(filepath)
self.assertEqual(False, response)
示例2: test_http_post_binary_file_present
# 需要导入模块: from Naked.toolshed.network import HTTP [as 别名]
# 或者: from Naked.toolshed.network.HTTP import post_bin_write_file [as 别名]
def test_http_post_binary_file_present(self):
"""Test HTTP POST request binary file write when file does exist - should not write by default"""
filepath = os.path.join('testfiles', 'keep', 'test.tar.gz')
if not file_exists(filepath):
raise RuntimeError("Missing test file for unit test")
http = HTTP('http://httpbin.org/gzip')
response = http.post_bin_write_file(filepath)
self.assertEqual(False, response)
示例3: test_http_post_text_file_present_request_overwrite
# 需要导入模块: from Naked.toolshed.network import HTTP [as 别名]
# 或者: from Naked.toolshed.network.HTTP import post_bin_write_file [as 别名]
def test_http_post_text_file_present_request_overwrite(self):
"""Test HTTP request text file write does occur when file present and request overwrite"""
filepath = os.path.join('testfiles', 'testdir', 'post.txt')
if not file_exists(filepath):
fw = FileWriter(filepath)
fw.write('test')
http = HTTP('http://httpbin.org/gzip')
response = http.post_bin_write_file(filepath, overwrite_existing=True)
self.assertEqual(True, response)
示例4: test_http_post_binary_file_absent
# 需要导入模块: from Naked.toolshed.network import HTTP [as 别名]
# 或者: from Naked.toolshed.network.HTTP import post_bin_write_file [as 别名]
def test_http_post_binary_file_absent(self):
"""Test HTTP POST request binary file write when the file does not exist"""
filepath = os.path.join('testfiles', 'testdir', 'post.gz')
if file_exists(filepath):
os.remove(filepath)
http = HTTP("http://httpbin.org/gzip")
http_data_write = http.post_bin_write_file(filepath)
self.assertEqual(True, http_data_write) #test boolean for confirmation of data write
self.assertEqual(True, file_exists(filepath))
示例5: test_http_post_binary_file_present_request_overwrite
# 需要导入模块: from Naked.toolshed.network import HTTP [as 别名]
# 或者: from Naked.toolshed.network.HTTP import post_bin_write_file [as 别名]
def test_http_post_binary_file_present_request_overwrite(self):
"""Test HTTP POST request binary file write when file does exist and request for overwrite"""
filepath = os.path.join('testfiles', 'testdir', 'post.gz')
if not file_exists(filepath):
fw = FileWriter(filepath)
fw.write('test')
http = HTTP('http://httpbin.org/gzip')
response = http.post_bin_write_file(filepath, overwrite_existing=True)
self.assertEqual(True, response)
self.assertEqual(True, file_exists(filepath))