web/test/unittest_web.py
author Julien Cristau <julien.cristau@logilab.fr>
Fri, 11 Jul 2014 16:44:42 +0200
changeset 9882 4db650d79e32
parent 9849 b18ef631e72c
child 9897 fa44db7da2dc
permissions -rw-r--r--
[test] Fix the query-log-file test Testing this functionality in a CubicWebTC is awkward because the wrapping happens in handle_request, which tests basically bypass (they call core_handle directly, and do their own magic for linking the request with a cnx). The test method worked when ran on its own, but not together with the rest of the test class. So use a CubicWebServerTC instead, which goes through the whole stack.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9849
b18ef631e72c [webtests/web] use the new connection api
Julien Cristau <julien.cristau@logilab.fr>
parents: 9601
diff changeset
     1
# copyright 2003-2014 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
5421
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     2
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     3
#
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     4
# This file is part of CubicWeb.
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     5
#
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     6
# CubicWeb is free software: you can redistribute it and/or modify it under the
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     7
# terms of the GNU Lesser General Public License as published by the Free
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     8
# Software Foundation, either version 2.1 of the License, or (at your option)
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
     9
# any later version.
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    10
#
5424
8ecbcbff9777 replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5421
diff changeset
    11
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT
5421
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    13
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    14
# details.
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    15
#
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    16
# You should have received a copy of the GNU Lesser General Public License along
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4212
diff changeset
    17
# with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
1977
606923dff11b big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents: 1646
diff changeset
    18
9147
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    19
from json import loads
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    20
from os.path import join
9882
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
    21
import tempfile
9147
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    22
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    23
try:
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    24
    import requests
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    25
    assert [int(n) for n in requests.__version__.split('.', 2)][:2] >= [1, 2]
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    26
except (ImportError, AssertionError):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    27
    requests = None
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    28
1646
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
    29
from logilab.common.testlib import TestCase, unittest_main
9147
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    30
from cubicweb.devtools.httptest import CubicWebServerTC
2643
9976f511003b web test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 1977
diff changeset
    31
