2018-05-05 22:41:13 +02:00
|
|
|
# coding=utf-8
|
2018-04-27 14:36:15 +02:00
|
|
|
from collections import defaultdict
|
|
|
|
import mock
|
|
|
|
from searx.engines import acgsou
|
|
|
|
from searx.testing import SearxTestCase
|
|
|
|
|
|
|
|
|
|
|
|
class TestAcgsouEngine(SearxTestCase):
|
|
|
|
|
|
|
|
def test_request(self):
|
|
|
|
query = 'test_query'
|
|
|
|
dic = defaultdict(dict)
|
|
|
|
dic['pageno'] = 1
|
|
|
|
params = acgsou.request(query, dic)
|
|
|
|
self.assertTrue('url' in params)
|
|
|
|
self.assertTrue(query in params['url'])
|
|
|
|
self.assertTrue('acgsou.com' in params['url'])
|
|
|
|
|
|
|
|
def test_response(self):
|
|
|
|
resp = mock.Mock(text='<html></html>')
|
|
|
|
self.assertEqual(acgsou.response(resp), [])
|
|
|
|
|
2018-05-05 22:41:13 +02:00
|
|
|
html = u"""
|
2018-04-27 16:33:23 +02:00
|
|
|
<html>
|
2018-04-27 14:36:15 +02:00
|
|
|
<table id="listTable" class="list_style table_fixed">
|
|
|
|
<thead class="tcat">
|
|
|
|
<tr>
|
2018-04-27 16:38:52 +02:00
|
|
|
<th axis="string" class="l1 tableHeaderOver">test</th>
|
|
|
|
<th axis="string" class="l2 tableHeaderOver">test</th>
|
|
|
|
<th axis="string" class="l3 tableHeaderOver">test</th>
|
|
|
|
<th axis="size" class="l4 tableHeaderOver">test</th>
|
|
|
|
<th axis="number" class="l5 tableHeaderOver">test</th>
|
|
|
|
<th axis="number" class="l6 tableHeaderOver">test</th>
|
|
|
|
<th axis="number" class="l7 tableHeaderOver">test</th>
|
|
|
|
<th axis="string" class="l8 tableHeaderOver">test</th>
|
2018-04-27 14:36:15 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="tbody" id="data_list">
|
2018-04-27 16:33:23 +02:00
|
|
|
<tr class="alt1 ">
|
2018-04-27 14:36:15 +02:00
|
|
|
<td nowrap="nowrap">date</td>
|
2018-05-05 22:41:13 +02:00
|
|
|
<td><a href="category.html">testcategory テスト</a></td>
|
2018-04-27 14:36:15 +02:00
|
|
|
<td style="text-align:left;">
|
2018-05-05 22:41:13 +02:00
|
|
|
<a href="show-torrentid.html" target="_blank">torrentname テスト</a>
|
2018-04-27 14:36:15 +02:00
|
|
|
</td>
|
|
|
|
<td>1MB</td>
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
<span class="bts_1">
|
|
|
|
29
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
<span class="btl_1">
|
|
|
|
211
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td nowrap="nowrap">
|
|
|
|
<span class="btc_">
|
|
|
|
168
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td><a href="random.html">user</a></td>
|
|
|
|
</tr>
|
2018-04-27 16:33:23 +02:00
|
|
|
</tbody>
|
2018-04-27 14:36:15 +02:00
|
|
|
</table>
|
2018-04-27 16:33:23 +02:00
|
|
|
</html>
|
2018-04-27 14:36:15 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
resp = mock.Mock(text=html)
|
|
|
|
results = acgsou.response(resp)
|
|
|
|
|
|
|
|
self.assertEqual(type(results), list)
|
|
|
|
self.assertEqual(len(results), 1)
|
|
|
|
|
|
|
|
r = results[0]
|
2018-05-03 14:20:48 +02:00
|
|
|
self.assertEqual(r['url'], 'http://www.acgsou.com/show-torrentid.html')
|
2018-05-05 22:41:13 +02:00
|
|
|
self.assertEqual(r['content'], u'Category: "testcategory テスト".')
|
|
|
|
self.assertEqual(r['title'], u'torrentname テスト')
|
2018-04-27 14:36:15 +02:00
|
|
|
self.assertEqual(r['filesize'], 1048576)
|