|
@@ -13,11 +13,19 @@ def test_log_outputs_logs_each_line_separately():
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(False)
|
|
|
|
|
|
hi_process = subprocess.Popen(['echo', 'hi'], stdout=subprocess.PIPE)
|
|
|
+ flexmock(module).should_receive('output_buffer_for_process').with_args(
|
|
|
+ hi_process, ()
|
|
|
+ ).and_return(hi_process.stdout)
|
|
|
+
|
|
|
module.log_outputs(
|
|
|
(hi_process,), exclude_stdouts=(), output_log_level=logging.INFO, error_on_warnings=False
|
|
|
)
|
|
|
|
|
|
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)
|
|
|
+
|
|
|
module.log_outputs(
|
|
|
(there_process,), exclude_stdouts=(), output_log_level=logging.INFO, error_on_warnings=False
|
|
|
)
|
|
@@ -26,8 +34,10 @@ def test_log_outputs_logs_each_line_separately():
|
|
|
def test_log_outputs_includes_error_output_in_exception():
|
|
|
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=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
+ flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
|
|
module.log_outputs(
|
|
@@ -42,8 +52,10 @@ def test_log_outputs_truncates_long_error_output():
|
|
|
flexmock(module).ERROR_OUTPUT_MAX_LINE_COUNT = 0
|
|
|
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=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
+ flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
|
|
|
|
|
with pytest.raises(subprocess.CalledProcessError) as error:
|
|
|
module.log_outputs(
|
|
@@ -59,6 +71,8 @@ def test_log_outputs_with_no_output_logs_nothing():
|
|
|
flexmock(module).should_receive('exit_code_indicates_error').and_return(False)
|
|
|
|
|
|
process = subprocess.Popen(['true'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
|
+ flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
|
|
|
+
|
|
|
module.log_outputs(
|
|
|
(process,), exclude_stdouts=(), output_log_level=logging.INFO, error_on_warnings=False
|
|
|
)
|