2022-01-19 09:15:24 -08:00
|
|
|
import unittest
|
2025-05-18 19:24:54 -07:00
|
|
|
import os
|
|
|
|
import re
|
2022-01-19 09:15:24 -08:00
|
|
|
from typing import Generator
|
|
|
|
import jc
|
|
|
|
|
2025-05-18 19:24:54 -07:00
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
2022-01-19 09:15:24 -08:00
|
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
def test_jc_parse_csv(self):
|
|
|
|
data = {
|
|
|
|
'': [],
|
|
|
|
'a,b,c\n1,2,3': [{'a':'1', 'b':'2', 'c':'3'}]
|
|
|
|
}
|
|
|
|
|
|
|
|
for test_data, expected_output in data.items():
|
|
|
|
self.assertEqual(jc.parse('csv', test_data), expected_output)
|
|
|
|
|
|
|
|
def test_jc_parse_csv_s_is_generator(self):
|
|
|
|
self.assertIsInstance(jc.parse('csv_s', 'a,b,c\n1,2,3'), Generator)
|
|
|
|
|
|
|
|
def test_jc_parse_kv(self):
|
|
|
|
data = {
|
|
|
|
'': {},
|
|
|
|
'a=1\nb=2\nc=3': {'a':'1', 'b':'2', 'c':'3'}
|
|
|
|
}
|
|
|
|
|
|
|
|
for test_data, expected_output in data.items():
|
|
|
|
self.assertEqual(jc.parse('kv', test_data), expected_output)
|
|
|
|
|
|
|
|
def test_jc_parser_mod_list_is_list(self):
|
|
|
|
self.assertIsInstance(jc.parser_mod_list(), list)
|
|
|
|
|
|
|
|
def test_jc_parser_mod_list_contains_csv(self):
|
|
|
|
self.assertTrue('csv' in jc.parser_mod_list())
|
|
|
|
|
|
|
|
def test_jc_parser_mod_list_length(self):
|
|
|
|
self.assertGreaterEqual(len(jc.parser_mod_list()), 80)
|
|
|
|
|
|
|
|
def test_jc_plugin_parser_mod_list_is_list(self):
|
|
|
|
self.assertIsInstance(jc.plugin_parser_mod_list(), list)
|
|
|
|
|
2024-01-05 16:50:49 -08:00
|
|
|
def test_jc_slurpable_parser_mod_list_is_list(self):
|
|
|
|
self.assertIsInstance(jc.slurpable_parser_mod_list(), list)
|
|
|
|
|
2025-05-18 19:24:54 -07:00
|
|
|
def test_version_info(self):
|
|
|
|
"""Test that the lib and pkg version strings match."""
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'jc/lib.py'), 'r', encoding='utf-8') as f:
|
|
|
|
lib_file = f.read()
|
|
|
|
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'setup.py'), 'r', encoding='utf-8') as f:
|
|
|
|
pkg_file = f.read()
|
|
|
|
|
|
|
|
lib_pattern = re.compile(r'''__version__ = \'(?P<ver>\d+\.\d+\.\d+)\'''')
|
|
|
|
pkg_pattern = re.compile(r''' version=\'(?P<ver>\d+\.\d+\.\d+)\'''')
|
|
|
|
|
|
|
|
lib_match = re.search(lib_pattern, lib_file)
|
|
|
|
pkg_match = re.search(pkg_pattern, pkg_file)
|
|
|
|
|
|
|
|
if lib_match:
|
|
|
|
lib_version = lib_match.groupdict()['ver']
|
|
|
|
|
|
|
|
if pkg_match:
|
|
|
|
pkg_version = pkg_match.groupdict()['ver']
|
|
|
|
|
|
|
|
self.assertEqual(lib_version, pkg_version)
|
|
|
|
|
2022-01-19 09:15:24 -08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|