moulinette/test/test_process.py

117 lines
3.1 KiB
Python
Raw Normal View History

import os
from subprocess import CalledProcessError
import pytest
from moulinette.utils.process import run_commands
2019-12-21 17:36:20 +01:00
from moulinette.utils.process import call_async_output
from moulinette.utils.process import check_output
def test_run_shell_command_list(test_file):
assert os.path.exists(str(test_file))
2019-11-25 17:21:13 +01:00
run_commands(["rm -f %s" % str(test_file)])
assert not os.path.exists(str(test_file))
def test_run_shell_bad_cmd():
with pytest.raises(CalledProcessError):
2019-11-25 17:21:13 +01:00
run_commands(["yolo swag"])
2019-12-21 17:36:20 +01:00
def test_run_shell_bad_cmd_with_callback():
def callback(a, b, c):
assert isinstance(a, int)
assert isinstance(b, str)
assert isinstance(c, str)
return True
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
assert run_commands(["yolo swag", "yolo swag", "yolo swag"], callback=callback) == 3
def callback(a, b, c):
assert isinstance(a, int)
assert isinstance(b, str)
assert isinstance(c, str)
return False
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
assert run_commands(["yolo swag", "yolo swag"], callback=callback) == 1
def callback(a, b, c):
assert isinstance(a, int)
assert isinstance(b, str)
assert isinstance(c, tuple)
return True
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
run_commands(["yolo swag"], separate_stderr=True, callback=callback)
def test_run_shell_bad_callback():
callback = 1
with pytest.raises(ValueError):
run_commands(["ls"], callback=callback)
def test_run_shell_kwargs():
with pytest.raises(ValueError):
run_commands([""], stdout="None")
with pytest.raises(ValueError):
run_commands([""], stderr="None")
run_commands(["ls"], cwd="/tmp")
with pytest.raises(OSError):
run_commands(["ls"], cwd="/yoloswag")
def test_call_async_output(test_file):
def callback(a):
assert a == "foo\n" or a == "bar\n"
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
call_async_output(["cat", str(test_file)], callback)
with pytest.raises(ValueError):
call_async_output(["cat", str(test_file)], 1)
def callbackA(a):
assert a == "foo\n" or a == "bar\n"
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
def callbackB(a):
pass
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
callback = (callbackA, callbackB)
call_async_output(["cat", str(test_file)], callback)
2020-01-01 18:02:47 +01:00
def test_call_async_output_kwargs(test_file, mocker):
2019-12-21 17:36:20 +01:00
def callback(a):
assert a == "foo\n" or a == "bar\n"
with pytest.raises(ValueError):
call_async_output(["cat", str(test_file)], callback, stdout=None)
with pytest.raises(ValueError):
call_async_output(["cat", str(test_file)], callback, stderr=None)
call_async_output(["cat", str(test_file)], callback, stdinfo=None)
def callbackA(a):
assert a == "foo\n" or a == "bar\n"
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
def callbackB(a):
pass
2020-01-02 16:18:28 +01:00
2019-12-21 17:36:20 +01:00
def callbackC(a):
pass
callback = (callbackA, callbackB, callbackC)
2020-01-01 18:02:47 +01:00
dirname = os.path.dirname(str(test_file))
os.mkdir(os.path.join(dirname, "teststdinfo"))
call_async_output(["cat", str(test_file)], callback, stdinfo=os.path.join(dirname, "teststdinfo", "teststdinfo"))
2019-12-21 17:36:20 +01:00
def test_check_output(test_file):
assert check_output(["cat", str(test_file)], shell=False) == "foo\nbar\n"
assert check_output("cat %s" % str(test_file)) == "foo\nbar\n"