2019-10-29 07:55:26 -07:00
|
|
|
import os
|
2019-11-08 17:08:41 -08:00
|
|
|
import json
|
2019-10-29 07:55:26 -07:00
|
|
|
import unittest
|
|
|
|
import jc.parsers.ifconfig
|
|
|
|
|
|
|
|
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/ifconfig.out'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_ifconfig = f.read()
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2023-02-20 12:04:45 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-16.04/ifconfig.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_16_4_ifconfig = f.read()
|
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ifconfig.out'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_ifconfig = 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/osx-10.11.6/ifconfig.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_ifconfig = f.read()
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig2.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_ifconfig2 = f.read()
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_ifconfig = f.read()
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig2.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_ifconfig2 = f.read()
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-11-06 12:12:07 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_freebsd12_ifconfig_extra_fields = f.read()
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields2.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_freebsd12_ifconfig_extra_fields2 = f.read()
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields3.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_freebsd12_ifconfig_extra_fields3 = f.read()
|
|
|
|
|
2022-12-02 15:16:07 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields4.out'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_freebsd12_ifconfig_extra_fields4 = f.read()
|
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
# output
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/ifconfig.json'), 'r', encoding='utf-8') as f:
|
|
|
|
centos_7_7_ifconfig_json = json.loads(f.read())
|
2019-11-08 17:08:41 -08:00
|
|
|
|
2023-02-20 12:04:45 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-16.04/ifconfig.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_16_4_ifconfig_json = json.loads(f.read())
|
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/ubuntu-18.04/ifconfig.json'), 'r', encoding='utf-8') as f:
|
|
|
|
ubuntu_18_4_ifconfig_json = json.loads(f.read())
|
2019-11-08 17:08:41 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_ifconfig_json = json.loads(f.read())
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.11.6/ifconfig2.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_11_6_ifconfig2_json = json.loads(f.read())
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_ifconfig_json = json.loads(f.read())
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/osx-10.14.6/ifconfig2.json'), 'r', encoding='utf-8') as f:
|
|
|
|
osx_10_14_6_ifconfig2_json = json.loads(f.read())
|
2019-12-06 11:44:57 -08:00
|
|
|
|
2022-11-06 12:12:07 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields.json'), 'r', encoding='utf-8') as f:
|
|
|
|
freebsd12_ifconfig_extra_fields_json = json.loads(f.read())
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields2.json'), 'r', encoding='utf-8') as f:
|
|
|
|
freebsd12_ifconfig_extra_fields2_json = json.loads(f.read())
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields3.json'), 'r', encoding='utf-8') as f:
|
|
|
|
freebsd12_ifconfig_extra_fields3_json = json.loads(f.read())
|
|
|
|
|
2022-12-02 15:16:07 -08:00
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/freebsd12/ifconfig-extra-fields4.json'), 'r', encoding='utf-8') as f:
|
|
|
|
freebsd12_ifconfig_extra_fields4_json = json.loads(f.read())
|
|
|
|
|
2020-06-10 17:54:06 -07:00
|
|
|
def test_ifconfig_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' with no data
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse('', quiet=True), [])
|
|
|
|
|
2019-10-29 07:55:26 -07:00
|
|
|
def test_ifconfig_centos_7_7(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on Centos 7.7
|
|
|
|
"""
|
2019-11-08 17:08:41 -08:00
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.centos_7_7_ifconfig, quiet=True), self.centos_7_7_ifconfig_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2023-02-20 12:04:45 -08:00
|
|
|
def test_ifconfig_ubuntu_16_4(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on Ubuntu 16.4
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.ubuntu_16_4_ifconfig, quiet=True), self.ubuntu_16_4_ifconfig_json)
|
|
|
|
|
2019-10-29 07:55:26 -07:00
|
|
|
def test_ifconfig_ubuntu_18_4(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on Ubuntu 18.4
|
|
|
|
"""
|
2019-11-08 17:08:41 -08:00
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.ubuntu_18_4_ifconfig, quiet=True), self.ubuntu_18_4_ifconfig_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2019-12-06 11:44:57 -08:00
|
|
|
def test_ifconfig_osx_10_11_6(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on OSX 10.11.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_11_6_ifconfig, quiet=True), self.osx_10_11_6_ifconfig_json)
|
|
|
|
|
|
|
|
def test_ifconfig_osx_10_11_6_2(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on OSX 10.11.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_11_6_ifconfig2, quiet=True), self.osx_10_11_6_ifconfig2_json)
|
|
|
|
|
|
|
|
def test_ifconfig_osx_10_14_6(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on OSX 10.14.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_14_6_ifconfig, quiet=True), self.osx_10_14_6_ifconfig_json)
|
|
|
|
|
|
|
|
def test_ifconfig_osx_10_14_6_2(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on OSX 10.14.6
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_10_14_6_ifconfig2, quiet=True), self.osx_10_14_6_ifconfig2_json)
|
|
|
|
|
2022-11-05 18:47:44 -07:00
|
|
|
def test_ifconfig_freebsd_extra_fields(self):
|
2022-11-06 12:12:07 -08:00
|
|
|
"""
|
|
|
|
Test 'ifconfig' on freebsd12
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_freebsd12_ifconfig_extra_fields, quiet=True), self.freebsd12_ifconfig_extra_fields_json)
|
2022-11-05 18:47:44 -07:00
|
|
|
|
|
|
|
def test_ifconfig_freebsd_extra_fields2(self):
|
2022-11-06 12:12:07 -08:00
|
|
|
"""
|
|
|
|
Test 'ifconfig' on freebsd12 with other fields
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_freebsd12_ifconfig_extra_fields2, quiet=True), self.freebsd12_ifconfig_extra_fields2_json)
|
2019-10-29 07:55:26 -07:00
|
|
|
|
2022-11-06 12:04:34 -08:00
|
|
|
def test_ifconfig_freebsd_extra_fields3(self):
|
2022-11-06 12:12:07 -08:00
|
|
|
"""
|
|
|
|
Test 'ifconfig' on freebsd12 with other extra fields
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_freebsd12_ifconfig_extra_fields3, quiet=True), self.freebsd12_ifconfig_extra_fields3_json)
|
2022-11-06 12:04:34 -08:00
|
|
|
|
2022-12-02 15:16:07 -08:00
|
|
|
def test_ifconfig_freebsd_extra_fields4(self):
|
|
|
|
"""
|
|
|
|
Test 'ifconfig' on freebsd12 with lane fields
|
|
|
|
"""
|
|
|
|
self.assertEqual(jc.parsers.ifconfig.parse(self.osx_freebsd12_ifconfig_extra_fields4, quiet=True), self.freebsd12_ifconfig_extra_fields4_json)
|
|
|
|
|
2019-10-29 07:55:26 -07:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|