[db dump/restore] fix '#615840: db-dump must be always runnable' by setting repairing on config. Also, avoid to read the whole schema from the database on dump/restore: the bootstrap schema is enough.
""":organization: Logilab:copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses"""importsysfromStringIOimportStringIOfromlogilab.common.testlibimportTestCase,unittest_mainfromcubicweb.devtoolsimportinit_test_databasefromcubicweb.server.checkintegrityimportcheckclassCheckIntegrityTC(TestCase):deftest(self):repo,cnx=init_test_database()sys.stderr=sys.stdout=StringIO()try:check(repo,cnx,('entities','relations','text_index','metadata'),reindex=True,fix=True,withpb=False)finally:sys.stderr=sys.__stderr__sys.stdout=sys.__stdout__repo.shutdown()if__name__=='__main__':unittest_main()