769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
63 lines
3.5 KiB
Python
63 lines
3.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
from odoo.tests.common import HttpCase
|
|
|
|
|
|
class AccountingTestTemplConsistency(HttpCase):
|
|
'''Test the templates consistency between some objects like account.account when account.account.template.
|
|
'''
|
|
|
|
def check_fields_consistency(self, model_from, model_to, exceptions=[]):
|
|
'''Check the consistency of fields from one model to another by comparing if all fields
|
|
in the model_from are present in the model_to.
|
|
:param model_from: The model to compare.
|
|
:param model_to: The compared model.
|
|
:param exceptions: Not copied model's fields.
|
|
'''
|
|
|
|
def get_fields(model, extra_domain=None):
|
|
# Retrieve fields to compare
|
|
domain = [('model', '=', model), ('state', '=', 'base'), ('related', '=', False),
|
|
('compute', '=', False)]
|
|
if extra_domain:
|
|
domain += extra_domain
|
|
return self.env['ir.model.fields'].search(domain)
|
|
|
|
from_fields = get_fields(model_from, extra_domain=[('name', 'not in', exceptions)])
|
|
to_fields_set = set([f.name for f in get_fields(model_to)])
|
|
for field in from_fields:
|
|
assert field.name in to_fields_set,\
|
|
'Missing field "%s" from "%s" in model "%s".' % (field.name, model_from, model_to)
|
|
|
|
def test_account_account_fields(self):
|
|
'''Test fields consistency for ('account.account', 'account.account.template')
|
|
'''
|
|
self.check_fields_consistency(
|
|
'account.account.template', 'account.account', exceptions=['chart_template_id', 'nocreate'])
|
|
self.check_fields_consistency(
|
|
'account.account', 'account.account.template', exceptions=['company_id', 'deprecated', 'last_time_entries_checked', 'opening_debit', 'opening_credit'])
|
|
|
|
def test_account_tax_fields(self):
|
|
'''Test fields consistency for ('account.tax', 'account.tax.template')
|
|
'''
|
|
self.check_fields_consistency('account.tax.template', 'account.tax', exceptions=['chart_template_id'])
|
|
self.check_fields_consistency('account.tax', 'account.tax.template')
|
|
|
|
def test_fiscal_position_fields(self):
|
|
'''Test fields consistency for ('account.fiscal.position', 'account.fiscal.position.template')
|
|
'''
|
|
#main
|
|
self.check_fields_consistency('account.fiscal.position.template', 'account.fiscal.position', exceptions=['chart_template_id'])
|
|
self.check_fields_consistency('account.fiscal.position', 'account.fiscal.position.template', exceptions=['active', 'company_id', 'states_count'])
|
|
#taxes
|
|
self.check_fields_consistency('account.fiscal.position.tax.template', 'account.fiscal.position.tax')
|
|
self.check_fields_consistency('account.fiscal.position.tax', 'account.fiscal.position.tax.template')
|
|
#accounts
|
|
self.check_fields_consistency('account.fiscal.position.account.template', 'account.fiscal.position.account')
|
|
self.check_fields_consistency('account.fiscal.position.account', 'account.fiscal.position.account.template')
|
|
|
|
def test_reconcile_model_fields(self):
|
|
'''Test fields consistency for ('account.reconcile.model', 'account.reconcile.model.template')
|
|
'''
|
|
self.check_fields_consistency('account.reconcile.model.template', 'account.reconcile.model', exceptions=['chart_template_id'])
|
|
self.check_fields_consistency('account.reconcile.model', 'account.reconcile.model.template', exceptions=['company_id', 'journal_id', 'analytic_account_id', 'second_journal_id', 'second_analytic_account_id'])
|