mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
import unittest
|
|
import jc.streaming
|
|
|
|
|
|
class MyTests(unittest.TestCase):
|
|
|
|
def test_streaming_input_type_check_wrong(self):
|
|
self.assertRaises(TypeError, jc.streaming.streaming_input_type_check, 'abc')
|
|
|
|
|
|
def test_streaming_input_type_check_correct(self):
|
|
self.assertEqual(jc.streaming.streaming_input_type_check(['abc']), None)
|
|
|
|
|
|
def test_streaming_line_input_type_check_wrong(self):
|
|
self.assertRaises(TypeError, jc.streaming.streaming_line_input_type_check, ['abc'])
|
|
|
|
|
|
def test_streaming_line_input_type_check_correct(self):
|
|
self.assertEqual(jc.streaming.streaming_line_input_type_check('abc'), None)
|
|
|
|
|
|
def test_stream_success_ignore_exceptions_true(self):
|
|
self.assertEqual(jc.streaming.stream_success({}, True), {'_jc_meta': {'success': True}})
|
|
|
|
|
|
def test_stream_success_ignore_exceptions_false(self):
|
|
self.assertEqual(jc.streaming.stream_success({}, False), {})
|
|
|
|
|
|
def test_stream_error(self):
|
|
self.assertEqual(jc.streaming.stream_error(
|
|
TypeError, 'this is a test'),
|
|
{
|
|
'_jc_meta':
|
|
{
|
|
'success': False,
|
|
'error': 'type: <class \'TypeError\'>',
|
|
'line': 'this is a test'
|
|
}
|
|
}
|
|
)
|
|
|
|
|
|
def test_raise_or_yield_ignore_exceptions(self):
|
|
self.assertEqual(jc.streaming.raise_or_yield(
|
|
True, TypeError, 'this is a test'),
|
|
(TypeError, 'this is a test')
|
|
)
|
|
|
|
|
|
def test_raise_or_yield_ignore_exceptions_false(self):
|
|
self.assertRaises(
|
|
TypeError,
|
|
jc.streaming.raise_or_yield,
|
|
False, TypeError, 'this is a test'
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|