add unit tests for AutoNewLinuxUser

This commit is contained in:
Mike Salvatore 2021-01-18 13:11:23 -05:00
parent 5481baf387
commit 3dafdc810b
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
import subprocess
import pytest
from infection_monkey.utils.linux.users import AutoNewLinuxUser
TEST_USER = "test_user"
@pytest.fixture
def subprocess_check_output_spy(monkeypatch):
def mock_check_output(command, stderr, shell):
mock_check_output.command = command
mock_check_output.command = ""
monkeypatch.setattr(subprocess, "check_output", mock_check_output)
return mock_check_output
def test_new_user_expires(subprocess_check_output_spy):
with (AutoNewLinuxUser(TEST_USER, "password")):
assert "--expiredate" in subprocess_check_output_spy.command
assert "--inactive 0" in subprocess_check_output_spy.command
def test_new_user_try_delete(subprocess_check_output_spy):
with (AutoNewLinuxUser(TEST_USER, "password")):
pass
assert f"deluser {TEST_USER}" in subprocess_check_output_spy.command