diff options
author | Adam Tauber <asciimoo@gmail.com> | 2017-11-07 16:05:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 16:05:43 +0100 |
commit | d00aaeedfac7b86cbcb82e352d2f92438083e4c2 (patch) | |
tree | 0fc05c9acc76b779280f91677b79b8d54ec35580 /tests/unit/engines/test_currency_convert.py | |
parent | 00a7041daa7e1f4de1ca7b8787005f571c1f0a65 (diff) | |
parent | a1d1a50149b76545086fd2639ff58797007e435e (diff) | |
download | searxng-d00aaeedfac7b86cbcb82e352d2f92438083e4c2.tar.gz searxng-d00aaeedfac7b86cbcb82e352d2f92438083e4c2.zip |
Merge pull request #1079 from pyrrh0n1c/master
Fixed the currency_convert engine.
Diffstat (limited to 'tests/unit/engines/test_currency_convert.py')
-rw-r--r-- | tests/unit/engines/test_currency_convert.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/unit/engines/test_currency_convert.py b/tests/unit/engines/test_currency_convert.py index 2814d791d..0758e2fc8 100644 --- a/tests/unit/engines/test_currency_convert.py +++ b/tests/unit/engines/test_currency_convert.py @@ -17,13 +17,13 @@ class TestCurrencyConvertEngine(SearxTestCase): 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']) def test_response(self): dicto = defaultdict(dict) - dicto['ammount'] = float(10) + dicto['amount'] = float(10) dicto['from'] = "GBP" dicto['to'] = "USD" dicto['from_name'] = "pound sterling" @@ -31,13 +31,14 @@ class TestCurrencyConvertEngine(SearxTestCase): 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) |