2019-10-29 07:55:26 -07:00
|
|
|
import os
|
2019-11-08 16:21:09 -08:00
|
|
|
import json
|
2019-10-29 07:55:26 -07:00
|
|
|
import unittest
|
|
|
|
import jc.parsers.free
|
|
|
|
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
# input
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free.out'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_free = f.read()
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_free = f.read()
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free-h.out'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_free_h = f.read()
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free-h.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_free_h = f.read()
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free-w.out'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_free_w = f.read()
|
2022-09-20 13:02:14 +00:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free-w.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_free_w = f.read()
|
2022-09-20 13:02:14 +00:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
# output
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free.json'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_free_json = json.loads(f.read())
|
2019-11-08 16:21:09 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_free_json = json.loads(f.read())
|
2019-11-08 16:21:09 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free-h.json'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_free_h_json = json.loads(f.read())
|
2019-11-08 16:21:09 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free-h.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_free_h_json = json.loads(f.read())
|
2019-11-08 16:21:09 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/free-w.json'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_free_w_json = json.loads(f.read())
|
2022-09-20 13:02:14 +00:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/free-w.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_free_w_json = json.loads(f.read())
|
2022-09-20 13:02:14 +00:00
|
|
|
|
2020-06-10 17:40:18 -07:00
|
|
|
def test_free_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'free' with no data
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.free.parse('', quiet=True), [])
|
|
|
|
|
2019-10-29 07:55:26 -07:00
|
|
|
def test_free_centos_7_7(self):
|
|
|
|
"""
|
|
|
|
Test 'free' on Centos 7.7
|
|
|
|
"""
|
2019-11-08 16:21:09 -08:00
|
|
|
self.assertEqual(jc.parsers.free.parse(self.centos_7_7_free, quiet=True), self.centos_7_7_free_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
|
|
|
def test_free_ubuntu_18_4(self):
|
|
|
|
"""
|
|
|
|
Test 'free' on Ubuntu 18.4
|
|
|
|
"""
|
2019-11-08 16:21:09 -08:00
|
|
|
self.assertEqual(jc.parsers.free.parse(self.ubuntu_18_4_free, quiet=True), self.ubuntu_18_4_free_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
|
|
|
def test_free_h_centos_7_7(self):
|
|
|
|
"""
|
|
|
|
Test 'free -h' on Centos 7.7
|
|
|
|
"""
|
2019-11-08 16:21:09 -08:00
|
|
|
self.assertEqual(jc.parsers.free.parse(self.centos_7_7_free_h, quiet=True), self.centos_7_7_free_h_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
|
|
|
def test_free_h_ubuntu_18_4(self):
|
|
|
|
"""
|
|
|
|
Test 'free -h' on Ubuntu 18.4
|
|
|
|
"""
|
2019-11-08 16:21:09 -08:00
|
|
|
self.assertEqual(jc.parsers.free.parse(self.ubuntu_18_4_free_h, quiet=True), self.ubuntu_18_4_free_h_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2022-09-21 10:36:11 +00:00
|
|
|
def test_free_w_centos_7_7(self):
|
2022-09-20 13:02:14 +00:00
|
|
|
"""
|
|
|
|
Test 'free -w' on Centos 7.7
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.free.parse(self.centos_7_7_free_w, quiet=True), self.centos_7_7_free_w_json)
|
|
|
|
|
2022-09-21 10:36:11 +00:00
|
|
|
def test_free_w_ubuntu_18_4(self):
|
2022-09-20 13:02:14 +00:00
|
|
|
"""
|
|
|
|
Test 'free -w' on Ubuntu 18.4
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.free.parse(self.ubuntu_18_4_free_w, quiet=True), self.ubuntu_18_4_free_w_json)
|
|
|
|
|
2019-10-29 07:55:26 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|