mirror of
https://github.com/HorlogeSkynet/archey4
synced 2024-11-24 04:00:10 +01:00
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
"""Test module for Archey's session user name detection module"""
|
|
|
|
import unittest
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from archey.configuration import DEFAULT_CONFIG
|
|
from archey.entries.user import User
|
|
from archey.test.entries import HelperMethods
|
|
|
|
|
|
class TestUserEntry(unittest.TestCase):
|
|
"""
|
|
For this entry, we'll simply mock `getpass.getuser` call.
|
|
If internals happen to fail, `ImportError` might be raised.
|
|
"""
|
|
|
|
@patch(
|
|
"archey.entries.user.getpass.getuser",
|
|
side_effect=[
|
|
"USERNAME",
|
|
ImportError("pwd", "Sure, you got a good reason..."),
|
|
],
|
|
)
|
|
def test_getenv(self, _):
|
|
"""Simple mock, simple test"""
|
|
self.assertEqual(User().value, "USERNAME")
|
|
self.assertIsNone(User().value)
|
|
|
|
@HelperMethods.patch_clean_configuration
|
|
def test_output(self):
|
|
"""Simple test for `output` base method"""
|
|
user_instance_mock = HelperMethods.entry_mock(User)
|
|
|
|
output_mock = MagicMock()
|
|
User.output(user_instance_mock, output_mock)
|
|
|
|
self.assertEqual(
|
|
output_mock.append.call_args[0][1], DEFAULT_CONFIG["default_strings"]["not_detected"]
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|