2019-06-13 19:48:21 +02:00
|
|
|
import logging
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from flexmock import flexmock
|
|
|
|
|
|
|
|
from borgmatic import execute as module
|
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_log_output_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)
|
|
|
|
module.log_output(
|
2020-05-07 20:44:04 +02:00
|
|
|
hi_process, hi_process.stdout, output_log_level=logging.INFO, error_on_warnings=False
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2019-11-08 20:17:52 +01:00
|
|
|
|
|
|
|
there_process = subprocess.Popen(['echo', 'there'], stdout=subprocess.PIPE)
|
|
|
|
module.log_output(
|
2020-05-07 20:44:04 +02:00
|
|
|
there_process, there_process.stdout, output_log_level=logging.INFO, error_on_warnings=False
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|
2019-08-04 00:13:54 +02:00
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_log_output_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)
|
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)
|
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2019-11-08 20:17:52 +01:00
|
|
|
module.log_output(
|
2020-05-07 20:44:04 +02:00
|
|
|
process, process.stdout, output_log_level=logging.INFO, error_on_warnings=False
|
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.returncode == 2
|
|
|
|
assert error.value.output
|
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_log_output_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')
|
2019-10-31 20:57:36 +01:00
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(True)
|
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)
|
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2019-11-08 20:17:52 +01:00
|
|
|
module.log_output(
|
2020-05-07 20:44:04 +02:00
|
|
|
process, process.stdout, output_log_level=logging.INFO, error_on_warnings=False
|
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
|
|
|
|
|
|
|
|
2019-11-08 20:17:52 +01:00
|
|
|
def test_log_output_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)
|
|
|
|
module.log_output(
|
2020-05-07 20:44:04 +02:00
|
|
|
process, process.stdout, output_log_level=logging.INFO, error_on_warnings=False
|
2019-10-23 01:28:42 +02:00
|
|
|
)
|