extensive docstrings; made all functions public (not protected); minor refactoring
This commit is contained in:
@ -108,7 +108,7 @@ class FunctionsTestCase(IsolatedAsyncioTestCase):
|
||||
|
||||
@patch.object(functions, 'extract_all_data')
|
||||
@patch.object(functions, 'soup_from_url')
|
||||
async def test__get_single_company_fin_stmt(self, mock_soup_from_url, mock_extract_all_data):
|
||||
async def test_get_single_company_fin_stmt(self, mock_soup_from_url, mock_extract_all_data):
|
||||
mock_session = MagicMock()
|
||||
test_ticker, statement = 'bar', BS
|
||||
test_url = f'{BASE_URL}/{test_ticker}/financials{FIN_STMT_URL_SUFFIX[statement]}'
|
||||
@ -116,7 +116,7 @@ class FunctionsTestCase(IsolatedAsyncioTestCase):
|
||||
mock_extract_all_data.return_value = expected_output = {'foo': 'bar'}
|
||||
|
||||
quarterly = False
|
||||
output = await functions._get_single_company_fin_stmt(statement, test_ticker, quarterly, mock_session)
|
||||
output = await functions.get_single_company_fin_stmt(statement, test_ticker, quarterly, mock_session)
|
||||
self.assertDictEqual(expected_output, output)
|
||||
mock_soup_from_url.assert_called_once_with(test_url, mock_session)
|
||||
mock_extract_all_data.assert_called_once_with(mock_soup)
|
||||
@ -124,33 +124,33 @@ class FunctionsTestCase(IsolatedAsyncioTestCase):
|
||||
mock_extract_all_data.reset_mock()
|
||||
|
||||
quarterly = True
|
||||
output = await functions._get_single_company_fin_stmt(statement, test_ticker, quarterly, mock_session)
|
||||
output = await functions.get_single_company_fin_stmt(statement, test_ticker, quarterly, mock_session)
|
||||
self.assertDictEqual(expected_output, output)
|
||||
mock_soup_from_url.assert_called_once_with(test_url + '/quarter', mock_session)
|
||||
mock_extract_all_data.assert_called_once_with(mock_soup)
|
||||
|
||||
@patch.object(functions, '_get_single_company_fin_stmt')
|
||||
async def test__get_multi_companies_fin_stmt(self, mock__get_single_company_fin_stmt):
|
||||
@patch.object(functions, 'get_single_company_fin_stmt')
|
||||
async def test_get_multi_companies_fin_stmt(self, mock_get_single_company_fin_stmt):
|
||||
statement, sym1, sym2, quarterly, mock_session = 'xyz', 'foo', 'bar', False, MagicMock()
|
||||
mock__get_single_company_fin_stmt.return_value = expected_output = 'baz'
|
||||
output = await functions._get_multi_companies_fin_stmt(statement, sym1,
|
||||
quarterly=quarterly, session=mock_session)
|
||||
mock_get_single_company_fin_stmt.return_value = expected_output = 'baz'
|
||||
output = await functions.get_multi_companies_fin_stmt(statement, sym1,
|
||||
quarterly=quarterly, session=mock_session)
|
||||
self.assertEqual(expected_output, output)
|
||||
mock__get_single_company_fin_stmt.assert_called_once_with(statement, sym1, quarterly, mock_session)
|
||||
mock__get_single_company_fin_stmt.reset_mock()
|
||||
mock_get_single_company_fin_stmt.assert_called_once_with(statement, sym1, quarterly, mock_session)
|
||||
mock_get_single_company_fin_stmt.reset_mock()
|
||||
|
||||
expected_output = {sym1: expected_output, sym2: expected_output}
|
||||
output = await functions._get_multi_companies_fin_stmt(statement, sym1, sym2,
|
||||
quarterly=quarterly, session=mock_session)
|
||||
output = await functions.get_multi_companies_fin_stmt(statement, sym1, sym2,
|
||||
quarterly=quarterly, session=mock_session)
|
||||
self.assertDictEqual(expected_output, output)
|
||||
mock__get_single_company_fin_stmt.assert_has_calls([
|
||||
mock_get_single_company_fin_stmt.assert_has_calls([
|
||||
call(statement, sym1, quarterly, mock_session),
|
||||
call(statement, sym2, quarterly, mock_session)
|
||||
])
|
||||
|
||||
async def _helper_test_get_any_statement(self, stmt: str, mock__get_multi_companies_fin_stmt):
|
||||
async def _helper_test_get_any_statement(self, stmt: str, mock_get_multi_companies_fin_stmt):
|
||||
sym1, sym2, quarterly, batch_size, mock_session = 'foo', 'bar', False, 2, MagicMock()
|
||||
mock__get_multi_companies_fin_stmt.return_value = expected_output = 'baz'
|
||||
mock_get_multi_companies_fin_stmt.return_value = expected_output = 'baz'
|
||||
if stmt == BS:
|
||||
function = functions.get_balance_sheet
|
||||
elif stmt == IS:
|
||||
@ -161,50 +161,50 @@ class FunctionsTestCase(IsolatedAsyncioTestCase):
|
||||
raise ValueError
|
||||
output = await function(sym1, sym2, quarterly=quarterly, concurrent_batch_size=batch_size, session=mock_session)
|
||||
self.assertEqual(expected_output, output)
|
||||
mock__get_multi_companies_fin_stmt.assert_called_once_with(
|
||||
mock_get_multi_companies_fin_stmt.assert_called_once_with(
|
||||
stmt, sym1, sym2, quarterly=quarterly, concurrent_batch_size=batch_size, session=mock_session
|
||||
)
|
||||
|
||||
@patch.object(functions, '_get_multi_companies_fin_stmt')
|
||||
async def test_get_balance_sheet(self, mock__get_multi_companies_fin_stmt):
|
||||
await self._helper_test_get_any_statement(BS, mock__get_multi_companies_fin_stmt)
|
||||
@patch.object(functions, 'get_multi_companies_fin_stmt')
|
||||
async def test_get_balance_sheet(self, mock_get_multi_companies_fin_stmt):
|
||||
await self._helper_test_get_any_statement(BS, mock_get_multi_companies_fin_stmt)
|
||||
|
||||
@patch.object(functions, '_get_multi_companies_fin_stmt')
|
||||
async def test_get_income_statement(self, mock__get_multi_companies_fin_stmt):
|
||||
await self._helper_test_get_any_statement(IS, mock__get_multi_companies_fin_stmt)
|
||||
@patch.object(functions, 'get_multi_companies_fin_stmt')
|
||||
async def test_get_income_statement(self, mock_get_multi_companies_fin_stmt):
|
||||
await self._helper_test_get_any_statement(IS, mock_get_multi_companies_fin_stmt)
|
||||
|
||||
@patch.object(functions, '_get_multi_companies_fin_stmt')
|
||||
async def test_get_cash_flow_statement(self, mock__get_multi_companies_fin_stmt):
|
||||
await self._helper_test_get_any_statement(CF, mock__get_multi_companies_fin_stmt)
|
||||
@patch.object(functions, 'get_multi_companies_fin_stmt')
|
||||
async def test_get_cash_flow_statement(self, mock_get_multi_companies_fin_stmt):
|
||||
await self._helper_test_get_any_statement(CF, mock_get_multi_companies_fin_stmt)
|
||||
|
||||
@patch.object(functions, '_get_single_company_fin_stmt')
|
||||
async def test__get_single_company_all_financials(self, mock__get_single_company_fin_stmt):
|
||||
@patch.object(functions, 'get_single_company_fin_stmt')
|
||||
async def test_get_single_company_all_financials(self, mock_get_single_company_fin_stmt):
|
||||
symbol, quarterly, mock_session = 'foo', False, MagicMock()
|
||||
mock__get_single_company_fin_stmt.return_value = bar = 'bar'
|
||||
mock_get_single_company_fin_stmt.return_value = bar = 'bar'
|
||||
expected_output = {BS: bar, IS: bar, CF: bar}
|
||||
output = await functions._get_single_company_all_financials(symbol, quarterly, mock_session)
|
||||
output = await functions.get_single_company_all_financials(symbol, quarterly, mock_session)
|
||||
self.assertDictEqual(expected_output, output)
|
||||
mock__get_single_company_fin_stmt.assert_has_calls([
|
||||
mock_get_single_company_fin_stmt.assert_has_calls([
|
||||
call(BS, symbol, quarterly, mock_session),
|
||||
call(IS, symbol, quarterly, mock_session),
|
||||
call(CF, symbol, quarterly, mock_session)
|
||||
])
|
||||
|
||||
@patch.object(functions, '_get_single_company_all_financials')
|
||||
async def test_get_company_financials(self, mock__get_single_company_all_financials):
|
||||
mock__get_single_company_all_financials.return_value = expected_output = 'baz'
|
||||
@patch.object(functions, 'get_single_company_all_financials')
|
||||
async def test_get_company_financials(self, mock_get_single_company_all_financials):
|
||||
mock_get_single_company_all_financials.return_value = expected_output = 'baz'
|
||||
symbol, quarterly, mock_session = 'foo', False, MagicMock()
|
||||
output = await functions.get_all_financials(symbol, quarterly=quarterly, session=mock_session)
|
||||
self.assertEqual(expected_output, output)
|
||||
mock__get_single_company_all_financials.assert_called_once_with(symbol, quarterly, mock_session)
|
||||
mock__get_single_company_all_financials.reset_mock()
|
||||
mock_get_single_company_all_financials.assert_called_once_with(symbol, quarterly, mock_session)
|
||||
mock_get_single_company_all_financials.reset_mock()
|
||||
|
||||
test_sym1, test_sym2 = 'x', 'y'
|
||||
expected_output = {test_sym1: expected_output, test_sym2: expected_output}
|
||||
output = await functions.get_all_financials(test_sym1, test_sym2,
|
||||
quarterly=quarterly, session=mock_session)
|
||||
self.assertDictEqual(expected_output, output)
|
||||
mock__get_single_company_all_financials.assert_has_calls([
|
||||
mock_get_single_company_all_financials.assert_has_calls([
|
||||
call(test_sym1, quarterly, mock_session),
|
||||
call(test_sym2, quarterly, mock_session)
|
||||
])
|
||||
|
Reference in New Issue
Block a user