blob: fbf9887bdd13720f06c4954501c4360dc44030a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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)
|