|
@@ -8,7 +8,7 @@ def test_parse_arguments_with_no_arguments_uses_defaults():
|
|
|
config_paths = ['default']
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
|
|
|
|
|
|
- arguments = module.parse_arguments()
|
|
|
+ arguments = module.parse_arguments({})
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == config_paths
|
|
@@ -21,7 +21,7 @@ def test_parse_arguments_with_no_arguments_uses_defaults():
|
|
|
def test_parse_arguments_with_multiple_config_flags_parses_as_list():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--config', 'myconfig', '--config', 'otherconfig')
|
|
|
+ arguments = module.parse_arguments({}, '--config', 'myconfig', '--config', 'otherconfig')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == ['myconfig', 'otherconfig']
|
|
@@ -34,7 +34,7 @@ def test_parse_arguments_with_multiple_config_flags_parses_as_list():
|
|
|
def test_parse_arguments_with_action_after_config_path_omits_action():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--config', 'myconfig', 'list', '--json')
|
|
|
+ arguments = module.parse_arguments({}, '--config', 'myconfig', 'list', '--json')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == ['myconfig']
|
|
@@ -45,7 +45,9 @@ def test_parse_arguments_with_action_after_config_path_omits_action():
|
|
|
def test_parse_arguments_with_action_after_config_path_omits_aliased_action():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--config', 'myconfig', 'init', '--encryption', 'repokey')
|
|
|
+ arguments = module.parse_arguments(
|
|
|
+ {}, '--config', 'myconfig', 'init', '--encryption', 'repokey'
|
|
|
+ )
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == ['myconfig']
|
|
@@ -56,7 +58,7 @@ def test_parse_arguments_with_action_after_config_path_omits_aliased_action():
|
|
|
def test_parse_arguments_with_action_and_positional_arguments_after_config_path_omits_action_and_arguments():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--config', 'myconfig', 'borg', 'key', 'export')
|
|
|
+ arguments = module.parse_arguments({}, '--config', 'myconfig', 'borg', 'key', 'export')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == ['myconfig']
|
|
@@ -68,7 +70,7 @@ def test_parse_arguments_with_verbosity_overrides_default():
|
|
|
config_paths = ['default']
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
|
|
|
|
|
|
- arguments = module.parse_arguments('--verbosity', '1')
|
|
|
+ arguments = module.parse_arguments({}, '--verbosity', '1')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == config_paths
|
|
@@ -82,7 +84,7 @@ def test_parse_arguments_with_syslog_verbosity_overrides_default():
|
|
|
config_paths = ['default']
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
|
|
|
|
|
|
- arguments = module.parse_arguments('--syslog-verbosity', '2')
|
|
|
+ arguments = module.parse_arguments({}, '--syslog-verbosity', '2')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == config_paths
|
|
@@ -96,7 +98,7 @@ def test_parse_arguments_with_log_file_verbosity_overrides_default():
|
|
|
config_paths = ['default']
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(config_paths)
|
|
|
|
|
|
- arguments = module.parse_arguments('--log-file-verbosity', '-1')
|
|
|
+ arguments = module.parse_arguments({}, '--log-file-verbosity', '-1')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.config_paths == config_paths
|
|
@@ -109,7 +111,7 @@ def test_parse_arguments_with_log_file_verbosity_overrides_default():
|
|
|
def test_parse_arguments_with_single_override_parses():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--override', 'foo.bar=baz')
|
|
|
+ arguments = module.parse_arguments({}, '--override', 'foo.bar=baz')
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
|
assert global_arguments.overrides == ['foo.bar=baz']
|
|
@@ -119,7 +121,7 @@ def test_parse_arguments_with_multiple_overrides_flags_parses():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
arguments = module.parse_arguments(
|
|
|
- '--override', 'foo.bar=baz', '--override', 'foo.quux=7', '--override', 'this.that=8'
|
|
|
+ {}, '--override', 'foo.bar=baz', '--override', 'foo.quux=7', '--override', 'this.that=8'
|
|
|
)
|
|
|
|
|
|
global_arguments = arguments['global']
|
|
@@ -127,7 +129,7 @@ def test_parse_arguments_with_multiple_overrides_flags_parses():
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_list_json_overrides_default():
|
|
|
- arguments = module.parse_arguments('list', '--json')
|
|
|
+ arguments = module.parse_arguments({}, 'list', '--json')
|
|
|
|
|
|
assert 'list' in arguments
|
|
|
assert arguments['list'].json is True
|
|
@@ -136,7 +138,7 @@ def test_parse_arguments_with_list_json_overrides_default():
|
|
|
def test_parse_arguments_with_no_actions_defaults_to_all_actions_enabled():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments()
|
|
|
+ arguments = module.parse_arguments({})
|
|
|
|
|
|
assert 'prune' in arguments
|
|
|
assert 'create' in arguments
|
|
@@ -146,7 +148,7 @@ def test_parse_arguments_with_no_actions_defaults_to_all_actions_enabled():
|
|
|
def test_parse_arguments_with_no_actions_passes_argument_to_relevant_actions():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--stats', '--list')
|
|
|
+ arguments = module.parse_arguments({}, '--stats', '--list')
|
|
|
|
|
|
assert 'prune' in arguments
|
|
|
assert arguments['prune'].stats
|
|
@@ -161,7 +163,7 @@ def test_parse_arguments_with_help_and_no_actions_shows_global_help(capsys):
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit) as exit:
|
|
|
- module.parse_arguments('--help')
|
|
|
+ module.parse_arguments({}, '--help')
|
|
|
|
|
|
assert exit.value.code == 0
|
|
|
captured = capsys.readouterr()
|
|
@@ -173,7 +175,7 @@ def test_parse_arguments_with_help_and_action_shows_action_help(capsys):
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit) as exit:
|
|
|
- module.parse_arguments('create', '--help')
|
|
|
+ module.parse_arguments({}, 'create', '--help')
|
|
|
|
|
|
assert exit.value.code == 0
|
|
|
captured = capsys.readouterr()
|
|
@@ -185,7 +187,7 @@ def test_parse_arguments_with_help_and_action_shows_action_help(capsys):
|
|
|
def test_parse_arguments_with_action_before_global_options_parses_options():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('prune', '--verbosity', '2')
|
|
|
+ arguments = module.parse_arguments({}, 'prune', '--verbosity', '2')
|
|
|
|
|
|
assert 'prune' in arguments
|
|
|
assert arguments['global'].verbosity == 2
|
|
@@ -194,7 +196,7 @@ def test_parse_arguments_with_action_before_global_options_parses_options():
|
|
|
def test_parse_arguments_with_global_options_before_action_parses_options():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('--verbosity', '2', 'prune')
|
|
|
+ arguments = module.parse_arguments({}, '--verbosity', '2', 'prune')
|
|
|
|
|
|
assert 'prune' in arguments
|
|
|
assert arguments['global'].verbosity == 2
|
|
@@ -203,7 +205,7 @@ def test_parse_arguments_with_global_options_before_action_parses_options():
|
|
|
def test_parse_arguments_with_prune_action_leaves_other_actions_disabled():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('prune')
|
|
|
+ arguments = module.parse_arguments({}, 'prune')
|
|
|
|
|
|
assert 'prune' in arguments
|
|
|
assert 'create' not in arguments
|
|
@@ -213,7 +215,7 @@ def test_parse_arguments_with_prune_action_leaves_other_actions_disabled():
|
|
|
def test_parse_arguments_with_multiple_actions_leaves_other_action_disabled():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- arguments = module.parse_arguments('create', 'check')
|
|
|
+ arguments = module.parse_arguments({}, 'create', 'check')
|
|
|
|
|
|
assert 'prune' not in arguments
|
|
|
assert 'create' in arguments
|
|
@@ -224,60 +226,53 @@ def test_parse_arguments_disallows_invalid_argument():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--posix-me-harder')
|
|
|
+ module.parse_arguments({}, '--posix-me-harder')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_encryption_mode_without_init():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--config', 'myconfig', '--encryption', 'repokey')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', '--encryption', 'repokey')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_encryption_mode_with_init():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'init', '--encryption', 'repokey')
|
|
|
-
|
|
|
-
|
|
|
-def test_parse_arguments_requires_encryption_mode_with_init():
|
|
|
- flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
-
|
|
|
- with pytest.raises(SystemExit):
|
|
|
- module.parse_arguments('--config', 'myconfig', 'init')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'init', '--encryption', 'repokey')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_append_only_without_init():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--config', 'myconfig', '--append-only')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', '--append-only')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_storage_quota_without_init():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--config', 'myconfig', '--storage-quota', '5G')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', '--storage-quota', '5G')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_init_and_prune():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'init', '--encryption', 'repokey', 'prune')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'init', '--encryption', 'repokey', 'prune')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_init_and_create():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'init', '--encryption', 'repokey', 'create')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'init', '--encryption', 'repokey', 'create')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_repository_with_extract():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
module.parse_arguments(
|
|
|
- '--config', 'myconfig', 'extract', '--repository', 'test.borg', '--archive', 'test'
|
|
|
+ {}, '--config', 'myconfig', 'extract', '--repository', 'test.borg', '--archive', 'test'
|
|
|
)
|
|
|
|
|
|
|
|
@@ -285,6 +280,7 @@ def test_parse_arguments_allows_repository_with_mount():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
module.parse_arguments(
|
|
|
+ {},
|
|
|
'--config',
|
|
|
'myconfig',
|
|
|
'mount',
|
|
@@ -300,187 +296,187 @@ def test_parse_arguments_allows_repository_with_mount():
|
|
|
def test_parse_arguments_allows_repository_with_list():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'list', '--repository', 'test.borg')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'list', '--repository', 'test.borg')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_archive_unless_action_consumes_it():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--config', 'myconfig', '--archive', 'test')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', '--archive', 'test')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_paths_unless_action_consumes_it():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--config', 'myconfig', '--path', 'test')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', '--path', 'test')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_other_actions_with_config_bootstrap():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('config', 'bootstrap', '--repository', 'test.borg', 'list')
|
|
|
+ module.parse_arguments({}, 'config', 'bootstrap', '--repository', 'test.borg', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_archive_with_extract():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'extract', '--archive', 'test')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'extract', '--archive', 'test')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_archive_with_mount():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
module.parse_arguments(
|
|
|
- '--config', 'myconfig', 'mount', '--archive', 'test', '--mount-point', '/mnt'
|
|
|
+ {}, '--config', 'myconfig', 'mount', '--archive', 'test', '--mount-point', '/mnt'
|
|
|
)
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_archive_with_restore():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'restore', '--archive', 'test')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'restore', '--archive', 'test')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_archive_with_list():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--config', 'myconfig', 'list', '--archive', 'test')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'list', '--archive', 'test')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_requires_archive_with_extract():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
- module.parse_arguments('--config', 'myconfig', 'extract')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'extract')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_requires_archive_with_restore():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
- module.parse_arguments('--config', 'myconfig', 'restore')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'restore')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_requires_mount_point_with_mount():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
- module.parse_arguments('--config', 'myconfig', 'mount', '--archive', 'test')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'mount', '--archive', 'test')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_requires_mount_point_with_umount():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit):
|
|
|
- module.parse_arguments('--config', 'myconfig', 'umount')
|
|
|
+ module.parse_arguments({}, '--config', 'myconfig', 'umount')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_progress_before_create():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--progress', 'create', 'list')
|
|
|
+ module.parse_arguments({}, '--progress', 'create', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_progress_after_create():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('create', '--progress', 'list')
|
|
|
+ module.parse_arguments({}, 'create', '--progress', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_progress_and_extract():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--progress', 'extract', '--archive', 'test', 'list')
|
|
|
+ module.parse_arguments({}, '--progress', 'extract', '--archive', 'test', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_progress_without_create():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--progress', 'list')
|
|
|
+ module.parse_arguments({}, '--progress', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_stats_and_create_flags_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--stats', 'create', 'list')
|
|
|
+ module.parse_arguments({}, '--stats', 'create', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_stats_and_prune_flags_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--stats', 'prune', 'list')
|
|
|
+ module.parse_arguments({}, '--stats', 'prune', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_stats_flag_but_no_create_or_prune_flag_raises_value_error():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--stats', 'list')
|
|
|
+ module.parse_arguments({}, '--stats', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_list_and_create_flags_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--list', 'create')
|
|
|
+ module.parse_arguments({}, '--list', 'create')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_list_and_prune_flags_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--list', 'prune')
|
|
|
+ module.parse_arguments({}, '--list', 'prune')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_list_flag_but_no_relevant_action_raises_value_error():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- with pytest.raises(SystemExit):
|
|
|
- module.parse_arguments('--list', 'repo-create')
|
|
|
+ with pytest.raises(ValueError):
|
|
|
+ module.parse_arguments({}, '--list', 'repo-create')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_list_with_progress_for_create_action():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('create', '--list', '--progress')
|
|
|
+ module.parse_arguments({}, 'create', '--list', '--progress')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_list_with_json_for_create_action():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('create', '--list', '--json')
|
|
|
+ module.parse_arguments({}, 'create', '--list', '--json')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_allows_json_with_list_or_info():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('list', '--json')
|
|
|
- module.parse_arguments('info', '--json')
|
|
|
+ module.parse_arguments({}, 'list', '--json')
|
|
|
+ module.parse_arguments({}, 'info', '--json')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_json_with_both_list_and_info():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('list', 'info', '--json')
|
|
|
+ module.parse_arguments({}, 'list', 'info', '--json')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_json_with_both_list_and_repo_info():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('list', 'repo-info', '--json')
|
|
|
+ module.parse_arguments({}, 'list', 'repo-info', '--json')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_json_with_both_repo_info_and_info():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('repo-info', 'info', '--json')
|
|
|
+ module.parse_arguments({}, 'repo-info', 'info', '--json')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_transfer_with_both_archive_and_match_archives():
|
|
@@ -488,6 +484,7 @@ def test_parse_arguments_disallows_transfer_with_both_archive_and_match_archives
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
module.parse_arguments(
|
|
|
+ {},
|
|
|
'transfer',
|
|
|
'--source-repository',
|
|
|
'source.borg',
|
|
@@ -502,74 +499,74 @@ def test_parse_arguments_disallows_list_with_both_prefix_and_match_archives():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('list', '--prefix', 'foo', '--match-archives', 'sh:*bar')
|
|
|
+ module.parse_arguments({}, 'list', '--prefix', 'foo', '--match-archives', 'sh:*bar')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_repo_list_with_both_prefix_and_match_archives():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('repo-list', '--prefix', 'foo', '--match-archives', 'sh:*bar')
|
|
|
+ module.parse_arguments({}, 'repo-list', '--prefix', 'foo', '--match-archives', 'sh:*bar')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_info_with_both_archive_and_match_archives():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('info', '--archive', 'foo', '--match-archives', 'sh:*bar')
|
|
|
+ module.parse_arguments({}, 'info', '--archive', 'foo', '--match-archives', 'sh:*bar')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_info_with_both_archive_and_prefix():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('info', '--archive', 'foo', '--prefix', 'bar')
|
|
|
+ module.parse_arguments({}, 'info', '--archive', 'foo', '--prefix', 'bar')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_disallows_info_with_both_prefix_and_match_archives():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('info', '--prefix', 'foo', '--match-archives', 'sh:*bar')
|
|
|
+ module.parse_arguments({}, 'info', '--prefix', 'foo', '--match-archives', 'sh:*bar')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_check_only_extract_does_not_raise_extract_subparser_error():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('check', '--only', 'extract')
|
|
|
+ module.parse_arguments({}, 'check', '--only', 'extract')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_extract_archive_check_does_not_raise_check_subparser_error():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('extract', '--archive', 'check')
|
|
|
+ module.parse_arguments({}, 'extract', '--archive', 'check')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_extract_with_check_only_extract_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('extract', '--archive', 'name', 'check', '--only', 'extract')
|
|
|
+ module.parse_arguments({}, 'extract', '--archive', 'name', 'check', '--only', 'extract')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_bootstrap_without_config_errors():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('bootstrap')
|
|
|
+ module.parse_arguments({}, 'bootstrap')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_config_with_no_subaction_errors():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('config')
|
|
|
+ module.parse_arguments({}, 'config')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_config_with_help_shows_config_help(capsys):
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit) as exit:
|
|
|
- module.parse_arguments('config', '--help')
|
|
|
+ module.parse_arguments({}, 'config', '--help')
|
|
|
|
|
|
assert exit.value.code == 0
|
|
|
captured = capsys.readouterr()
|
|
@@ -582,7 +579,7 @@ def test_parse_arguments_config_with_subaction_but_missing_flags_errors():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit) as exit:
|
|
|
- module.parse_arguments('config', 'bootstrap')
|
|
|
+ module.parse_arguments({}, 'config', 'bootstrap')
|
|
|
|
|
|
assert exit.value.code == 2
|
|
|
|
|
@@ -591,7 +588,7 @@ def test_parse_arguments_config_with_subaction_and_help_shows_subaction_help(cap
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(SystemExit) as exit:
|
|
|
- module.parse_arguments('config', 'bootstrap', '--help')
|
|
|
+ module.parse_arguments({}, 'config', 'bootstrap', '--help')
|
|
|
|
|
|
assert exit.value.code == 0
|
|
|
captured = capsys.readouterr()
|
|
@@ -601,26 +598,30 @@ def test_parse_arguments_config_with_subaction_and_help_shows_subaction_help(cap
|
|
|
def test_parse_arguments_config_with_subaction_and_required_flags_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('config', 'bootstrap', '--repository', 'repo.borg')
|
|
|
+ module.parse_arguments({}, 'config', 'bootstrap', '--repository', 'repo.borg')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_config_with_subaction_and_global_flags_at_start_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('--verbosity', '1', 'config', 'bootstrap', '--repository', 'repo.borg')
|
|
|
+ module.parse_arguments(
|
|
|
+ {}, '--verbosity', '1', 'config', 'bootstrap', '--repository', 'repo.borg'
|
|
|
+ )
|
|
|
|
|
|
|
|
|
def test_parse_arguments_config_with_subaction_and_global_flags_at_end_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('config', 'bootstrap', '--repository', 'repo.borg', '--verbosity', '1')
|
|
|
+ module.parse_arguments(
|
|
|
+ {}, 'config', 'bootstrap', '--repository', 'repo.borg', '--verbosity', '1'
|
|
|
+ )
|
|
|
|
|
|
|
|
|
def test_parse_arguments_config_with_subaction_and_explicit_config_file_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
module.parse_arguments(
|
|
|
- 'config', 'bootstrap', '--repository', 'repo.borg', '--config', 'test.yaml'
|
|
|
+ {}, 'config', 'bootstrap', '--repository', 'repo.borg', '--config', 'test.yaml'
|
|
|
)
|
|
|
|
|
|
|
|
@@ -628,10 +629,23 @@ def test_parse_arguments_with_borg_action_and_dry_run_raises():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
with pytest.raises(ValueError):
|
|
|
- module.parse_arguments('--dry-run', 'borg', 'list')
|
|
|
+ module.parse_arguments({}, '--dry-run', 'borg', 'list')
|
|
|
|
|
|
|
|
|
def test_parse_arguments_with_borg_action_and_no_dry_run_does_not_raise():
|
|
|
flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
|
|
|
- module.parse_arguments('borg', 'list')
|
|
|
+ module.parse_arguments({}, 'borg', 'list')
|
|
|
+
|
|
|
+
|
|
|
+def test_parse_arguments_with_argument_from_schema_does_not_raise():
|
|
|
+ flexmock(module.collect).should_receive('get_default_config_paths').and_return(['default'])
|
|
|
+
|
|
|
+ module.parse_arguments(
|
|
|
+ {
|
|
|
+ 'type': 'object',
|
|
|
+ 'properties': {'foo': {'type': 'object', 'properties': {'bar': {'type': 'integer'}}}},
|
|
|
+ },
|
|
|
+ '--foo.bar',
|
|
|
+ '3',
|
|
|
+ )
|