mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
113 lines
4.3 KiB
Python
113 lines
4.3 KiB
Python
import os
|
|
import sys
|
|
import time
|
|
import json
|
|
import unittest
|
|
import jc.parsers.who
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
# Set the timezone on POSIX systems. Need to manually set for Windows tests
|
|
if not sys.platform.startswith('win32'):
|
|
os.environ['TZ'] = 'America/Los_Angeles'
|
|
time.tzset()
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
# 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()
|
|
|
|
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()
|
|
|
|
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()
|
|
|
|
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()
|
|
|
|
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()
|
|
|
|
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()
|
|
|
|
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()
|
|
|
|
# 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())
|
|
|
|
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())
|
|
|
|
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())
|
|
|
|
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())
|
|
|
|
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())
|
|
|
|
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())
|
|
|
|
|
|
def test_who_nodata(self):
|
|
"""
|
|
Test 'who' with no data
|
|
"""
|
|
self.assertEqual(jc.parsers.who.parse('', quiet=True), [])
|
|
|
|
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)
|
|
|
|
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)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|