author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 09 Dec 2009 12:52:09 +0100 | |
changeset 4076 | 2e8637a97b89 |
parent 2773 | b2530e3e0afb |
child 4252 | 6c4f109c2b03 |
permissions | -rw-r--r-- |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
1 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
2 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
3 |
:organization: Logilab |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
7 |
""" |
0 | 8 |
import sys |
9 |
from StringIO import StringIO |
|
10 |
from logilab.common.testlib import TestCase, unittest_main |
|
11 |
from cubicweb.devtools import init_test_database |
|
12 |
||
13 |
||
14 |
from cubicweb.server.checkintegrity import check |
|
15 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
16 |
repo, cnx = init_test_database() |
0 | 17 |
|
18 |
class CheckIntegrityTC(TestCase): |
|
19 |
def test(self): |
|
20 |
sys.stderr = sys.stdout = StringIO() |
|
21 |
try: |
|
22 |
check(repo, cnx, ('entities', 'relations', 'text_index', 'metadata'), |
|
23 |
True, True) |
|
24 |
finally: |
|
25 |
sys.stderr = sys.__stderr__ |
|
26 |
sys.stdout = sys.__stdout__ |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
27 |
|
0 | 28 |
if __name__ == '__main__': |
29 |
unittest_main() |