2022-08-20 13:38:20 -07:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import unittest
|
|
|
|
import jc.parsers.cef_s
|
|
|
|
|
|
|
|
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
|
|
# To create streaming output use:
|
|
|
|
# $ cat cef.out | jc --cef-s | jello -c > cef-streaming.json
|
|
|
|
|
|
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
|
2022-09-23 10:58:28 -07:00
|
|
|
# input
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/cef.out'), 'r', encoding='utf-8') as f:
|
|
|
|
cef = f.read()
|
|
|
|
|
|
|
|
# output
|
|
|
|
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/cef-streaming.json'), 'r', encoding='utf-8') as f:
|
|
|
|
cef_streaming_json = json.loads(f.read())
|
2022-08-20 13:38:20 -07:00
|
|
|
|
|
|
|
def test_cef_s_nodata(self):
|
|
|
|
"""
|
|
|
|
Test 'cef' with no data
|
|
|
|
"""
|
|
|
|
self.assertEqual(list(jc.parsers.cef_s.parse([], quiet=True)), [])
|
|
|
|
|
|
|
|
def test_cef_s_sample(self):
|
|
|
|
"""
|
|
|
|
Test with sample cef log
|
|
|
|
"""
|
|
|
|
self.assertEqual(list(jc.parsers.cef_s.parse(self.cef.splitlines(), quiet=True)), self.cef_streaming_json)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|