2020-05-13 00:49:49 +02:00
|
|
|
import subprocess
|
|
|
|
|
2019-09-25 21:03:10 +02:00
|
|
|
import pytest
|
2019-06-12 22:09:04 +02:00
|
|
|
from flexmock import flexmock
|
|
|
|
|
|
|
|
from borgmatic import execute as module
|
|
|
|
|
|
|
|
|
2019-12-01 01:55:05 +01:00
|
|
|
@pytest.mark.parametrize(
|
2024-01-21 20:34:40 +01:00
|
|
|
'command,exit_code,borg_local_path,borg_exit_codes,expected_result',
|
2019-12-01 01:55:05 +01:00
|
|
|
(
|
2024-01-21 20:34:40 +01:00
|
|
|
(['grep'], 2, None, None, module.Exit_status.ERROR),
|
|
|
|
(['grep'], 2, 'borg', None, module.Exit_status.ERROR),
|
|
|
|
(['borg'], 2, 'borg', None, module.Exit_status.ERROR),
|
|
|
|
(['borg1'], 2, 'borg1', None, module.Exit_status.ERROR),
|
|
|
|
(['grep'], 1, None, None, module.Exit_status.ERROR),
|
|
|
|
(['grep'], 1, 'borg', None, module.Exit_status.ERROR),
|
|
|
|
(['borg'], 1, 'borg', None, module.Exit_status.WARNING),
|
|
|
|
(['borg1'], 1, 'borg1', None, module.Exit_status.WARNING),
|
|
|
|
(['grep'], 100, None, None, module.Exit_status.ERROR),
|
|
|
|
(['grep'], 100, 'borg', None, module.Exit_status.ERROR),
|
|
|
|
(['borg'], 100, 'borg', None, module.Exit_status.WARNING),
|
|
|
|
(['borg1'], 100, 'borg1', None, module.Exit_status.WARNING),
|
|
|
|
(['grep'], 0, None, None, module.Exit_status.SUCCESS),
|
|
|
|
(['grep'], 0, 'borg', None, module.Exit_status.SUCCESS),
|
|
|
|
(['borg'], 0, 'borg', None, module.Exit_status.SUCCESS),
|
|
|
|
(['borg1'], 0, 'borg1', None, module.Exit_status.SUCCESS),
|
2021-06-08 20:43:55 +02:00
|
|
|
# -9 exit code occurs when child process get SIGKILLed.
|
2024-01-21 20:34:40 +01:00
|
|
|
(['grep'], -9, None, None, module.Exit_status.ERROR),
|
|
|
|
(['grep'], -9, 'borg', None, module.Exit_status.ERROR),
|
|
|
|
(['borg'], -9, 'borg', None, module.Exit_status.ERROR),
|
|
|
|
(['borg1'], -9, 'borg1', None, module.Exit_status.ERROR),
|
|
|
|
(['borg'], None, None, None, module.Exit_status.STILL_RUNNING),
|
|
|
|
(['borg'], 1, 'borg', [], module.Exit_status.WARNING),
|
|
|
|
(['borg'], 1, 'borg', [{}], module.Exit_status.WARNING),
|
|
|
|
(['borg'], 1, 'borg', [{'code': 1}], module.Exit_status.WARNING),
|
|
|
|
(['grep'], 1, 'borg', [{'code': 100, 'treat_as': 'error'}], module.Exit_status.ERROR),
|
|
|
|
(['borg'], 1, 'borg', [{'code': 100, 'treat_as': 'error'}], module.Exit_status.WARNING),
|
|
|
|
(['borg'], 1, 'borg', [{'code': 1, 'treat_as': 'error'}], module.Exit_status.ERROR),
|
|
|
|
(['borg'], 2, 'borg', [{'code': 99, 'treat_as': 'warning'}], module.Exit_status.ERROR),
|
|
|
|
(['borg'], 2, 'borg', [{'code': 2, 'treat_as': 'warning'}], module.Exit_status.WARNING),
|
|
|
|
(['borg'], 100, 'borg', [{'code': 1, 'treat_as': 'error'}], module.Exit_status.WARNING),
|
|
|
|
(['borg'], 100, 'borg', [{'code': 100, 'treat_as': 'error'}], module.Exit_status.ERROR),
|
2019-12-01 01:55:05 +01:00
|
|
|
),
|
|
|
|
)
|
2024-01-21 20:34:40 +01:00
|
|
|
def test_interpret_exit_code_respects_exit_code_and_borg_local_path(
|
|
|
|
command, exit_code, borg_local_path, borg_exit_codes, expected_result
|
2019-12-01 01:55:05 +01:00
|
|
|
):
|
2024-01-21 20:34:40 +01:00
|
|
|
assert (
|
|
|
|
module.interpret_exit_code(command, exit_code, borg_local_path, borg_exit_codes)
|
|
|
|
is expected_result
|
|
|
|
)
|
2019-10-31 20:57:36 +01:00
|
|
|
|
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
def test_command_for_process_converts_sequence_command_to_string():
|
|
|
|
process = flexmock(args=['foo', 'bar', 'baz'])
|
|
|
|
|
|
|
|
assert module.command_for_process(process) == 'foo bar baz'
|
|
|
|
|
|
|
|
|
|
|
|
def test_command_for_process_passes_through_string_command():
|
|
|
|
process = flexmock(args='foo bar baz')
|
|
|
|
|
|
|
|
assert module.command_for_process(process) == 'foo bar baz'
|
|
|
|
|
|
|
|
|
|
|
|
def test_output_buffer_for_process_returns_stderr_when_stdout_excluded():
|
2020-05-08 18:48:04 +02:00
|
|
|
stdout = flexmock()
|
2020-05-13 00:49:49 +02:00
|
|
|
stderr = flexmock()
|
|
|
|
process = flexmock(stdout=stdout, stderr=stderr)
|
2020-05-08 18:48:04 +02:00
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
assert module.output_buffer_for_process(process, exclude_stdouts=[flexmock(), stdout]) == stderr
|
2020-05-08 18:48:04 +02:00
|
|
|
|
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
def test_output_buffer_for_process_returns_stdout_when_not_excluded():
|
|
|
|
stdout = flexmock()
|
|
|
|
process = flexmock(stdout=stdout)
|
2020-05-08 18:48:04 +02:00
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
assert (
|
|
|
|
module.output_buffer_for_process(process, exclude_stdouts=[flexmock(), flexmock()])
|
|
|
|
== stdout
|
|
|
|
)
|
2020-05-08 18:48:04 +02:00
|
|
|
|
|
|
|
|
2023-03-27 19:36:39 +02:00
|
|
|
def test_append_last_lines_under_max_line_count_appends():
|
|
|
|
last_lines = ['last']
|
|
|
|
flexmock(module.logger).should_receive('log').once()
|
|
|
|
|
|
|
|
module.append_last_lines(
|
|
|
|
last_lines, captured_output=flexmock(), line='line', output_log_level=flexmock()
|
|
|
|
)
|
|
|
|
|
|
|
|
assert last_lines == ['last', 'line']
|
|
|
|
|
|
|
|
|
|
|
|
def test_append_last_lines_over_max_line_count_trims_and_appends():
|
|
|
|
original_last_lines = [str(number) for number in range(0, module.ERROR_OUTPUT_MAX_LINE_COUNT)]
|
|
|
|
last_lines = list(original_last_lines)
|
|
|
|
flexmock(module.logger).should_receive('log').once()
|
|
|
|
|
|
|
|
module.append_last_lines(
|
|
|
|
last_lines, captured_output=flexmock(), line='line', output_log_level=flexmock()
|
|
|
|
)
|
|
|
|
|
|
|
|
assert last_lines == original_last_lines[1:] + ['line']
|
|
|
|
|
|
|
|
|
|
|
|
def test_append_last_lines_with_output_log_level_none_appends_captured_output():
|
|
|
|
last_lines = ['last']
|
|
|
|
captured_output = ['captured']
|
|
|
|
flexmock(module.logger).should_receive('log').never()
|
|
|
|
|
|
|
|
module.append_last_lines(
|
|
|
|
last_lines, captured_output=captured_output, line='line', output_log_level=None
|
|
|
|
)
|
|
|
|
|
|
|
|
assert captured_output == ['captured', 'line']
|
|
|
|
|
|
|
|
|
2024-04-16 19:20:15 +02:00
|
|
|
def test_mask_command_secrets_masks_password_flag_value():
|
|
|
|
assert module.mask_command_secrets(('cooldb', '--username', 'bob', '--password', 'pass')) == (
|
|
|
|
'cooldb',
|
|
|
|
'--username',
|
|
|
|
'bob',
|
|
|
|
'--password',
|
|
|
|
'***',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_mask_command_secrets_passes_through_other_commands():
|
|
|
|
assert module.mask_command_secrets(('cooldb', '--username', 'bob')) == (
|
|
|
|
'cooldb',
|
|
|
|
'--username',
|
|
|
|
'bob',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-12-24 19:33:55 +01:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'full_command,input_file,output_file,environment,expected_result',
|
|
|
|
(
|
|
|
|
(('foo', 'bar'), None, None, None, 'foo bar'),
|
|
|
|
(('foo', 'bar'), flexmock(name='input'), None, None, 'foo bar < input'),
|
|
|
|
(('foo', 'bar'), None, flexmock(name='output'), None, 'foo bar > output'),
|
2024-04-15 20:02:05 +02:00
|
|
|
(
|
|
|
|
('A',) * module.MAX_LOGGED_COMMAND_LENGTH,
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
'A ' * (module.MAX_LOGGED_COMMAND_LENGTH // 2 - 2) + '...',
|
|
|
|
),
|
2023-12-24 19:33:55 +01:00
|
|
|
(
|
|
|
|
('foo', 'bar'),
|
|
|
|
flexmock(name='input'),
|
|
|
|
flexmock(name='output'),
|
|
|
|
None,
|
|
|
|
'foo bar < input > output',
|
|
|
|
),
|
|
|
|
(
|
|
|
|
('foo', 'bar'),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
{'DBPASS': 'secret', 'OTHER': 'thing'},
|
|
|
|
'DBPASS=*** OTHER=*** foo bar',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
def test_log_command_logs_command_constructed_from_arguments(
|
|
|
|
full_command, input_file, output_file, environment, expected_result
|
|
|
|
):
|
2024-04-16 19:20:15 +02:00
|
|
|
flexmock(module).should_receive('mask_command_secrets').replace_with(lambda command: command)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module.logger).should_receive('debug').with_args(expected_result).once()
|
|
|
|
|
|
|
|
module.log_command(full_command, input_file, output_file, environment)
|
|
|
|
|
|
|
|
|
2019-06-12 22:09:04 +02:00
|
|
|
def test_execute_command_calls_full_command():
|
|
|
|
full_command = ['foo', 'bar']
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-11-08 20:17:52 +01:00
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command,
|
2019-11-12 06:59:30 +01:00
|
|
|
stdin=None,
|
2019-11-08 20:17:52 +01:00
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
2019-10-31 20:57:36 +01:00
|
|
|
shell=False,
|
2019-11-08 20:17:52 +01:00
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2019-06-12 22:09:04 +02:00
|
|
|
|
|
|
|
output = module.execute_command(full_command)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_execute_command_calls_full_command_with_output_file():
|
2019-06-12 22:09:04 +02:00
|
|
|
full_command = ['foo', 'bar']
|
2019-11-12 18:50:26 +01:00
|
|
|
output_file = flexmock(name='test')
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-11-08 20:17:52 +01:00
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command,
|
2019-11-12 06:59:30 +01:00
|
|
|
stdin=None,
|
2019-11-08 20:17:52 +01:00
|
|
|
stdout=output_file,
|
|
|
|
stderr=module.subprocess.PIPE,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stderr=None)).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2019-06-12 22:09:04 +02:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
output = module.execute_command(full_command, output_file=output_file)
|
2019-06-12 22:09:04 +02:00
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
def test_execute_command_calls_full_command_without_capturing_output():
|
|
|
|
full_command = ['foo', 'bar']
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command, stdin=None, stdout=None, stderr=None, shell=False, env=None, cwd=None
|
|
|
|
).and_return(flexmock(wait=lambda: 0)).once()
|
2024-01-21 20:34:40 +01:00
|
|
|
flexmock(module).should_receive('interpret_exit_code').and_return(module.Exit_status.SUCCESS)
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command(full_command, output_file=module.DO_NOT_CAPTURE)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2019-11-12 06:59:30 +01:00
|
|
|
def test_execute_command_calls_full_command_with_input_file():
|
|
|
|
full_command = ['foo', 'bar']
|
2019-11-12 18:50:26 +01:00
|
|
|
input_file = flexmock(name='test')
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-11-12 06:59:30 +01:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=input_file,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2019-11-12 06:59:30 +01:00
|
|
|
|
|
|
|
output = module.execute_command(full_command, input_file=input_file)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_execute_command_calls_full_command_with_shell():
|
2019-10-23 01:28:42 +02:00
|
|
|
full_command = ['foo', 'bar']
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-11-08 20:17:52 +01:00
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
2020-05-07 20:44:04 +02:00
|
|
|
' '.join(full_command),
|
2019-11-12 06:59:30 +01:00
|
|
|
stdin=None,
|
2019-11-08 20:17:52 +01:00
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=True,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2019-10-23 01:28:42 +02:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
output = module.execute_command(full_command, shell=True)
|
2019-10-23 01:28:42 +02:00
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_execute_command_calls_full_command_with_extra_environment():
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command = ['foo', 'bar']
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-11-08 20:17:52 +01:00
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command,
|
2019-11-12 06:59:30 +01:00
|
|
|
stdin=None,
|
2019-11-08 20:17:52 +01:00
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
2019-10-31 20:57:36 +01:00
|
|
|
shell=False,
|
2019-11-08 20:17:52 +01:00
|
|
|
env={'a': 'b', 'c': 'd'},
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2019-10-31 20:57:36 +01:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
output = module.execute_command(full_command, extra_environment={'c': 'd'})
|
2019-10-31 20:57:36 +01:00
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_execute_command_calls_full_command_with_working_directory():
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command = ['foo', 'bar']
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-11-08 20:17:52 +01:00
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command,
|
2019-11-12 06:59:30 +01:00
|
|
|
stdin=None,
|
2019-11-08 20:17:52 +01:00
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
2019-10-31 20:57:36 +01:00
|
|
|
shell=False,
|
2019-11-08 20:17:52 +01:00
|
|
|
env=None,
|
|
|
|
cwd='/working',
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2019-10-31 20:57:36 +01:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
output = module.execute_command(full_command, working_directory='/working')
|
2019-10-31 20:57:36 +01:00
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
2020-05-07 20:44:04 +02:00
|
|
|
|
|
|
|
def test_execute_command_without_run_to_completion_returns_process():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
process = flexmock()
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-07 20:44:04 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(process).once()
|
2020-05-11 19:55:50 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
2020-05-07 20:44:04 +02:00
|
|
|
|
|
|
|
assert module.execute_command(full_command, run_to_completion=False) == process
|
|
|
|
|
2019-10-31 20:57:36 +01:00
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
def test_execute_command_and_capture_output_returns_stdout():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2022-10-15 01:19:26 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
|
|
|
full_command, stderr=None, shell=False, env=None, cwd=None
|
|
|
|
).and_return(flexmock(decode=lambda: expected_output)).once()
|
|
|
|
|
|
|
|
output = module.execute_command_and_capture_output(full_command)
|
|
|
|
|
|
|
|
assert output == expected_output
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_and_capture_output_with_capture_stderr_returns_stderr():
|
2019-06-12 22:09:04 +02:00
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-06-12 22:09:04 +02:00
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
2022-10-03 21:58:13 +02:00
|
|
|
full_command, stderr=module.subprocess.STDOUT, shell=False, env=None, cwd=None
|
2019-06-12 22:09:04 +02:00
|
|
|
).and_return(flexmock(decode=lambda: expected_output)).once()
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
output = module.execute_command_and_capture_output(full_command, capture_stderr=True)
|
2019-06-12 22:09:04 +02:00
|
|
|
|
|
|
|
assert output == expected_output
|
|
|
|
|
|
|
|
|
2023-03-22 21:02:22 +01:00
|
|
|
def test_execute_command_and_capture_output_returns_output_when_process_error_is_not_considered_an_error():
|
2023-03-22 05:11:39 +01:00
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
|
|
|
err_output = b'[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2023-03-22 05:11:39 +01:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
|
|
|
full_command, stderr=None, shell=False, env=None, cwd=None
|
|
|
|
).and_raise(subprocess.CalledProcessError(1, full_command, err_output)).once()
|
2024-01-21 20:34:40 +01:00
|
|
|
flexmock(module).should_receive('interpret_exit_code').and_return(
|
|
|
|
module.Exit_status.SUCCESS
|
|
|
|
).once()
|
2023-03-22 05:11:39 +01:00
|
|
|
|
2023-03-22 11:53:53 +01:00
|
|
|
output = module.execute_command_and_capture_output(full_command)
|
2023-03-22 05:11:39 +01:00
|
|
|
|
|
|
|
assert output == expected_output
|
|
|
|
|
|
|
|
|
2023-03-22 20:48:06 +01:00
|
|
|
def test_execute_command_and_capture_output_raises_when_command_errors():
|
2023-03-22 05:11:39 +01:00
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2023-03-22 05:11:39 +01:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
|
|
|
full_command, stderr=None, shell=False, env=None, cwd=None
|
|
|
|
).and_raise(subprocess.CalledProcessError(2, full_command, expected_output)).once()
|
2024-01-21 20:34:40 +01:00
|
|
|
flexmock(module).should_receive('interpret_exit_code').and_return(
|
|
|
|
module.Exit_status.ERROR
|
|
|
|
).once()
|
2023-03-22 05:11:39 +01:00
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError):
|
2023-03-22 11:53:53 +01:00
|
|
|
module.execute_command_and_capture_output(full_command)
|
2023-03-22 05:11:39 +01:00
|
|
|
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
def test_execute_command_and_capture_output_returns_output_with_shell():
|
2019-06-12 22:09:04 +02:00
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
2019-06-12 22:09:04 +02:00
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
2022-10-15 01:19:26 +02:00
|
|
|
'foo bar', stderr=None, shell=True, env=None, cwd=None
|
2019-06-12 22:09:04 +02:00
|
|
|
).and_return(flexmock(decode=lambda: expected_output)).once()
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
output = module.execute_command_and_capture_output(full_command, shell=True)
|
2019-06-12 22:09:04 +02:00
|
|
|
|
|
|
|
assert output == expected_output
|
2019-09-25 21:03:10 +02:00
|
|
|
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
def test_execute_command_and_capture_output_returns_output_with_extra_environment():
|
2019-10-23 01:28:42 +02:00
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
2023-04-15 04:35:24 +02:00
|
|
|
full_command,
|
|
|
|
stderr=None,
|
|
|
|
shell=False,
|
|
|
|
env={'a': 'b', 'c': 'd'},
|
|
|
|
cwd=None,
|
2019-10-23 01:28:42 +02:00
|
|
|
).and_return(flexmock(decode=lambda: expected_output)).once()
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
output = module.execute_command_and_capture_output(
|
|
|
|
full_command, shell=False, extra_environment={'c': 'd'}
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
assert output == expected_output
|
|
|
|
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
def test_execute_command_and_capture_output_returns_output_with_working_directory():
|
2019-10-31 20:57:36 +01:00
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
expected_output = '[]'
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('check_output').with_args(
|
2022-10-15 01:19:26 +02:00
|
|
|
full_command, stderr=None, shell=False, env=None, cwd='/working'
|
2019-10-31 20:57:36 +01:00
|
|
|
).and_return(flexmock(decode=lambda: expected_output)).once()
|
|
|
|
|
2022-10-15 01:19:26 +02:00
|
|
|
output = module.execute_command_and_capture_output(
|
|
|
|
full_command, shell=False, working_directory='/working'
|
2019-10-31 20:57:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
assert output == expected_output
|
2020-05-13 00:49:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_calls_full_command():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(full_command, processes)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
2022-07-19 19:25:10 +02:00
|
|
|
def test_execute_command_with_processes_returns_output_with_output_log_level_none():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2022-07-19 19:25:10 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
process = flexmock(stdout=None)
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(process).once()
|
|
|
|
flexmock(module).should_receive('log_outputs').and_return({process: 'out'})
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(full_command, processes, output_log_level=None)
|
|
|
|
|
|
|
|
assert output == 'out'
|
|
|
|
|
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
def test_execute_command_with_processes_calls_full_command_with_output_file():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
|
|
|
output_file = flexmock(name='test')
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=output_file,
|
|
|
|
stderr=module.subprocess.PIPE,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stderr=None)).once()
|
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(full_command, processes, output_file=output_file)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_calls_full_command_without_capturing_output():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command, stdin=None, stdout=None, stderr=None, shell=False, env=None, cwd=None
|
|
|
|
).and_return(flexmock(wait=lambda: 0)).once()
|
2024-01-21 20:34:40 +01:00
|
|
|
flexmock(module).should_receive('interpret_exit_code').and_return(module.Exit_status.SUCCESS)
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(
|
|
|
|
full_command, processes, output_file=module.DO_NOT_CAPTURE
|
|
|
|
)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_calls_full_command_with_input_file():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
|
|
|
input_file = flexmock(name='test')
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=input_file,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(full_command, processes, input_file=input_file)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_calls_full_command_with_shell():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
' '.join(full_command),
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=True,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(full_command, processes, shell=True)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_calls_full_command_with_extra_environment():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env={'a': 'b', 'c': 'd'},
|
|
|
|
cwd=None,
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(
|
|
|
|
full_command, processes, extra_environment={'c': 'd'}
|
|
|
|
)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_calls_full_command_with_working_directory():
|
|
|
|
full_command = ['foo', 'bar']
|
|
|
|
processes = (flexmock(),)
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd='/working',
|
|
|
|
).and_return(flexmock(stdout=None)).once()
|
|
|
|
flexmock(module).should_receive('log_outputs')
|
|
|
|
|
|
|
|
output = module.execute_command_with_processes(
|
|
|
|
full_command, processes, working_directory='/working'
|
|
|
|
)
|
|
|
|
|
|
|
|
assert output is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_execute_command_with_processes_kills_processes_on_error():
|
|
|
|
full_command = ['foo', 'bar']
|
2023-12-24 19:33:55 +01:00
|
|
|
flexmock(module).should_receive('log_command')
|
2020-05-13 00:49:49 +02:00
|
|
|
process = flexmock(stdout=flexmock(read=lambda count: None))
|
|
|
|
process.should_receive('poll')
|
|
|
|
process.should_receive('kill').once()
|
|
|
|
processes = (process,)
|
|
|
|
flexmock(module.os, environ={'a': 'b'})
|
|
|
|
flexmock(module.subprocess).should_receive('Popen').with_args(
|
|
|
|
full_command,
|
|
|
|
stdin=None,
|
|
|
|
stdout=module.subprocess.PIPE,
|
|
|
|
stderr=module.subprocess.STDOUT,
|
|
|
|
shell=False,
|
|
|
|
env=None,
|
|
|
|
cwd=None,
|
|
|
|
).and_raise(subprocess.CalledProcessError(1, full_command, 'error')).once()
|
|
|
|
flexmock(module).should_receive('log_outputs').never()
|
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError):
|
|
|
|
module.execute_command_with_processes(full_command, processes)
|