|
@@ -17,7 +17,7 @@ class TestCurrencyConvertEngine(SearxTestCase):
|
17
|
17
|
query = b'convert 10 Pound Sterlings to United States Dollars'
|
18
|
18
|
params = currency_convert.request(query, dicto)
|
19
|
19
|
self.assertIn('url', params)
|
20
|
|
- self.assertIn('finance.yahoo.com', params['url'])
|
|
20
|
+ self.assertIn('finance.google.com', params['url'])
|
21
|
21
|
self.assertIn('GBP', params['url'])
|
22
|
22
|
self.assertIn('USD', params['url'])
|
23
|
23
|
|
|
@@ -31,13 +31,14 @@ class TestCurrencyConvertEngine(SearxTestCase):
|
31
|
31
|
response = mock.Mock(text='a,b,c,d', search_params=dicto)
|
32
|
32
|
self.assertEqual(currency_convert.response(response), [])
|
33
|
33
|
|
34
|
|
- csv = "2,0.5,1"
|
35
|
|
- response = mock.Mock(text=csv, search_params=dicto)
|
|
34
|
+ body = "<span class=bld>0.5 {}</span>".format(dicto['to'])
|
|
35
|
+ response = mock.Mock(text=body, search_params=dicto)
|
36
|
36
|
results = currency_convert.response(response)
|
37
|
37
|
self.assertEqual(type(results), list)
|
38
|
38
|
self.assertEqual(len(results), 1)
|
39
|
39
|
self.assertEqual(results[0]['answer'], '10.0 GBP = 5.0 USD, 1 GBP (pound sterling)' +
|
40
|
40
|
' = 0.5 USD (United States dollar)')
|
41
|
|
- now_date = datetime.now().strftime('%Y%m%d')
|
42
|
|
- self.assertEqual(results[0]['url'], 'https://finance.yahoo.com/currency/converter-results/' +
|
43
|
|
- now_date + '/10.0-gbp-to-usd.html')
|
|
41
|
+
|
|
42
|
+ target_url = 'https://finance.google.com/finance?q={}{}'.format(
|
|
43
|
+ dicto['from'], dicto['to'])
|
|
44
|
+ self.assertEqual(results[0]['url'], target_url)
|