本文整理匯總了Python中awscli.customizations.s3.s3.CommandParameters.check_path_type方法的典型用法代碼示例。如果您正苦於以下問題:Python CommandParameters.check_path_type方法的具體用法?Python CommandParameters.check_path_type怎麽用?Python CommandParameters.check_path_type使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類awscli.customizations.s3.s3.CommandParameters
的用法示例。
在下文中一共展示了CommandParameters.check_path_type方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_check_path_type_fail
# 需要導入模塊: from awscli.customizations.s3.s3 import CommandParameters [as 別名]
# 或者: from awscli.customizations.s3.s3.CommandParameters import check_path_type [as 別名]
def test_check_path_type_fail(self):
# This tests the class's ability to determine whether the correct
# path types have been passed for a particular command. It test every
# possible combination that is incorrect for every command.
cmds = {'cp': ['local', 'locallocal', 's3'],
'mv': ['local', 'locallocal', 's3'],
'rm': ['local', 'locallocal', 's3s3', 'locals3', 's3local'],
'ls': ['local', 'locallocal', 's3s3', 'locals3', 's3local'],
'sync': ['local', 'locallocal', 's3'],
'mb': ['local', 'locallocal', 's3s3', 'locals3', 's3local'],
'rb': ['local', 'locallocal', 's3s3', 'locals3', 's3local']}
s3_file = 's3://' + self.bucket + '/' + 'text1.txt'
local_file = self.loc_files[0]
combos = {'s3s3': [s3_file, s3_file],
's3local': [s3_file, local_file],
'locals3': [local_file, s3_file],
's3': [s3_file],
'local': [local_file],
'locallocal': [local_file, local_file]}
for cmd in cmds.keys():
cmd_param = CommandParameters(self.session, cmd, {})
cmd_param.check_region(mock.Mock())
wrong_paths = cmds[cmd]
for path_args in wrong_paths:
with self.assertRaises(TypeError):
cmd_param.check_path_type(combos[path_args])
示例2: test_check_path_type_fail
# 需要導入模塊: from awscli.customizations.s3.s3 import CommandParameters [as 別名]
# 或者: from awscli.customizations.s3.s3.CommandParameters import check_path_type [as 別名]
def test_check_path_type_fail(self):
"""
This tests the class's ability to determine whether the correct
path types have been passed for a particular command. It test every
possible combination that is incorrect for every command.
"""
cmds = {
"cp": ["local", "locallocal", "s3"],
"mv": ["local", "locallocal", "s3"],
"rm": ["local", "locallocal", "s3s3", "locals3", "s3local"],
"ls": ["local", "locallocal", "s3s3", "locals3", "s3local"],
"sync": ["local", "locallocal", "s3"],
"mb": ["local", "locallocal", "s3s3", "locals3", "s3local"],
"rb": ["local", "locallocal", "s3s3", "locals3", "s3local"],
}
s3_file = "s3://" + self.bucket + "/" + "text1.txt"
local_file = self.loc_files[0]
combos = {
"s3s3": [s3_file, s3_file],
"s3local": [s3_file, local_file],
"locals3": [local_file, s3_file],
"s3": [s3_file],
"local": [local_file],
"locallocal": [local_file, local_file],
}
for cmd in cmds.keys():
cmd_param = CommandParameters(self.session, cmd, {})
cmd_param.check_region([])
wrong_paths = cmds[cmd]
for path_args in wrong_paths:
with self.assertRaises(TypeError):
cmd_param.check_path_type(combos[path_args])