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

du tests and docs

This commit is contained in:
Kelly Brazil
2019-12-16 13:57:42 -08:00
parent e882bf55bc
commit beb17011b0
6 changed files with 131 additions and 2 deletions

View File

@ -16,6 +16,9 @@ class MyTests(unittest.TestCase):
# with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/du.out'), 'r') as f:
# self.ubuntu_18_4_du = f.read()
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/du.out'), 'r') as f:
self.osx_10_14_6_du = f.read()
# output
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/du.json'), 'r') as f:
self.centos_7_7_du_json = json.loads(f.read())
@ -23,6 +26,9 @@ class MyTests(unittest.TestCase):
# with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/du.json'), 'r') as f:
# self.ubuntu_18_4_du_json = json.loads(f.read())
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/du.json'), 'r') as f:
self.osx_10_14_6_du_json = json.loads(f.read())
def test_du_centos_7_7(self):
"""
Test 'du' on Centos 7.7
@ -35,6 +41,12 @@ class MyTests(unittest.TestCase):
# """
# self.assertEqual(jc.parsers.du.parse(self.ubuntu_18_4_du, quiet=True), self.ubuntu_18_4_du_json)
def test_du_osx_10_14_6(self):
"""
Test 'du' on OSX 10.14.6
"""
self.assertEqual(jc.parsers.du.parse(self.osx_10_14_6_du, quiet=True), self.osx_10_14_6_du_json)
if __name__ == '__main__':
unittest.main()