summaryrefslogtreecommitdiff
path: root/tests/unit/engines/test_acgsou.py
blob: c01acf5deb071afa51908851a9c57171c07fd4df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# coding=utf-8
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), [])

        html = u"""
        <html>
<table id="listTable" class="list_style table_fixed">
  <thead class="tcat">
      <tr>
        <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>
      </tr>
  </thead>
  <tbody class="tbody" id="data_list">
 <tr class="alt1 ">
        <td nowrap="nowrap">date</td>
        <td><a href="category.html">testcategory テスト</a></td>
        <td style="text-align:left;">
            <a href="show-torrentid.html" target="_blank">torrentname テスト</a>
        </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>
      </tbody>
</table>
</html>
        """

        resp = mock.Mock(text=html)
        results = acgsou.response(resp)

        self.assertEqual(type(results), list)
        self.assertEqual(len(results), 1)

        r = results[0]
        self.assertEqual(r['url'], 'http://www.acgsou.com/show-torrentid.html')
        self.assertEqual(r['content'], u'Category: "testcategory テスト".')
        self.assertEqual(r['title'], u'torrentname テスト')
        self.assertEqual(r['filesize'], 1048576)