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-10-23 01:28:42 +02:00
|
|
|
def test_borg_command_identifies_borg_command():
|
|
|
|
assert module.borg_command(['/usr/bin/borg1', 'info'])
|
|
|
|
|
|
|
|
|
|
|
|
def test_borg_command_does_not_identify_other_command():
|
|
|
|
assert not module.borg_command(['grep', 'stuff'])
|
|
|
|
|
|
|
|
|
2019-06-13 19:48:21 +02:00
|
|
|
def test_execute_and_log_output_logs_each_line_separately():
|
|
|
|
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-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(False)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['echo', 'hi'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
|
|
|
module.execute_and_log_output(
|
|
|
|
['echo', 'there'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
|
|
|
|
2019-08-04 00:13:54 +02:00
|
|
|
def test_execute_and_log_output_with_borg_warning_does_not_raise():
|
|
|
|
flexmock(module.logger).should_receive('log')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(True)
|
2019-08-04 00:13:54 +02:00
|
|
|
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['false'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
2019-08-04 00:13:54 +02:00
|
|
|
|
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
def test_execute_and_log_output_includes_borg_error_output_in_exception():
|
2019-08-04 00:13:54 +02:00
|
|
|
flexmock(module.logger).should_receive('log')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(True)
|
2019-08-04 00:13:54 +02:00
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['grep'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
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-10-23 01:28:42 +02:00
|
|
|
def test_execute_and_log_output_with_non_borg_error_raises():
|
2019-09-13 01:37:43 +02:00
|
|
|
flexmock(module.logger).should_receive('log')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(False)
|
2019-09-13 01:37:43 +02:00
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['false'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
2019-09-13 01:37:43 +02:00
|
|
|
|
|
|
|
assert error.value.returncode == 1
|
|
|
|
|
|
|
|
|
2019-06-24 18:55:41 +02:00
|
|
|
def test_execute_and_log_output_truncates_long_borg_error_output():
|
|
|
|
flexmock(module).ERROR_OUTPUT_MAX_LINE_COUNT = 0
|
2019-08-04 00:13:54 +02:00
|
|
|
flexmock(module.logger).should_receive('log')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(False)
|
2019-06-24 18:55:41 +02:00
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['grep'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
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
|
|
|
|
|
|
|
|
|
|
|
def test_execute_and_log_output_with_no_output_logs_nothing():
|
|
|
|
flexmock(module.logger).should_receive('log').never()
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(False)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['true'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_execute_and_log_output_with_error_exit_status_raises():
|
2019-08-04 00:13:54 +02:00
|
|
|
flexmock(module.logger).should_receive('log')
|
2019-10-23 01:28:42 +02:00
|
|
|
flexmock(module).should_receive('borg_command').and_return(False)
|
2019-06-13 19:48:21 +02:00
|
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError):
|
2019-10-23 01:28:42 +02:00
|
|
|
module.execute_and_log_output(
|
|
|
|
['grep'], output_log_level=logging.INFO, shell=False, environment=None
|
|
|
|
)
|