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

93 lines
4.2 KiB
Python
Raw Normal View History

2022-05-27 14:29:33 -07:00
import os
import json
import unittest
import jc.parsers.top_s
2022-05-27 17:40:54 -07:00
from jc.exceptions import ParseError
2022-05-27 14:29:33 -07:00
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
# To create streaming output use:
# $ cat top.out | jc --top-s | jello -c > top-streaming.json
class MyTests(unittest.TestCase):
def setUp(self):
# input
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/top-b-n3.out'), 'r', encoding='utf-8') as f:
self.centos_7_7_top_b_n3 = f.read()
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/top-b-n1-gib.out'), 'r', encoding='utf-8') as f:
self.centos_7_7_top_b_n1_gib = f.read()
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/top-b-n1-gib-allfields-w.out'), 'r', encoding='utf-8') as f:
self.centos_7_7_top_b_n1_gib_allfields_w = f.read()
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/top-b-n1.out'), 'r', encoding='utf-8') as f:
self.ubuntu_20_10_top_b_n1 = f.read()
2022-05-27 17:40:54 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/top-b-allfields.out'), 'r', encoding='utf-8') as f:
self.ubuntu_20_10_top_b_allfields = f.read()
2022-05-27 14:29:33 -07:00
# output
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/top-b-n3-streaming.json'), 'r', encoding='utf-8') as f:
self.centos_7_7_top_b_n3_streaming_json = json.loads(f.read())
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/top-b-n1-gib-streaming.json'), 'r', encoding='utf-8') as f:
self.centos_7_7_top_b_n1_gib_streaming_json = json.loads(f.read())
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/top-b-n1-gib-allfields-w-streaming.json'), 'r', encoding='utf-8') as f:
self.centos_7_7_top_b_n1_gib_allfields_w_streaming_json = json.loads(f.read())
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/top-b-n1-streaming.json'), 'r', encoding='utf-8') as f:
self.ubuntu_20_10_top_b_n1_streaming_json = json.loads(f.read())
2022-05-27 17:40:54 -07:00
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-20.10/top-b-allfields-streaming.json'), 'r', encoding='utf-8') as f:
self.ubuntu_20_10_top_b_allfields_streaming_json = json.loads(f.read())
2022-05-27 14:29:33 -07:00
def test_top_s_nodata(self):
"""
Test 'top' with no data
"""
self.assertEqual(list(jc.parsers.top_s.parse([], quiet=True)), [])
2022-05-27 17:40:54 -07:00
def test_top_s_unparsable(self):
data = 'unparsable data'
g = jc.parsers.top_s.parse(data.splitlines(), quiet=True)
with self.assertRaises(ParseError):
list(g)
2022-05-27 14:29:33 -07:00
def test_top_s_b_n3_centos_7_7(self):
"""
Test 'top -b -n3' on Centos 7.7
"""
self.assertEqual(list(jc.parsers.top_s.parse(self.centos_7_7_top_b_n3.splitlines(), quiet=True)), self.centos_7_7_top_b_n3_streaming_json)
def test_top_s_b_n1_gib_centos_7_7(self):
"""
Test 'top -b -n1' with GiB units on Centos 7.7
"""
self.assertEqual(list(jc.parsers.top_s.parse(self.centos_7_7_top_b_n1_gib.splitlines(), quiet=True)), self.centos_7_7_top_b_n1_gib_streaming_json)
def test_top_s_b_n1_gib_allfields_w_centos_7_7(self):
"""
Test 'top -b -n1 -w' with GiB units, all fields selected and wide output on Centos 7.7
"""
self.assertEqual(list(jc.parsers.top_s.parse(self.centos_7_7_top_b_n1_gib_allfields_w.splitlines(), quiet=True)), self.centos_7_7_top_b_n1_gib_allfields_w_streaming_json)
def test_top_s_b_n1_ubuntu_20_10(self):
"""
Test 'top -b -n1' with MiB units on Ubuntu 20.10
"""
self.assertEqual(list(jc.parsers.top_s.parse(self.ubuntu_20_10_top_b_n1.splitlines(), quiet=True)), self.ubuntu_20_10_top_b_n1_streaming_json)
2022-05-27 17:40:54 -07:00
def test_top_s_b_allfields_ubuntu_20_10(self):
"""
Test 'top -b -n1' with MiB units and all fields on Ubuntu 20.10
"""
self.assertEqual(list(jc.parsers.top_s.parse(self.ubuntu_20_10_top_b_allfields.splitlines(), quiet=True)), self.ubuntu_20_10_top_b_allfields_streaming_json)
2022-05-27 14:29:33 -07:00
if __name__ == '__main__':
unittest.main()