mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
67 lines
2.3 KiB
Python
67 lines
2.3 KiB
Python
import os
|
|
import json
|
|
import unittest
|
|
import jc.parsers.iwconfig
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
class iwconfigTests(unittest.TestCase):
|
|
|
|
# input
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig.out'), 'r', encoding='utf-8') as f:
|
|
iwconfig_output = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig-many.out'), 'r', encoding='utf-8') as f:
|
|
iwconfig_many_output = f.read()
|
|
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig-space-dash-ssid.out'), 'r', encoding='utf-8') as f:
|
|
iwconfig_space_dash_ssid = f.read()
|
|
|
|
# output
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig.json'), 'r', encoding='utf-8') as f:
|
|
iwconfig_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig-raw.json'), 'r', encoding='utf-8') as f:
|
|
iwconfig_raw_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig-many.json'), 'r', encoding='utf-8') as f:
|
|
iwconfig_many_json = json.loads(f.read())
|
|
|
|
with open(os.path.join(THIS_DIR, 'fixtures/generic/iwconfig-space-dash-ssid.json'), 'r', encoding='utf-8') as f:
|
|
iwconfig_space_dash_ssid_json = json.loads(f.read())
|
|
|
|
|
|
def test_iwconfig_nodata(self):
|
|
"""
|
|
Test 'iwconfig' with no data
|
|
"""
|
|
self.assertEqual(jc.parsers.iwconfig.parse('', quiet=True), [])
|
|
|
|
def test_iwconfig_raw(self):
|
|
"""
|
|
Test 'iwconfig' raw
|
|
"""
|
|
self.assertEqual(jc.parsers.iwconfig.parse(self.iwconfig_output, quiet=True, raw=True), self.iwconfig_raw_json)
|
|
|
|
def test_iwconfig(self):
|
|
"""
|
|
Test 'iwconfig'
|
|
"""
|
|
self.assertEqual(jc.parsers.iwconfig.parse(self.iwconfig_output, quiet=True), self.iwconfig_json)
|
|
|
|
def test_iwconfig_many(self):
|
|
"""
|
|
Test 'iwconfig' many interface
|
|
"""
|
|
self.assertEqual(jc.parsers.iwconfig.parse(self.iwconfig_many_output, quiet=True), self.iwconfig_many_json)
|
|
|
|
def test_iwconfig_space_dash_ssid(self):
|
|
"""
|
|
Test 'iwconfig' many spaces and dashes in the SSID
|
|
"""
|
|
self.assertEqual(jc.parsers.iwconfig.parse(self.iwconfig_space_dash_ssid, quiet=True), self.iwconfig_space_dash_ssid_json)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|