1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/tests/test_clf.py
Kelly Brazil 842fbbab64 formatting
2022-11-22 13:11:10 -08:00

48 lines
1.1 KiB
Python

import os
import unittest
import json
from typing import Dict
from jc.parsers.clf import parse
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
class MyTests(unittest.TestCase):
f_in: Dict = {}
f_json: Dict = {}
@classmethod
def setUpClass(cls):
fixtures = {
'clf': (
'fixtures/generic/common-log-format.log',
'fixtures/generic/common-log-format.json')
}
for file, filepaths in fixtures.items():
with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \
open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b:
cls.f_in[file] = a.read()
cls.f_json[file] = json.loads(b.read())
def test_clf_nodata(self):
"""
Test 'clf' with no data
"""
self.assertEqual(parse('', quiet=True), [])
def test_clf(self):
"""
Test 'clf' with various log lines
"""
self.assertEqual(
parse(self.f_in['clf'], quiet=True),
self.f_json['clf']
)
if __name__ == '__main__':
unittest.main()