summaryrefslogtreecommitdiff
path: root/tests/unit/engines/test_doku.py
blob: 331671eeb404947c8a605d5ea9c54393cb5b9eb2 (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
79
80
81
82
83
84
85
86
# -*- coding: utf-8 -*-
from collections import defaultdict
import mock
from searx.engines import doku
from searx.testing import SearxTestCase


class TestDokuEngine(SearxTestCase):

    def test_request(self):
        query = 'test_query'
        dicto = defaultdict(dict)
        params = doku.request(query, dicto)
        self.assertIn('url', params)
        self.assertIn(query, params['url'])

    def test_response(self):
        self.assertRaises(AttributeError, doku.response, None)
        self.assertRaises(AttributeError, doku.response, [])
        self.assertRaises(AttributeError, doku.response, '')
        self.assertRaises(AttributeError, doku.response, '[]')

        response = mock.Mock(text='<html></html>')
        self.assertEqual(doku.response(response), [])

        html = u"""
        <div class="search_quickresult">
            <h3>Pages trouvées :</h3>
            <ul class="search_quickhits">
                <li> <a href="/xfconf-query" class="wikilink1" title="xfconf-query">xfconf-query</a></li>
            </ul>
            <div class="clearer"></div>
        </div>
        """
        response = mock.Mock(text=html)
        results = doku.response(response)
        self.assertEqual(doku.response(response), [{'content': '', 'title': 'xfconf-query', 'url': 'http://localhost:8090/xfconf-query'}])

        html = u"""
        <dl class="search_results">
            <dt><a href="/xvnc?s[]=query" class="wikilink1" title="xvnc">xvnc</a>: 40 Occurrences trouvées</dt>
            <dd>er = /usr/bin/Xvnc
         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 640x480 -depth 8 -Secur... er = /usr/bin/Xvnc
         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 800x600 -depth 8 -Secur... er = /usr/bin/Xvnc
         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 1024x768 -depth 8 -Secu... er = /usr/bin/Xvnc
         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 1280x1024 -depth 8 -Sec</dd>
            <dt><a href="/postfix_mysql_tls_sasl_1404?s[]=query" class="wikilink1" title="postfix_mysql_tls_sasl_1404">postfix_mysql_tls_sasl_1404</a>: 14 Occurrences trouvées</dt>
            <dd>tdepasse
  hosts = 127.0.0.1
  dbname = postfix
  <strong class="search_hit">query</strong> = SELECT goto FROM alias WHERE address='%s' AND a... tdepasse
  hosts = 127.0.0.1
  dbname = postfix
  <strong class="search_hit">query</strong> = SELECT domain FROM domain WHERE domain='%s'
  #optional <strong class="search_hit">query</strong> to use when relaying for backup MX
  #<strong class="search_hit">query</strong> = SELECT domain FROM domain WHERE domain='%s' and backupmx =</dd><dt><a href="/tutoriel/comment_creer_un_terminal_x_ou_recycler_une_vieille_machine?s[]=query" class="wikilink1" title="tutoriel:comment_creer_un_terminal_x_ou_recycler_une_vieille_machine">tutoriel:comment_creer_un_terminal_x_ou_recycler_une_vieille_machine</a>: 13 Occurrences trouvées</dt><dd>z gdm (ubuntu) tapez sudo /etc/init.d/gdm stop
X -<strong class="search_hit">query</strong> 192.168.1.2
&lt;/code&gt;
:)
Si vous désirez, sur la mê... ans une console (tjs sur le vieil ordi)
&lt;code&gt;
X -<strong class="search_hit">query</strong> 192.168.1.2 :1
&lt;/code&gt;
Un écran de login devrait ... ure.
&lt;note tip&gt;Rajouter "-once" à la commande "X -<strong class="search_hit">query</strong> 192.168.1.2 :1" permet de quitter la session et r... d'une ubuntu/kubuntu\\
Testez d'abord que le //X -<strong class="search_hit">query</strong> ...// fonctionne, dans une console (CTRL-ALT-F1) </dd>
          <dt><a href="/bind9?s[]=query" class="wikilink1" title="bind9">bind9</a>: 12 Occurrences trouvées</dt>
          <dd>  printcmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: <strong class="search_hit">QUERY</strong>, status: NOERROR, id: 13427
;; flags: qr aa rd ra; <strong class="search_hit">QUERY</strong>: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

[...]

;; <strong class="search_hit">Query</strong> time: 1 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;... ne énorme diminution du temps mis par la requête (<strong class="search_hit">Query</strong> time) , entre la première et la deuxième requête.</dd>
        </dl>
        """
        response = mock.Mock(text=html)
        results = doku.response(response)
        self.assertEqual(type(results), list)
        self.assertEqual(len(results), 4)
        self.assertEqual(results[0]['title'], 'xvnc')
# FIXME        self.assertEqual(results[0]['url'], u'http://this.should.be.the.link/ű')
# FIXME        self.assertEqual(results[0]['content'], 'This should be the content.')