2019-12-17 11:44:43 -08:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import unittest
|
|
|
|
import jc.parsers.pip_list
|
|
|
|
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
# input
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/pip-list.out'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_pip_list = f.read()
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_pip_list = f.read()
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list-legacy.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_pip_list_legacy = f.read()
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/pip-list.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_pip_list = f.read()
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/pip-list.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_pip_list = f.read()
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
# output
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/pip-list.json'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_pip_list_json = json.loads(f.read())
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_pip_list_json = json.loads(f.read())
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/pip-list-legacy.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_pip_list_legacy_json = json.loads(f.read())
|
2019-12-17 11:44:43 -08:00
|
|
|
|
2022-09-23 14:02:27 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/pip-list.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_pip_list_json = json.loads(f.read())
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/pip-list.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_pip_list_json = json.loads(f.read())
|
2019-12-17 11:44:43 -08:00
|
|
|
|
|
|
|
|
2020-06-11 17:52:03 -07:00
|
|
|
def test_pip_list_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'pip_list' with no data
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.pip_list.parse('', quiet=True), [])
|
|
|
|
|
2019-12-17 11:44:43 -08:00
|
|
|
def test_pip_list_centos_7_7(self):
|
|
|
|
"""
|
|
|
|
Test 'pip_list' on Centos 7.7
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.pip_list.parse(self.centos_7_7_pip_list, quiet=True), self.centos_7_7_pip_list_json)
|
|
|
|
|
|
|
|
def test_pip_list_ubuntu_18_4(self):
|
|
|
|
"""
|
|
|
|
Test 'pip_list' on Ubuntu 18.4
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.pip_list.parse(self.ubuntu_18_4_pip_list, quiet=True), self.ubuntu_18_4_pip_list_json)
|
|
|
|
|
|
|
|
def test_pip_list_legacy_ubuntu_18_4(self):
|
|
|
|
"""
|
|
|
|
Test 'pip_list' with legacy output on Ubuntu 18.4
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.pip_list.parse(self.ubuntu_18_4_pip_list_legacy, quiet=True), self.ubuntu_18_4_pip_list_legacy_json)
|
|
|
|
|
|
|
|
def test_pip_list_osx_10_11_6(self):
|
|
|
|
"""
|
|
|
|
Test 'pip_list' on OSX 10.11.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.pip_list.parse(self.osx_10_11_6_pip_list, quiet=True), self.osx_10_11_6_pip_list_json)
|
|
|
|
|
|
|
|
def test_pip_list_osx_10_14_6(self):
|
|
|
|
"""
|
|
|
|
Test 'pip_list' on OSX 10.14.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.pip_list.parse(self.osx_10_14_6_pip_list, quiet=True), self.osx_10_14_6_pip_list_json)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|