1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-08-06 22:32:54 +02:00

add ignore exception tests

This commit is contained in:
Kelly Brazil
2022-05-10 16:23:12 -07:00
parent a069dc4855
commit 7f53c58057
2 changed files with 25 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,7 @@ import os
import json
import unittest
import jc.parsers.git_log_s
from jc.exceptions import ParseError
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
@ -111,12 +112,35 @@ class MyTests(unittest.TestCase):
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/git-log-oneline-shortstat-streaming.json'), 'r', encoding='utf-8') as f:
self.generic_git_log_oneline_shortstat_streaming_json = json.loads(f.read())
with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/git-log-streaming-ignore-exceptions.json'), 'r', encoding='utf-8') as f:
self.generic_git_log_streaming_ignore_exceptions_json = json.loads(f.read())
def test_git_log_s_nodata(self):
"""
Test 'git_log' with no data
"""
self.assertEqual(list(jc.parsers.git_log_s.parse([], quiet=True)), [])
def test_git_log_s_unparsable(self):
data = 'unparsable data'
g = jc.parsers.git_log_s.parse(data.splitlines(), quiet=True)
with self.assertRaises(ParseError):
list(g)
def test_git_log_s_ignore_exceptions_success(self):
"""
Test 'git log' with -qq (ignore_exceptions) option
"""
self.assertEqual(list(jc.parsers.git_log_s.parse(self.generic_git_log.splitlines(), quiet=True, ignore_exceptions=True)), self.generic_git_log_streaming_ignore_exceptions_json)
def test_ping_s_ignore_exceptions_error(self):
"""
Test 'ping' with -qq (ignore_exceptions) option option and error
"""
data_in = 'not git log'
expected = json.loads('[{"_jc_meta":{"success":false,"error":"ParseError: Not git_log_s data","line":"not git log"}}]')
self.assertEqual(list(jc.parsers.git_log_s.parse(data_in.splitlines(), quiet=True, ignore_exceptions=True)), expected)
def test_git_log_s(self):
"""
Test 'git_log'