mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
114 lines
4.5 KiB
Python
114 lines
4.5 KiB
Python
![]() |
import os
|
||
|
import sys
|
||
|
import time
|
||
|
import json
|
||
|
import unittest
|
||
|
import jc.parsers.vmstat
|
||
|
|
||
|
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):
|
||
|
|
||
|
def setUp(self):
|
||
|
# input
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat = f.read()
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-a.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_a = f.read()
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-at-5-10.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_at_5_10 = f.read()
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-awt.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_awt = f.read()
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-d.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_d = f.read()
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-dt.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_dt = f.read()
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-w.out'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_w = f.read()
|
||
|
|
||
|
# output
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_json = json.loads(f.read())
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-a.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_a_json = json.loads(f.read())
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-at-5-10.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_at_5_10_json = json.loads(f.read())
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-awt.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_awt_json = json.loads(f.read())
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-d.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_d_json = json.loads(f.read())
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-dt.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_dt_json = json.loads(f.read())
|
||
|
|
||
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/vmstat-w.json'), 'r', encoding='utf-8') as f:
|
||
|
self.centos_7_7_vmstat_w_json = json.loads(f.read())
|
||
|
|
||
|
def test_vmstat_nodata(self):
|
||
|
"""
|
||
|
Test 'vmstat' with no data
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse('', quiet=True), [])
|
||
|
|
||
|
def test_vmstat(self):
|
||
|
"""
|
||
|
Test 'vmstat'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat, quiet=True), self.centos_7_7_vmstat_json)
|
||
|
|
||
|
def test_vmstat_a(self):
|
||
|
"""
|
||
|
Test 'vmstat -a'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_a, quiet=True), self.centos_7_7_vmstat_a_json)
|
||
|
|
||
|
def test_vmstat_at_5_10(self):
|
||
|
"""
|
||
|
Test 'vmstat -at 5 10'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_at_5_10, quiet=True), self.centos_7_7_vmstat_at_5_10_json)
|
||
|
|
||
|
def test_vmstat_awt(self):
|
||
|
"""
|
||
|
Test 'vmstat -awt'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_awt, quiet=True), self.centos_7_7_vmstat_awt_json)
|
||
|
|
||
|
def test_vmstat_d(self):
|
||
|
"""
|
||
|
Test 'vmstat -d'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_d, quiet=True), self.centos_7_7_vmstat_d_json)
|
||
|
|
||
|
def test_vmstat_dt(self):
|
||
|
"""
|
||
|
Test 'vmstat -dt'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_dt, quiet=True), self.centos_7_7_vmstat_dt_json)
|
||
|
|
||
|
def test_vmstat_w(self):
|
||
|
"""
|
||
|
Test 'vmstat -w'
|
||
|
"""
|
||
|
self.assertEqual(jc.parsers.vmstat.parse(self.centos_7_7_vmstat_w, quiet=True), self.centos_7_7_vmstat_w_json)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|