Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
Fixed unittests.
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrrh0n1c committed Nov 7, 2017
1 parent 4340c0b commit a1d1a50
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/unit/engines/test_currency_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_request(self):
query = b'convert 10 Pound Sterlings to United States Dollars'
params = currency_convert.request(query, dicto)
self.assertIn('url', params)
self.assertIn('finance.yahoo.com', params['url'])
self.assertIn('finance.google.com', params['url'])
self.assertIn('GBP', params['url'])
self.assertIn('USD', params['url'])

Expand All @@ -31,13 +31,14 @@ def test_response(self):
response = mock.Mock(text='a,b,c,d', search_params=dicto)
self.assertEqual(currency_convert.response(response), [])

csv = "2,0.5,1"
response = mock.Mock(text=csv, search_params=dicto)
body = "<span class=bld>0.5 {}</span>".format(dicto['to'])
response = mock.Mock(text=body, search_params=dicto)
results = currency_convert.response(response)
self.assertEqual(type(results), list)
self.assertEqual(len(results), 1)
self.assertEqual(results[0]['answer'], '10.0 GBP = 5.0 USD, 1 GBP (pound sterling)' +
' = 0.5 USD (United States dollar)')
now_date = datetime.now().strftime('%Y%m%d')
self.assertEqual(results[0]['url'], 'https://finance.yahoo.com/currency/converter-results/' +
now_date + '/10.0-gbp-to-usd.html')

target_url = 'https://finance.google.com/finance?q={}{}'.format(
dicto['from'], dicto['to'])
self.assertEqual(results[0]['url'], target_url)

0 comments on commit a1d1a50

Please sign in to comment.