diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-12-12 10:06:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-12 10:06:43 +0100 |
| commit | e58949b76fac7aa93341523ff0e2f35e0a03e057 (patch) | |
| tree | 82f90b1e406ffda0276d2918b1b86c3589e50012 /tests/unit/engines/test_youtube_noapi.py | |
| parent | 6b6007fc78f47099d84099c6d6c23e2cd213b82f (diff) | |
| parent | b034356825420507c9fb7ee2dc100676a88cf6c7 (diff) | |
Merge pull request #783 from kvch/time-range-search-year
add year support to engines which support it
Diffstat (limited to 'tests/unit/engines/test_youtube_noapi.py')
| -rw-r--r-- | tests/unit/engines/test_youtube_noapi.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/unit/engines/test_youtube_noapi.py b/tests/unit/engines/test_youtube_noapi.py index 986441b51..41dcbb749 100644 --- a/tests/unit/engines/test_youtube_noapi.py +++ b/tests/unit/engines/test_youtube_noapi.py @@ -17,6 +17,25 @@ class TestYoutubeNoAPIEngine(SearxTestCase): self.assertIn(query, params['url']) self.assertIn('youtube.com', params['url']) + def test_time_range_search(self): + dicto = defaultdict(dict) + query = 'test_query' + dicto['time_range'] = 'year' + params = youtube_noapi.request(query, dicto) + self.assertIn('&sp=EgIIBQ%253D%253D', params['url']) + + dicto['time_range'] = 'month' + params = youtube_noapi.request(query, dicto) + self.assertIn('&sp=EgIIBA%253D%253D', params['url']) + + dicto['time_range'] = 'week' + params = youtube_noapi.request(query, dicto) + self.assertIn('&sp=EgIIAw%253D%253D', params['url']) + + dicto['time_range'] = 'day' + params = youtube_noapi.request(query, dicto) + self.assertIn('&sp=EgIIAg%253D%253D', params['url']) + def test_response(self): self.assertRaises(AttributeError, youtube_noapi.response, None) self.assertRaises(AttributeError, youtube_noapi.response, []) |