2019-06-13 19:48:21 +02:00
|
|
|
import logging
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from flexmock import flexmock
|
|
|
|
|
|
|
|
from borgmatic import execute as module
|
|
|
|
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
def test_log_outputs_logs_each_line_separately():
|
2019-06-13 19:48:21 +02:00
|
|
|
flexmock(module.logger).should_receive('log').with_args(logging.INFO, 'hi').once()
|
|
|
|
flexmock(module.logger).should_receive('log').with_args(logging.INFO, 'there').once()
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(False)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
hi_process = subprocess.Popen(['echo', 'hi'], stdout=subprocess.PIPE)
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
hi_process, ()
|
|
|
|
).and_return(hi_process.stdout)
|
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
there_process = subprocess.Popen(['echo', 'there'], stdout=subprocess.PIPE)
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
there_process, ()
|
|
|
|
).and_return(there_process.stdout)
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
module.log_outputs(
|
2020-05-13 00:49:49 +02:00
|
|
|
(hi_process, there_process),
|
|
|
|
exclude_stdouts=(),
|
|
|
|
output_log_level=logging.INFO,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2019-11-08 20:17:52 +01:00
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
|
|
|
|
def test_log_outputs_skips_logs_for_process_with_none_stdout():
|
|
|
|
flexmock(module.logger).should_receive('log').with_args(logging.INFO, 'hi').never()
|
|
|
|
flexmock(module.logger).should_receive('log').with_args(logging.INFO, 'there').once()
|
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(False)
|
|
|
|
|
|
|
|
hi_process = subprocess.Popen(['echo', 'hi'], stdout=None)
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
hi_process, ()
|
|
|
|
).and_return(hi_process.stdout)
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
there_process = subprocess.Popen(['echo', 'there'], stdout=subprocess.PIPE)
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
there_process, ()
|
|
|
|
).and_return(there_process.stdout)
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
module.log_outputs(
|
2020-05-13 00:49:49 +02:00
|
|
|
(hi_process, there_process),
|
|
|
|
exclude_stdouts=(),
|
|
|
|
output_log_level=logging.INFO,
|
2020-05-15 07:38:38 +02:00
|
|
|
borg_local_path='borg',
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2019-08-04 00:13:54 +02:00
|
|
|
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
def test_log_outputs_includes_error_output_in_exception():
|
2019-08-04 00:13:54 +02:00
|
|
|
flexmock(module.logger).should_receive('log')
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(True)
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('command_for_process').and_return('grep')
|
2019-08-04 00:13:54 +02:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
process = subprocess.Popen(['grep'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
2019-11-08 20:17:52 +01:00
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2020-05-11 19:55:50 +02:00
|
|
|
module.log_outputs(
|
2020-05-15 07:38:38 +02:00
|
|
|
(process,), exclude_stdouts=(), output_log_level=logging.INFO, borg_local_path='borg'
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
assert error.value.output
|
|
|
|
|
|
|
|
|
2020-05-13 00:49:49 +02:00
|
|
|
def test_log_outputs_skips_error_output_in_exception_for_process_with_none_stdout():
|
|
|
|
flexmock(module.logger).should_receive('log')
|
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(True)
|
|
|
|
flexmock(module).should_receive('command_for_process').and_return('grep')
|
|
|
|
|
|
|
|
process = subprocess.Popen(['grep'], stdout=None)
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
|
|
|
module.log_outputs(
|
2020-05-15 07:38:38 +02:00
|
|
|
(process,), exclude_stdouts=(), output_log_level=logging.INFO, borg_local_path='borg'
|
2020-05-13 00:49:49 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
assert error.value.returncode == 2
|
|
|
|
assert not error.value.output
|
|
|
|
|
|
|
|
|
2020-05-15 08:21:43 +02:00
|
|
|
def test_log_outputs_kills_other_processes_when_one_errors():
|
|
|
|
flexmock(module.logger).should_receive('log')
|
|
|
|
flexmock(module).should_receive('command_for_process').and_return('grep')
|
|
|
|
|
|
|
|
process = subprocess.Popen(['grep'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
2020-11-26 02:46:57 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').with_args(
|
|
|
|
process, None, 'borg'
|
|
|
|
).and_return(False)
|
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').with_args(
|
|
|
|
process, 2, 'borg'
|
|
|
|
).and_return(True)
|
2020-05-15 08:21:43 +02:00
|
|
|
other_process = subprocess.Popen(
|
2021-07-26 07:30:15 +02:00
|
|
|
['sleep', '2'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
|
2020-05-15 08:21:43 +02:00
|
|
|
)
|
2020-11-26 02:46:57 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').with_args(
|
|
|
|
other_process, None, 'borg'
|
|
|
|
).and_return(False)
|
2020-05-15 08:21:43 +02:00
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(process, ()).and_return(
|
|
|
|
process.stdout
|
|
|
|
)
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
other_process, ()
|
|
|
|
).and_return(other_process.stdout)
|
|
|
|
flexmock(other_process).should_receive('kill').once()
|
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
|
|
|
module.log_outputs(
|
|
|
|
(process, other_process),
|
|
|
|
exclude_stdouts=(),
|
|
|
|
output_log_level=logging.INFO,
|
|
|
|
borg_local_path='borg',
|
|
|
|
)
|
|
|
|
|
|
|
|
assert error.value.returncode == 2
|
|
|
|
assert error.value.output
|
|
|
|
|
|
|
|
|
2021-07-26 07:30:15 +02:00
|
|
|
def test_log_outputs_vents_other_processes_when_one_exits():
|
|
|
|
'''
|
|
|
|
Execute a command to generate a longish random string and pipe it into another command that
|
|
|
|
exits quickly. The test is basically to ensure we don't hang forever waiting for the exited
|
|
|
|
process to read the pipe, and that the string-generating process eventually gets vented and
|
|
|
|
exits.
|
|
|
|
'''
|
|
|
|
flexmock(module.logger).should_receive('log')
|
|
|
|
flexmock(module).should_receive('command_for_process').and_return('grep')
|
|
|
|
|
|
|
|
process = subprocess.Popen(
|
|
|
|
['shuf', '-zer', '-n10000', '{A..Z}'], stdout=subprocess.PIPE, stderr=subprocess.PIPE
|
|
|
|
)
|
|
|
|
other_process = subprocess.Popen(
|
|
|
|
['true'], stdin=process.stdout, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
|
|
|
|
)
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
process, (process.stdout,)
|
|
|
|
).and_return(process.stderr)
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
|
other_process, (process.stdout,)
|
|
|
|
).and_return(other_process.stdout)
|
|
|
|
flexmock(process.stdout).should_call('readline').once()
|
|
|
|
|
|
|
|
module.log_outputs(
|
|
|
|
(process, other_process),
|
|
|
|
exclude_stdouts=(process.stdout,),
|
|
|
|
output_log_level=logging.INFO,
|
|
|
|
borg_local_path='borg',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
def test_log_outputs_truncates_long_error_output():
|
2019-06-24 18:55:41 +02:00
|
|
|
flexmock(module).ERROR_OUTPUT_MAX_LINE_COUNT = 0
|
2019-08-04 00:13:54 +02:00
|
|
|
flexmock(module.logger).should_receive('log')
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('command_for_process').and_return('grep')
|
2019-06-24 18:55:41 +02:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
process = subprocess.Popen(['grep'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
2020-11-27 01:22:42 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').with_args(
|
|
|
|
process, None, 'borg'
|
|
|
|
).and_return(False)
|
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').with_args(
|
|
|
|
process, 2, 'borg'
|
|
|
|
).and_return(True)
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
2019-11-08 20:17:52 +01:00
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2020-05-11 19:55:50 +02:00
|
|
|
module.log_outputs(
|
2020-05-15 07:38:38 +02:00
|
|
|
(process,), exclude_stdouts=(), output_log_level=logging.INFO, borg_local_path='borg'
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2019-06-24 18:55:41 +02:00
|
|
|
|
|
|
|
assert error.value.returncode == 2
|
|
|
|
assert error.value.output.startswith('...')
|
2019-06-13 19:48:21 +02:00
|
|
|
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
def test_log_outputs_with_no_output_logs_nothing():
|
2019-06-13 19:48:21 +02:00
|
|
|
flexmock(module.logger).should_receive('log').never()
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(False)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
process = subprocess.Popen(['true'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
2020-05-11 20:17:24 +02:00
|
|
|
flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
|
|
|
|
2020-05-11 19:55:50 +02:00
|
|
|
module.log_outputs(
|
2020-05-15 07:38:38 +02:00
|
|
|
(process,), exclude_stdouts=(), output_log_level=logging.INFO, borg_local_path='borg'
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2020-07-08 07:31:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_log_outputs_with_unfinished_process_re_polls():
|
|
|
|
flexmock(module.logger).should_receive('log').never()
|
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(False)
|
|
|
|
|
|
|
|
process = subprocess.Popen(['true'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
|
flexmock(process).should_receive('poll').and_return(None).and_return(0).twice()
|
|
|
|
flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
|
|
|
|
|
|
|
module.log_outputs(
|
|
|
|
(process,), exclude_stdouts=(), output_log_level=logging.INFO, borg_local_path='borg'
|
|
|
|
)
|