from cubicweb.devtools.fake import FakeRequest
5713
605f571198eb [web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5424
diff changeset
    32
1646
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
    33
class AjaxReplaceUrlTC(TestCase):
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
    34
6595
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    35
    def test_ajax_replace_url_1(self):
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    36
        self._test_arurl("fname=view&rql=Person%20P&vid=list",
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    37
                         rql='Person P', vid='list')
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    38
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    39
    def test_ajax_replace_url_2(self):
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    40
        self._test_arurl("age=12&fname=view&name=bar&rql=Person%20P&vid=oneline",
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    41
                         rql='Person P', vid='oneline', name='bar', age=12)
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    42
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    43
    def _test_arurl(self, qs, **kwargs):
2643
9976f511003b web test update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 1977
diff changeset
    44
        req = FakeRequest()
5713
605f571198eb [web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5424
diff changeset
    45
        arurl = req.ajax_replace_url
1646
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
    46
        # NOTE: for the simplest use cases, we could use doctest
6595
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    47
        url = arurl('foo', **kwargs)
7791
31bb51ea5485 [deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 7518
diff changeset
    48
        self.assertTrue(url.startswith('javascript:'))
31bb51ea5485 [deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 7518
diff changeset
    49
        self.assertTrue(url.endswith('()'))
6595
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    50
        cbname = url.split()[1][:-2]
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    51
        self.assertMultiLineEqual(
8728
75be9de9d68e [web] Use the new '/ajax' URL path to access the AjaxController (closes #2758254)
Rémi Cardona <remi.cardona@logilab.fr>
parents: 7791
diff changeset
    52
            'function %s() { $("#foo").loadxhtml("http://testing.fr/cubicweb/ajax?%s",'
75be9de9d68e [web] Use the new '/ajax' URL path to access the AjaxController (closes #2758254)
Rémi Cardona <remi.cardona@logilab.fr>
parents: 7791
diff changeset
    53
            '{"pageid": "%s"},"get","replace"); }' %
75be9de9d68e [web] Use the new '/ajax' URL path to access the AjaxController (closes #2758254)
Rémi Cardona <remi.cardona@logilab.fr>
parents: 7791
diff changeset
    54
            (cbname, qs, req.pageid),
6595
00cd0b273cf5 [test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
    55
            req.html_headers.post_inlined_scripts[0])
1646
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
    56
9147
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    57
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    58
class FileUploadTC(CubicWebServerTC):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    59
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    60
    def setUp(self):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    61
        "Skip whole test class if a suitable requests module is not available"
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    62
        if requests is None:
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    63
            self.skipTest('Python ``requests`` module is not available')
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    64
        super(FileUploadTC, self).setUp()
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    65
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    66
    @property
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    67
    def _post_url(self):
9849
b18ef631e72c [webtests/web] use the new connection api
Julien Cristau <julien.cristau@logilab.fr>
parents: 9601
diff changeset
    68
        with self.admin_access.web_request() as req:
b18ef631e72c [webtests/web] use the new connection api
Julien Cristau <julien.cristau@logilab.fr>
parents: 9601
diff changeset
    69
            return req.build_url('ajax', fname='fileupload')
9147
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    70
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    71
    def _fobject(self, fname):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    72
        return open(join(self.datadir, fname), 'rb')
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    73
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    74
    def _fcontent(self, fname):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    75
        return self._fobject(fname).read()
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    76
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    77
    def test_single_file_upload(self):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    78
        files = {'file': ('schema.py', self._fobject('schema.py'))}
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    79
        webreq = requests.post(self._post_url, files=files)
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    80
        # check backward compat : a single uploaded file leads to a single
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    81
        # 2-uple in the request form
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    82
        expect = {'fname': u'fileupload',
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    83
                  'file': ['schema.py', self._fcontent('schema.py')]}
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    84
        self.assertEqual(webreq.status_code, 200)
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    85
        self.assertDictEqual(expect, loads(webreq.content))
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    86
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    87
    def test_multiple_file_upload(self):
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    88
        files = [('files', ('schema.py', self._fobject('schema.py'))),
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    89
                 ('files', ('views.py',  self._fobject('views.py')))]
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    90
        webreq = requests.post(self._post_url, files=files,)
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    91
        expect = {'fname': u'fileupload',
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    92
                  'files': [['schema.py', self._fcontent('schema.py')],
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    93
                            ['views.py', self._fcontent('views.py')]],}
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    94
        self.assertEqual(webreq.status_code, 200)
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    95
        self.assertDictEqual(expect, loads(webreq.content))
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
    96
9601
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
    97
class LanguageTC(CubicWebServerTC):
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
    98
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
    99
    def test_language_neg(self):
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   100
        headers = {'Accept-Language': 'fr'}
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   101
        webreq = self.web_request(headers=headers)
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   102
        self.assertIn('lang="fr"', webreq.read())
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   103
        headers = {'Accept-Language': 'en'}
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   104
        webreq = self.web_request(headers=headers)
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   105
        self.assertIn('lang="en"', webreq.read())
e5a80bd337e8 [web] fix language negotiation
Julien Cristau <julien.cristau@logilab.fr>
parents: 9147
diff changeset
   106
9882
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   107
class LogQueriesTC(CubicWebServerTC):
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   108
    @classmethod
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   109
    def init_config(cls, config):
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   110
        super(LogQueriesTC, cls).init_config(config)
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   111
        cls.logfile = tempfile.NamedTemporaryFile()
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   112
        config.global_set_option('query-log-file', cls.logfile.name)
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   113
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   114
    def test_log_queries(self):
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   115
        self.web_request()
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   116
        self.assertTrue(self.logfile.read())
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   117
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   118
    @classmethod
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   119
    def tearDownClass(cls):
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   120
        cls.logfile.close()
4db650d79e32 [test] Fix the query-log-file test
Julien Cristau <julien.cristau@logilab.fr>
parents: 9849
diff changeset
   121
9147
01124cfd4b1f [etwist] fix handling of multiple files per field
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 8728
diff changeset
   122
1646
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
   123
if __name__ == '__main__':
88182252fd11 fix tests, cleanup
sylvain.thenault@logilab.fr
parents:
diff changeset
   124
    unittest_main()