本文整理匯總了Python中pybossa.uploader.rackspace.RackspaceUploader.file_exists方法的典型用法代碼示例。如果您正苦於以下問題:Python RackspaceUploader.file_exists方法的具體用法?Python RackspaceUploader.file_exists怎麽用?Python RackspaceUploader.file_exists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pybossa.uploader.rackspace.RackspaceUploader
的用法示例。
在下文中一共展示了RackspaceUploader.file_exists方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_file_exists_for_missing_file
# 需要導入模塊: from pybossa.uploader.rackspace import RackspaceUploader [as 別名]
# 或者: from pybossa.uploader.rackspace.RackspaceUploader import file_exists [as 別名]
def test_file_exists_for_missing_file(self, credentials):
"""Test RACKSPACE UPLOADER file_exists returns False if the file does not exist"""
with patch('pybossa.uploader.rackspace.pyrax.cloudfiles') as mycf:
u = RackspaceUploader()
u.init_app(self.flask_app)
container = MagicMock()
container.get_object.side_effect = NoSuchObject
mycf.get_container.return_value = container
file_exists = u.file_exists('noexist.txt', 'mycontainer')
mycf.get_container.assert_called_with('mycontainer')
assert file_exists is False
示例2: test_file_exists_for_real_file
# 需要導入模塊: from pybossa.uploader.rackspace import RackspaceUploader [as 別名]
# 或者: from pybossa.uploader.rackspace.RackspaceUploader import file_exists [as 別名]
def test_file_exists_for_real_file(self, credentials):
"""Test RACKSPACE UPLOADER file_exists returns True if the file exists"""
with patch('pybossa.uploader.rackspace.pyrax.cloudfiles') as mycf:
u = RackspaceUploader()
u.init_app(self.flask_app)
filename='test.jpg'
container = MagicMock()
container.get_object.return_value = "Real File"
mycf.get_container.return_value = container
file_exists = u.file_exists(filename, 'mycontainer')
mycf.get_container.assert_called_with('mycontainer')
container.get_object.assert_called_with(filename)
assert file_exists is True