1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/tests/test_who.py

106 lines
4.1 KiB
Python
Raw Normal View History

2020-03-01 19:03:27 -08:00
import os
import json
import unittest
import jc.parsers.who
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
class MyTests(unittest.TestCase):
2022-09-23 14:02:27 -07:00
# input
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who.out'), 'r', encoding='utf-8') as f:
centos_7_7_who = f.read()
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who.out'), 'r', encoding='utf-8') as f:
ubuntu_18_4_who = f.read()
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who.out'), 'r', encoding='utf-8') as f:
osx_10_14_6_who = f.read()
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who-a.out'), 'r', encoding='utf-8') as f:
centos_7_7_who_a = f.read()
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who-a.out'), 'r', encoding='utf-8') as f:
ubuntu_18_4_who_a = f.read()
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who-a.out'), 'r', encoding='utf-8') as f:
osx_10_14_6_who_a = f.read()
2020-03-01 19:03:27 -08:00
2023-10-23 15:39:13 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/who-login-screen.out'), 'r', encoding='utf-8') as f:
generic_who_login_screen = f.read()
2022-09-23 14:02:27 -07:00
# output
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who.json'), 'r', encoding='utf-8') as f:
centos_7_7_who_json = json.loads(f.read())
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who.json'), 'r', encoding='utf-8') as f:
ubuntu_18_4_who_json = json.loads(f.read())
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who.json'), 'r', encoding='utf-8') as f:
osx_10_14_6_who_json = json.loads(f.read())
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/who-a.json'), 'r', encoding='utf-8') as f:
centos_7_7_who_a_json = json.loads(f.read())
2020-03-01 19:03:27 -08:00
2022-09-23 14:02:27 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/who-a.json'), 'r', encoding='utf-8') as f:
ubuntu_18_4_who_a_json = json.loads(f.read())
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/who-a.json'), 'r', encoding='utf-8') as f:
osx_10_14_6_who_a_json = json.loads(f.read())
2020-03-01 19:03:27 -08:00
2023-10-23 15:39:13 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/who-login-screen.json'), 'r', encoding='utf-8') as f:
generic_who_login_screen_json = json.loads(f.read())
2020-03-01 19:03:27 -08:00
2020-06-12 12:25:07 -07:00
def test_who_nodata(self):
"""
Test 'who' with no data
"""
self.assertEqual(jc.parsers.who.parse('', quiet=True), [])
2020-03-01 19:03:27 -08:00
def test_who_centos_7_7(self):
"""
Test 'who' on Centos 7.7
"""
self.assertEqual(jc.parsers.who.parse(self.centos_7_7_who, quiet=True), self.centos_7_7_who_json)
def test_who_ubuntu_18_4(self):
"""
Test 'who' on Ubuntu 18.4
"""
self.assertEqual(jc.parsers.who.parse(self.ubuntu_18_4_who, quiet=True), self.ubuntu_18_4_who_json)
def test_who_osx_10_14_6(self):
"""
Test 'who' on OSX 10.14.6
"""
self.assertEqual(jc.parsers.who.parse(self.osx_10_14_6_who, quiet=True), self.osx_10_14_6_who_json)
def test_who_a_centos_7_7(self):
"""
Test 'who -a' on Centos 7.7
"""
self.assertEqual(jc.parsers.who.parse(self.centos_7_7_who_a, quiet=True), self.centos_7_7_who_a_json)
def test_who_a_ubuntu_18_4(self):
"""
Test 'who -a' on Ubuntu 18.4
"""
self.assertEqual(jc.parsers.who.parse(self.ubuntu_18_4_who_a, quiet=True), self.ubuntu_18_4_who_a_json)
def test_who_a_osx_10_14_6(self):
"""
Test 'who -a' on OSX 10.14.6
"""
self.assertEqual(jc.parsers.who.parse(self.osx_10_14_6_who_a, quiet=True), self.osx_10_14_6_who_a_json)
2023-10-23 15:39:13 -07:00
def test_who_login_screen(self):
"""
Test 'who' with (login screen) as remote
"""
self.assertEqual(jc.parsers.who.parse(self.generic_who_login_screen, quiet=True), self.generic_who_login_screen_json)
2020-03-01 19:03:27 -08:00
if __name__ == '__main__':
unittest.main()