|
@@ -15,7 +15,7 @@ def test_run_arbitrary_borg_calls_borg_with_parameters():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -36,7 +36,7 @@ def test_run_arbitrary_borg_with_log_info_calls_borg_with_info_parameter():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo', '--info'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -58,7 +58,7 @@ def test_run_arbitrary_borg_with_log_debug_calls_borg_with_debug_parameter():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo', '--debug', '--show-rc'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -83,7 +83,7 @@ def test_run_arbitrary_borg_with_lock_wait_calls_borg_with_lock_wait_parameters(
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo', '--lock-wait', '5'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -106,7 +106,7 @@ def test_run_arbitrary_borg_with_archive_calls_borg_with_archive_parameter():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo::archive'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -128,7 +128,7 @@ def test_run_arbitrary_borg_with_local_path_calls_borg_via_local_path():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg1', 'break-lock', 'repo'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg1',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -152,7 +152,7 @@ def test_run_arbitrary_borg_with_remote_path_calls_borg_with_remote_path_paramet
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo', '--remote-path', 'borg1'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -174,7 +174,7 @@ def test_run_arbitrary_borg_passes_borg_specific_parameters_to_borg():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'list', 'repo', '--progress'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -195,7 +195,7 @@ def test_run_arbitrary_borg_omits_dash_dash_in_parameters_passed_to_borg():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'break-lock', 'repo'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -216,7 +216,7 @@ def test_run_arbitrary_borg_without_borg_specific_parameters_does_not_raise():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg',),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -237,7 +237,7 @@ def test_run_arbitrary_borg_passes_key_sub_command_to_borg_before_repository():
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'key', 'export', 'repo'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -258,7 +258,7 @@ def test_run_arbitrary_borg_passes_debug_sub_command_to_borg_before_repository()
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'debug', 'dump-manifest', 'repo', 'path'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -279,7 +279,7 @@ def test_run_arbitrary_borg_with_debug_info_command_does_not_pass_borg_repositor
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'debug', 'info'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|
|
@@ -300,7 +300,7 @@ def test_run_arbitrary_borg_with_debug_convert_profile_command_does_not_pass_bor
|
|
|
flexmock(module.environment).should_receive('make_environment')
|
|
|
flexmock(module).should_receive('execute_command').with_args(
|
|
|
('borg', 'debug', 'convert-profile', 'in', 'out'),
|
|
|
- output_log_level=module.borgmatic.logger.ANSWER,
|
|
|
+ output_file=module.borgmatic.execute.DO_NOT_CAPTURE,
|
|
|
borg_local_path='borg',
|
|
|
extra_environment=None,
|
|
|
)
|