Browse Source

Fix pep8 about too long lines

Code is refactored and example data are truncated.
Guilhem Bonnefille 9 years ago
parent
commit
bb29a910f2
1 changed files with 12 additions and 19 deletions
  1. 12
    19
      tests/unit/engines/test_doku.py

+ 12
- 19
tests/unit/engines/test_doku.py View File

@@ -34,17 +34,20 @@ class TestDokuEngine(SearxTestCase):
34 34
         """
35 35
         response = mock.Mock(text=html)
36 36
         results = doku.response(response)
37
-        self.assertEqual(doku.response(response), [{'content': '', 'title': 'xfconf-query', 'url': 'http://localhost:8090/xfconf-query'}])
37
+        expected = [{'content': '', 'title': 'xfconf-query', 'url': 'http://localhost:8090/xfconf-query'}]
38
+        self.assertEqual(doku.response(response), expected)
38 39
 
39 40
         html = u"""
40 41
         <dl class="search_results">
41 42
             <dt><a href="/xvnc?s[]=query" class="wikilink1" title="xvnc">xvnc</a>: 40 Occurrences trouvées</dt>
42 43
             <dd>er = /usr/bin/Xvnc
43
-         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 640x480 -depth 8 -Secur... er = /usr/bin/Xvnc
44
-         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 800x600 -depth 8 -Secur... er = /usr/bin/Xvnc
45
-         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 1024x768 -depth 8 -Secu... er = /usr/bin/Xvnc
46
-         server_args = -inetd -<strong class="search_hit">query</strong> localhost -once -geometry 1280x1024 -depth 8 -Sec</dd>
47
-            <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>
44
+     server_args = -inetd -<strong class="search_hit">query</strong> localhost -geometry 640x480 ... er = /usr/bin/Xvnc
45
+     server_args = -inetd -<strong class="search_hit">query</strong> localhost -geometry 800x600 ... er = /usr/bin/Xvnc
46
+     server_args = -inetd -<strong class="search_hit">query</strong> localhost -geometry 1024x768 ... er = /usr/bin/Xvnc
47
+     server_args = -inetd -<strong class="search_hit">query</strong> localhost -geometry 1280x1024 -depth 8 -Sec</dd>
48
+            <dt><a href="/postfix_mysql_tls_sasl_1404?s[]=query"
49
+                   class="wikilink1"
50
+                   title="postfix_mysql_tls_sasl_1404">postfix_mysql_tls_sasl_1404</a>: 14 Occurrences trouvées</dt>
48 51
             <dd>tdepasse
49 52
   hosts = 127.0.0.1
50 53
   dbname = postfix
@@ -53,17 +56,7 @@ class TestDokuEngine(SearxTestCase):
53 56
   dbname = postfix
54 57
   <strong class="search_hit">query</strong> = SELECT domain FROM domain WHERE domain='%s'
55 58
   #optional <strong class="search_hit">query</strong> to use when relaying for backup MX
56
-  #<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
57
-X -<strong class="search_hit">query</strong> 192.168.1.2
58
-&lt;/code&gt;
59
-:)
60
-Si vous désirez, sur la mê... ans une console (tjs sur le vieil ordi)
61
-&lt;code&gt;
62
-X -<strong class="search_hit">query</strong> 192.168.1.2 :1
63
-&lt;/code&gt;
64
-Un écran de login devrait ... ure.
65
-&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\\
66
-Testez d'abord que le //X -<strong class="search_hit">query</strong> ...// fonctionne, dans une console (CTRL-ALT-F1) </dd>
59
+  #<strong class="search_hit">query</strong> = SELECT domain FROM domain WHERE domain='%s' and backupmx =</dd>
67 60
           <dt><a href="/bind9?s[]=query" class="wikilink1" title="bind9">bind9</a>: 12 Occurrences trouvées</dt>
68 61
           <dd>  printcmd
69 62
 ;; Got answer:
@@ -74,13 +67,13 @@ Testez d'abord que le //X -<strong class="search_hit">query</strong> ...// fonct
74 67
 
75 68
 ;; <strong class="search_hit">Query</strong> time: 1 msec
76 69
 ;; SERVER: 127.0.0.1#53(127.0.0.1)
77
-;... 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>
70
+;... par la requête (<strong class="search_hit">Query</strong> time) , entre la première et la deuxième requête.</dd>
78 71
         </dl>
79 72
         """
80 73
         response = mock.Mock(text=html)
81 74
         results = doku.response(response)
82 75
         self.assertEqual(type(results), list)
83
-        self.assertEqual(len(results), 4)
76
+        self.assertEqual(len(results), 3)
84 77
         self.assertEqual(results[0]['title'], 'xvnc')
85 78
 # FIXME        self.assertEqual(results[0]['url'], u'http://this.should.be.the.link/ű')
86 79
 # FIXME        self.assertEqual(results[0]['content'], 'This should be the content.')