From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/account/tests/test_account_all_l10n.py | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 addons/account/tests/test_account_all_l10n.py (limited to 'addons/account/tests/test_account_all_l10n.py') diff --git a/addons/account/tests/test_account_all_l10n.py b/addons/account/tests/test_account_all_l10n.py new file mode 100644 index 00000000..fbf9887b --- /dev/null +++ b/addons/account/tests/test_account_all_l10n.py @@ -0,0 +1,35 @@ +# -*- 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. + """ + 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([]) + for coa in coas: + cname = 'company_%s' % str(coa.id) + company = env['res.company'].create({'name': cname}) + 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) -- cgit v1.2.3