-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathtest_yahoo_dataset_extraction.py
350 lines (308 loc) · 10.3 KB
/
test_yahoo_dataset_extraction.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
"""
Test file for:
Yahoo Extract Data
"""
import mock
import json
import analysis_engine.consts as ae_consts
import analysis_engine.mocks.base_test as base_test
import analysis_engine.build_result as build_result
import analysis_engine.api_requests as api_requests
import analysis_engine.yahoo.extract_df_from_redis as yahoo_extract
import spylunking.log.setup_logging as log_utils
log = log_utils.build_colorized_logger(name=__name__)
def mock_extract_pricing_from_redis_success(
label,
host,
port,
db,
password,
key,
**kwargs):
"""mock_extract_pricing_from_redis_success
:param label: test label
:param address: test address
:param db: test db
:param key: test key
:param kwargs: additional keyword args as a dictionary
"""
sample_record = api_requests.build_cache_ready_pricing_dataset(
label=(
f'{label}.{host}.{port}.{db}.{key}.'
'mock_extract_pricing_from_redis_success'))
rec = {
'data': sample_record['pricing']
}
res = build_result.build_result(
status=ae_consts.SUCCESS,
err=None,
rec=rec)
return res
# end of mock_extract_pricing_from_redis_success
def mock_extract_news_from_redis_success(
label,
host,
port,
db,
password,
key,
**kwargs):
"""mock_extract_news_from_redis_success
:param label: test label
:param address: test address
:param db: test db
:param key: test key
:param kwargs: additional keyword args as a dictionary
"""
sample_record = api_requests.build_cache_ready_pricing_dataset(
label=(
f'{label}.{host}.{port}.{db}.{key}.'
'mock_extract_news_from_redis_success'))
rec = {
'data': sample_record['news']
}
res = build_result.build_result(
status=ae_consts.SUCCESS,
err=None,
rec=rec)
return res
# end of mock_extract_news_from_redis_success
def mock_extract_options_from_redis_success(
label,
host,
port,
db,
password,
key,
**kwargs):
"""mock_extract_options_from_redis_success
:param label: test label
:param address: test address
:param db: test db
:param key: test key
:param kwargs: additional keyword args as a dictionary
"""
sample_record = api_requests.build_cache_ready_pricing_dataset(
label=(
f'{label}.{host}.{port}.{db}.{key}.'
'mock_extract_options_from_redis_success'))
options_dict = sample_record['options']
rec = {
'data': options_dict
}
res = build_result.build_result(
status=ae_consts.SUCCESS,
err=None,
rec=rec)
return res
# end of mock_extract_options_from_redis_success
class TestYahooDatasetExtraction(base_test.BaseTestCase):
"""TestYahooDatasetExtraction"""
def setUp(self):
"""setUp"""
self.ticker = ae_consts.TICKER
# end of setUp
@mock.patch(
(
'analysis_engine.get_data_from_redis_key.'
'get_data_from_redis_key'),
new=mock_extract_pricing_from_redis_success)
def test_extract_pricing_success(self):
"""test_extract_pricing_success"""
test_name = 'test_extract_pricing_dataset_success'
work = api_requests.get_ds_dict(
ticker=self.ticker,
label=test_name)
status, df = yahoo_extract.extract_pricing_dataset(
work_dict=work)
self.assertIsNotNone(
df)
self.assertEqual(
ae_consts.get_status(status=status),
'SUCCESS')
self.assertTrue(
len(df.index) == 1)
self.assertEqual(
df['regularMarketPrice'][0],
288.09)
# end of test_extract_pricing_success
@mock.patch(
(
'analysis_engine.get_data_from_redis_key.'
'get_data_from_redis_key'),
new=mock_extract_news_from_redis_success)
def test_extract_news_success(self):
"""test_extract_news_success"""
test_name = 'test_extract_news_success'
work = api_requests.get_ds_dict(
ticker=self.ticker,
label=test_name)
status, df = yahoo_extract.extract_yahoo_news_dataset(
work_dict=work)
self.assertIsNotNone(
df)
self.assertEqual(
ae_consts.get_status(status=status),
'SUCCESS')
self.assertTrue(
len(df.index) == 2)
self.assertEqual(
df['u'][1],
'http://finance.yahoo.com/news/url2')
self.assertEqual(
df['tt'][1],
'1493311950')
# end of test_extract_news_success
@mock.patch(
(
'analysis_engine.get_data_from_redis_key.'
'get_data_from_redis_key'),
new=mock_extract_options_from_redis_success)
def test_extract_option_calls_success(self):
"""test_extract_option_calls_success"""
test_name = 'test_extract_option_calls_success'
work = api_requests.get_ds_dict(
ticker=self.ticker,
label=test_name)
status, df = yahoo_extract.extract_option_calls_dataset(
work_dict=work)
self.assertIsNotNone(
df)
self.assertEqual(
ae_consts.get_status(status=status),
'SUCCESS')
self.assertTrue(
len(df.index) == 1)
self.assertEqual(
df['strike'][0],
380)
# end of test_extract_option_calls_success
@mock.patch(
(
'analysis_engine.get_data_from_redis_key.'
'get_data_from_redis_key'),
new=mock_extract_options_from_redis_success)
def test_extract_option_puts_success(self):
"""test_extract_option_puts_success"""
test_name = 'test_extract_option_puts_success'
work = api_requests.get_ds_dict(
ticker=self.ticker,
label=test_name)
status, df = yahoo_extract.extract_option_puts_dataset(
work_dict=work)
self.assertIsNotNone(
df)
self.assertEqual(
ae_consts.get_status(status=status),
'SUCCESS')
self.assertTrue(
len(df.index) == 1)
self.assertEqual(
df['strike'][0],
380)
# end of test_extract_option_puts_success
"""
Integration Tests
Please ensure redis and minio are running and run this:
::
export INT_TESTS=1
"""
def debug_df(
self,
df):
"""debug_df
:param df: ``pandas.DataFrame`` from a fetch
"""
print('-----------------------------------')
print(f'dataframe: {df}')
print('')
print(f'dataframe columns:\n{df.columns.values}')
print('-----------------------------------')
# end of debug_df
def test_integration_extract_pricing(self):
"""test_integration_extract_pricing"""
if ae_consts.ev('INT_TESTS', '0') == '0':
return
# build dataset cache dictionary
work = api_requests.get_ds_dict(
ticker='SPY',
label='test_integration_extract_pricing')
status, df = yahoo_extract.extract_pricing_dataset(
work_dict=work)
if status == ae_consts.SUCCESS:
self.assertIsNotNone(
df)
self.debug_df(df=df)
else:
log.critical(
'Yahoo Pricing are missing in redis '
f'for ticker={work["ticker"]} '
f'status={ae_consts.get_status(status=status)}')
# end of test_integration_extract_pricing
def test_integration_extract_yahoo_news(self):
"""test_integration_extract_yahoo_news"""
if ae_consts.ev('INT_TESTS', '0') == '0':
return
# build dataset cache dictionary
work = api_requests.get_ds_dict(
ticker='SPY',
label='test_integration_extract_news')
status, df = yahoo_extract.extract_yahoo_news_dataset(
work_dict=work)
if status == ae_consts.SUCCESS:
self.assertIsNotNone(
df)
self.debug_df(df=df)
else:
log.critical(
'Yahoo News is missing in redis '
f'for ticker={work["ticker"]} '
f'status={ae_consts.get_status(status=status)}')
# end of test_integration_extract_yahoo_news
def test_integration_extract_option_calls(self):
"""test_integration_extract_option_calls"""
if ae_consts.ev('INT_TESTS', '0') == '0':
return
# build dataset cache dictionary
work = api_requests.get_ds_dict(
ticker='SPY',
base_key='SPY_2018-12-31',
label='test_integration_extract_option_calls')
status, df = yahoo_extract.extract_option_calls_dataset(
work_dict=work)
if status == ae_consts.SUCCESS:
self.assertIsNotNone(
df)
self.debug_df(df=df)
self.assertTrue(ae_consts.is_df(df=df))
for i, r in df.iterrows():
print(ae_consts.ppj(json.loads(r.to_json())))
log.info(
'done printing option call data')
else:
log.critical(
'Yahoo Option Calls are missing in redis '
f'for ticker={work["ticker"]} '
f'status={ae_consts.get_status(status=status)}')
# end of test_integration_extract_option_calls
def test_integration_extract_option_puts(self):
"""test_integration_extract_option_puts"""
if ae_consts.ev('INT_TESTS', '0') == '0':
return
# build dataset cache dictionary
work = api_requests.get_ds_dict(
ticker='SPY',
label='test_integration_extract_option_puts')
status, df = yahoo_extract.extract_option_puts_dataset(
work_dict=work)
if status == ae_consts.SUCCESS:
self.assertIsNotNone(
df)
self.debug_df(df=df)
else:
log.critical(
'Yahoo Option Puts are missing in redis '
f'for ticker={work["ticker"]} '
f'status={ae_consts.get_status(status=status)}')
# end of test_integration_extract_option_puts
# end of TestYahooDatasetExtraction