| 
									
										
										
										
											2015-02-02 18:39:50 +01:00
										 |  |  | from collections import defaultdict | 
					
						
							|  |  |  | from datetime import datetime | 
					
						
							|  |  |  | import mock | 
					
						
							|  |  |  | from searx.engines import currency_convert | 
					
						
							|  |  |  | from searx.testing import SearxTestCase | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TestCurrencyConvertEngine(SearxTestCase): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_request(self): | 
					
						
							|  |  |  |         query = 'test_query' | 
					
						
							|  |  |  |         dicto = defaultdict(dict) | 
					
						
							|  |  |  |         dicto['pageno'] = 1 | 
					
						
							|  |  |  |         params = currency_convert.request(query, dicto) | 
					
						
							|  |  |  |         self.assertNotIn('url', params) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         query = '1.1.1 EUR in USD' | 
					
						
							|  |  |  |         params = currency_convert.request(query, dicto) | 
					
						
							|  |  |  |         self.assertNotIn('url', params) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         query = '10 eur in usd' | 
					
						
							|  |  |  |         params = currency_convert.request(query, dicto) | 
					
						
							|  |  |  |         self.assertIn('url', params) | 
					
						
							|  |  |  |         self.assertIn('finance.yahoo.com', params['url']) | 
					
						
							|  |  |  |         self.assertIn('EUR', params['url']) | 
					
						
							|  |  |  |         self.assertIn('USD', params['url']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_response(self): | 
					
						
							|  |  |  |         dicto = defaultdict(dict) | 
					
						
							| 
									
										
										
										
											2015-05-12 20:52:08 +02:00
										 |  |  |         dicto['ammount'] = float(10) | 
					
						
							| 
									
										
										
										
											2015-02-02 18:39:50 +01:00
										 |  |  |         dicto['from'] = "EUR" | 
					
						
							|  |  |  |         dicto['to'] = "USD" | 
					
						
							| 
									
										
										
										
											2015-05-12 20:52:08 +02:00
										 |  |  |         dicto['from_name'] = "euro" | 
					
						
							|  |  |  |         dicto['to_name'] = "United States dollar" | 
					
						
							| 
									
										
										
										
											2015-02-02 18:39:50 +01:00
										 |  |  |         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) | 
					
						
							|  |  |  |         results = currency_convert.response(response) | 
					
						
							|  |  |  |         self.assertEqual(type(results), list) | 
					
						
							|  |  |  |         self.assertEqual(len(results), 1) | 
					
						
							| 
									
										
										
										
											2015-05-12 20:52:08 +02:00
										 |  |  |         self.assertEqual(results[0]['answer'], '10.0 EUR = 5.0 USD, 1 EUR (euro) = 0.5 USD (United States dollar)') | 
					
						
							| 
									
										
										
										
											2015-02-02 18:39:50 +01:00
										 |  |  |         now_date = datetime.now().strftime('%Y%m%d') | 
					
						
							| 
									
										
										
										
											2015-04-26 19:23:06 +02:00
										 |  |  |         self.assertEqual(results[0]['url'], 'https://finance.yahoo.com/currency/converter-results/' + | 
					
						
							| 
									
										
										
										
											2015-05-12 20:52:08 +02:00
										 |  |  |                                             now_date + '/10.0-eur-to-usd.html') |