# -*- coding: utf-8 -*- import logging from odoo.tests import standalone _logger = logging.getLogger(__name__) @standalone('all_l10n') def test_all_l10n(env): """ This test will install all the l10n_* modules. As the module install is not yet fully transactional, the modules will remain installed after the test. """ assert env.ref('base.module_account').demo, "Need the demo to test with data" l10n_mods = env['ir.module.module'].search([ ('name', 'like', 'l10n%'), ('state', '=', 'uninstalled'), ]) l10n_mods.button_immediate_install() env.reset() # clear the set of environments env = env() # get an environment that refers to the new registry coas = env['account.chart.template'].search([ ('id', 'not in', env['res.company'].search([]).chart_template_id.ids) ]) for coa in coas: cname = 'company_%s' % str(coa.id) company = env['res.company'].create({ 'name': cname, 'country_id': coa.country_id.id, }) env.user.company_ids += company env.user.company_id = company _logger.info('Testing COA: %s (company: %s)' % (coa.name, cname)) try: with env.cr.savepoint(): coa.try_loading() except Exception: _logger.error("Error when creating COA %s", coa.name, exc_info=True)