|
@@ -20,14 +20,22 @@ class TestAcgsouEngine(SearxTestCase):
|
20
|
20
|
self.assertEqual(acgsou.response(resp), [])
|
21
|
21
|
|
22
|
22
|
html = """
|
|
23
|
+ <html>
|
23
|
24
|
<table id="listTable" class="list_style table_fixed">
|
24
|
25
|
<thead class="tcat">
|
25
|
26
|
<tr>
|
26
|
|
- tablehead
|
|
27
|
+ <th axis="string" class="l1 tableHeaderOver">发布时间</th>
|
|
28
|
+ <th axis="string" class="l2 tableHeaderOver">分类</th>
|
|
29
|
+ <th axis="string" class="l3 tableHeaderOver">资源名称</th>
|
|
30
|
+ <th axis="size" class="l4 tableHeaderOver">大小</th>
|
|
31
|
+ <th axis="number" class="l5 tableHeaderOver">种子</th>
|
|
32
|
+ <th axis="number" class="l6 tableHeaderOver">下载</th>
|
|
33
|
+ <th axis="number" class="l7 tableHeaderOver">完成</th>
|
|
34
|
+ <th axis="string" class="l8 tableHeaderOver">发布者/联盟</th>
|
27
|
35
|
</tr>
|
28
|
36
|
</thead>
|
29
|
37
|
<tbody class="tbody" id="data_list">
|
30
|
|
- <tr class="alt1 ">
|
|
38
|
+ <tr class="alt1 ">
|
31
|
39
|
<td nowrap="nowrap">date</td>
|
32
|
40
|
<td><a href="category.html">testcategory</a></td>
|
33
|
41
|
<td style="text-align:left;">
|
|
@@ -51,7 +59,9 @@ class TestAcgsouEngine(SearxTestCase):
|
51
|
59
|
</td>
|
52
|
60
|
<td><a href="random.html">user</a></td>
|
53
|
61
|
</tr>
|
|
62
|
+ </tbody>
|
54
|
63
|
</table>
|
|
64
|
+</html>
|
55
|
65
|
"""
|
56
|
66
|
|
57
|
67
|
resp = mock.Mock(text=html)
|