summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-01-25 22:33:02 +0100
committerCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-01-25 22:33:02 +0100
commit192f255e13e3a38cd572b08a2aff4b6117ff0960 (patch)
tree5b3eba870154ebf0083f900390587b13d0215a01 /searx
parent0f52cc75424b4b376b7b950801c9a91d4e24e282 (diff)
Mixcloud's unit test
Diffstat (limited to 'searx')
-rw-r--r--searx/tests/engines/test_deezer.py1
-rw-r--r--searx/tests/engines/test_mixcloud.py67
-rw-r--r--searx/tests/test_engines.py1
3 files changed, 69 insertions, 0 deletions
diff --git a/searx/tests/engines/test_deezer.py b/searx/tests/engines/test_deezer.py
index e0b81e3d6..c8c2c90f2 100644
--- a/searx/tests/engines/test_deezer.py
+++ b/searx/tests/engines/test_deezer.py
@@ -43,6 +43,7 @@ class TestDeezerEngine(SearxTestCase):
self.assertEqual(results[0]['title'], 'Title of track')
self.assertEqual(results[0]['url'], 'http://www.deezer.com/track/1094042')
self.assertEqual(results[0]['content'], 'Artist Name &bull; Album Title &bull; Title of track')
+ self.assertTrue('100' in results[0]['embedded'])
json = """
{"data":[
diff --git a/searx/tests/engines/test_mixcloud.py b/searx/tests/engines/test_mixcloud.py
new file mode 100644
index 000000000..a2ea47cf9
--- /dev/null
+++ b/searx/tests/engines/test_mixcloud.py
@@ -0,0 +1,67 @@
+from collections import defaultdict
+import mock
+from searx.engines import mixcloud
+from searx.testing import SearxTestCase
+
+
+class TestMixcloudEngine(SearxTestCase):
+
+ def test_request(self):
+ query = 'test_query'
+ dicto = defaultdict(dict)
+ dicto['pageno'] = 0
+ params = mixcloud.request(query, dicto)
+ self.assertTrue('url' in params)
+ self.assertTrue(query in params['url'])
+ self.assertTrue('mixcloud.com' in params['url'])
+
+ def test_response(self):
+ self.assertRaises(AttributeError, mixcloud.response, None)
+ self.assertRaises(AttributeError, mixcloud.response, [])
+ self.assertRaises(AttributeError, mixcloud.response, '')
+ self.assertRaises(AttributeError, mixcloud.response, '[]')
+
+ response = mock.Mock(text='{}')
+ self.assertEqual(mixcloud.response(response), [])
+
+ response = mock.Mock(text='{"data": []}')
+ self.assertEqual(mixcloud.response(response), [])
+
+ json = """
+ {"data":[
+ {
+ "user": {
+ "url": "http://www.mixcloud.com/user/",
+ "username": "user",
+ "name": "User",
+ "key": "/user/"
+ },
+ "key": "/user/this-is-the-url/",
+ "created_time": "2014-11-14T13:30:02Z",
+ "audio_length": 3728,
+ "slug": "this-is-the-url",
+ "name": "Title of track",
+ "url": "http://www.mixcloud.com/user/this-is-the-url/",
+ "updated_time": "2014-11-14T13:14:10Z"
+ }
+ ]}
+ """
+ response = mock.Mock(text=json)
+ results = mixcloud.response(response)
+ self.assertEqual(type(results), list)
+ self.assertEqual(len(results), 1)
+ self.assertEqual(results[0]['title'], 'Title of track')
+ self.assertEqual(results[0]['url'], 'http://www.mixcloud.com/user/this-is-the-url/')
+ self.assertEqual(results[0]['content'], 'User')
+ self.assertTrue('http://www.mixcloud.com/user/this-is-the-url/' in results[0]['embedded'])
+
+ json = """
+ {"toto":[
+ {"id":200,"name":"Artist Name",
+ "link":"http:\/\/www.mixcloud.com\/artist\/1217","type":"artist"}
+ ]}
+ """
+ response = mock.Mock(text=json)
+ results = mixcloud.response(response)
+ self.assertEqual(type(results), list)
+ self.assertEqual(len(results), 0)
diff --git a/searx/tests/test_engines.py b/searx/tests/test_engines.py
index 45c9d7e28..b42b1b89c 100644
--- a/searx/tests/test_engines.py
+++ b/searx/tests/test_engines.py
@@ -2,3 +2,4 @@ from searx.tests.engines.test_bing import * # noqa
from searx.tests.engines.test_deezer import * # noqa
from searx.tests.engines.test_dummy import * # noqa
from searx.tests.engines.test_github import * # noqa
+from searx.tests.engines.test_mixcloud import * # noqa