-
Notifications
You must be signed in to change notification settings - Fork 181
/
test_ystockquote.py
55 lines (46 loc) · 2 KB
/
test_ystockquote.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
#!/usr/bin/env python
#
# Copyright (c) 2013,2016 Corey Goldberg ([email protected])
#
# license: GNU LGPL
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# Requires: Python 2.7/3.3+
import unittest
import ystockquote
class YStockQuoteTestCase(unittest.TestCase):
def test_get_all(self):
symbol = 'GOOG'
all_info = ystockquote.get_all(symbol)
self.assertIsInstance(all_info, dict)
pc = all_info['previous_close']
self.assertNotEqual(pc, 'N/A')
self.assertGreater(float(pc), 0)
def test_get_historical_prices(self):
symbol = 'GOOG'
start_date = '2013-01-02'
end_date = '2013-01-15'
prices = ystockquote.get_historical_prices(
symbol, start_date, end_date)
self.assertIsInstance(prices, dict)
self.assertEqual(len(prices), 10)
self.assertEqual(sorted(prices.keys())[0], '2013-01-02')
self.assertEqual(sorted(prices.keys())[-1], end_date)
self.assertGreater(float(prices[start_date]['Open']), 0.0)
self.assertGreater(float(prices[start_date]['High']), 0.0)
self.assertGreater(float(prices[start_date]['Low']), 0.0)
self.assertGreater(float(prices[start_date]['Close']), 0.0)
self.assertGreater(float(prices[start_date]['Volume']), 0.0)
self.assertGreater(float(prices[start_date]['Adj Close']), 0.0)
self.assertGreater(float(prices[end_date]['Open']), 0.0)
self.assertGreater(float(prices[end_date]['High']), 0.0)
self.assertGreater(float(prices[end_date]['Low']), 0.0)
self.assertGreater(float(prices[end_date]['Close']), 0.0)
self.assertGreater(float(prices[end_date]['Volume']), 0.0)
self.assertGreater(float(prices[end_date]['Adj Close']), 0.0)
if __name__ == '__main__':
unittest.main()