2019-10-29 08:58:52 -07:00
|
|
|
import os
|
2019-11-08 17:08:41 -08:00
|
|
|
import json
|
2019-10-29 08:58:52 -07:00
|
|
|
import unittest
|
|
|
|
import jc.parsers.uptime
|
|
|
|
|
|
|
|
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/uptime.out'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_uptime = f.read()
|
2019-10-29 08:58:52 -07:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/uptime.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_uptime = f.read()
|
2019-10-29 08:58:52 -07:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/uptime.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_uptime = f.read()
|
2019-12-13 14:36:21 -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/uptime.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_uptime = f.read()
|
2019-12-13 14:36:21 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
# output
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/uptime.json'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_uptime_json = json.loads(f.read())
|
2019-11-08 17:08:41 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/uptime.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_uptime_json = json.loads(f.read())
|
2019-11-08 17:08:41 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/uptime.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_uptime_json = json.loads(f.read())
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/uptime.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_uptime_json = json.loads(f.read())
|
2019-12-13 14:36:21 -08:00
|
|
|
|
|
|
|
|
2020-06-12 12:25:07 -07:00
|
|
|
def test_uptime_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'uptime' with no data
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.uptime.parse('', quiet=True), {})
|
|
|
|
|
2019-10-29 08:58:52 -07:00
|
|
|
def test_uptime_centos_7_7(self):
|
|
|
|
"""
|
|
|
|
Test 'uptime' on Centos 7.7
|
|
|
|
"""
|
2019-11-08 17:08:41 -08:00
|
|
|
self.assertEqual(jc.parsers.uptime.parse(self.centos_7_7_uptime, quiet=True), self.centos_7_7_uptime_json)
|
2019-10-29 08:58:52 -07:00
|
|
|
|
|
|
|
def test_uptime_ubuntu_18_4(self):
|
|
|
|
"""
|
|
|
|
Test 'uptime' on Ubuntu 18.4
|
|
|
|
"""
|
2019-11-08 17:08:41 -08:00
|
|
|
self.assertEqual(jc.parsers.uptime.parse(self.ubuntu_18_4_uptime, quiet=True), self.ubuntu_18_4_uptime_json)
|
2019-10-29 08:58:52 -07:00
|
|
|
|
2019-12-13 14:36:21 -08:00
|
|
|
def test_uptime_osx_10_11_6(self):
|
|
|
|
"""
|
|
|
|
Test 'uptime' on OSX 10.11.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.uptime.parse(self.osx_10_11_6_uptime, quiet=True), self.osx_10_11_6_uptime_json)
|
|
|
|
|
|
|
|
def test_uptime_osx_10_14_6(self):
|
|
|
|
"""
|
|
|
|
Test 'uptime' on OSX 10.14.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.uptime.parse(self.osx_10_14_6_uptime, quiet=True), self.osx_10_14_6_uptime_json)
|
|
|
|
|
2024-02-10 11:55:19 -08:00
|
|
|
def test_uptime_busybox(self):
|
|
|
|
"""
|
|
|
|
Test 'uptime' on busybox with no user information
|
|
|
|
"""
|
|
|
|
data = '00:03:32 up 3 min, load average: 0.00, 0.00, 0.00'
|
|
|
|
expected = {"time":"00:03:32","uptime":"3 min","load_1m":0.0,"load_5m":0.0,"load_15m":0.0,"time_hour":0,"time_minute":3,"time_second":32,"uptime_days":0,"uptime_hours":0,"uptime_minutes":3,"uptime_total_seconds":180}
|
|
|
|
self.assertEqual(jc.parsers.uptime.parse(data, quiet=True), expected)
|
|
|
|
|
2019-10-29 08:58:52 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|