Odoo18-Base/odoo/addons/test_lint/tests/test_pofile.py
2025-01-06 10:57:38 +07:00

32 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from collections import Counter
from odoo.modules import get_modules
from odoo.tests.common import TransactionCase
from odoo.tools.translate import TranslationFileReader
from odoo.tools.misc import file_path
class PotLinter(TransactionCase):
def test_pot_duplicate_entries(self):
def format(entry):
# TranslationFileReader only returns those three types
if entry['type'] == 'model':
return ('model', entry['name'], entry['imd_name'])
elif entry['type'] == 'model_terms':
return ('model_terms', entry['name'], entry['imd_name'], entry['src'])
elif entry['type'] == 'code':
return ('code', entry['src'])
# retrieve all modules, and their corresponding POT file
for module in get_modules():
try:
filename = file_path(f'{module}/i18n/{module}.pot')
except FileNotFoundError:
continue
counts = Counter(map(format, TranslationFileReader(filename)))
duplicates = [key for key, count in counts.items() if count > 1]
self.assertFalse(duplicates, "Duplicate entries found in %s" % filename)