mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
add osx-11 and ubuntu tests
This commit is contained in:
1
tests/fixtures/osx-10.11.6/du.json
vendored
Normal file
1
tests/fixtures/osx-10.11.6/du.json
vendored
Normal file
File diff suppressed because one or more lines are too long
2471
tests/fixtures/osx-10.11.6/du.out
vendored
Executable file
2471
tests/fixtures/osx-10.11.6/du.out
vendored
Executable file
File diff suppressed because it is too large
Load Diff
1
tests/fixtures/ubuntu-18.04/du.json
vendored
Normal file
1
tests/fixtures/ubuntu-18.04/du.json
vendored
Normal file
File diff suppressed because one or more lines are too long
19244
tests/fixtures/ubuntu-18.04/du.out
vendored
Normal file
19244
tests/fixtures/ubuntu-18.04/du.out
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -13,8 +13,11 @@ class MyTests(unittest.TestCase):
|
||||
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/du.out'), 'r') as f:
|
||||
self.centos_7_7_du = f.read()
|
||||
|
||||
# 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/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.11.6/du.out'), 'r') as f:
|
||||
self.osx_10_11_6_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()
|
||||
@ -23,8 +26,11 @@ class MyTests(unittest.TestCase):
|
||||
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())
|
||||
|
||||
# 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/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.11.6/du.json'), 'r') as f:
|
||||
self.osx_10_11_6_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())
|
||||
@ -35,11 +41,17 @@ class MyTests(unittest.TestCase):
|
||||
"""
|
||||
self.assertEqual(jc.parsers.du.parse(self.centos_7_7_du, quiet=True), self.centos_7_7_du_json)
|
||||
|
||||
# def test_du_ubuntu_18_4(self):
|
||||
# """
|
||||
# Test 'du' on Ubuntu 18.4
|
||||
# """
|
||||
# self.assertEqual(jc.parsers.du.parse(self.ubuntu_18_4_du, quiet=True), self.ubuntu_18_4_du_json)
|
||||
def test_du_ubuntu_18_4(self):
|
||||
"""
|
||||
Test 'du' on Ubuntu 18.4
|
||||
"""
|
||||
self.assertEqual(jc.parsers.du.parse(self.ubuntu_18_4_du, quiet=True), self.ubuntu_18_4_du_json)
|
||||
|
||||
def test_du_osx_10_11_6(self):
|
||||
"""
|
||||
Test 'du' on OSX 10.11.6
|
||||
"""
|
||||
self.assertEqual(jc.parsers.du.parse(self.osx_10_11_6_du, quiet=True), self.osx_10_11_6_du_json)
|
||||
|
||||
def test_du_osx_10_14_6(self):
|
||||
"""
|
||||
|
Reference in New Issue
Block a user