1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/account_reports/tests/test_report_sections.py
2024-12-10 09:04:09 +07:00

138 lines
6.7 KiB
Python

# -*- coding: utf-8 -*-
# pylint: disable=C0326
from freezegun import freeze_time
from unittest.mock import patch
from odoo.addons.account.tests.common import AccountTestInvoicingHttpCommon
from odoo import Command
from odoo.tests import tagged
@tagged('post_install', '-at_install')
class TestReportSections(AccountTestInvoicingHttpCommon):
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.section_1 = cls.env['account.report'].create({
'name': "Section 1",
'filter_journals': True,
'column_ids': [
Command.create({
'name': "Column 1",
'expression_label': 'col1',
}),
],
'line_ids': [
Command.create({
'name': 'Section 1 line',
'expression_ids': [
Command.create({
'label': 'col1',
'engine': 'tax_tags',
'formula': 'tag1_1',
}),
],
}),
],
})
cls.section_2 = cls.env['account.report'].create({
'name': "Section 2",
'filter_period_comparison': True,
'column_ids': [
Command.create({
'name': "Column 1",
'expression_label': 'col1',
}),
Command.create({
'name': "Column 2",
'expression_label': 'col2',
}),
],
'line_ids': [
Command.create({
'name': 'Section 2 line',
'expression_ids': [
Command.create({
'label': 'col1',
'engine': 'tax_tags',
'formula': 'tag2_1',
}),
Command.create({
'label': 'col2',
'engine': 'tax_tags',
'formula': 'tag2_2',
})
],
}),
],
})
cls.composite_report = cls.env['account.report'].create({
'name': "Test Sections",
'section_report_ids': [Command.set((cls.section_1 + cls.section_2).ids)],
})
def test_sections_options_report_selection_variant(self):
generic_tax_report = self.env.ref('account.generic_tax_report')
self.composite_report.root_report_id = generic_tax_report
# Open root report
options = generic_tax_report.get_options()
self.assertEqual(options['variants_source_id'], generic_tax_report.id, "The root report should be the variants source.")
self.assertEqual(options['sections_source_id'], generic_tax_report.id, "No variant is selected; the root report should be chosen.")
self.assertEqual(options['selected_variant_id'], generic_tax_report.id, "No variant is selected; the root report should be chosen.")
self.assertEqual(options['report_id'], generic_tax_report.id, "No variant is selected; the root report should be chosen.")
# Select the variant
options = generic_tax_report.get_options({**options, 'selected_variant_id': self.composite_report.id})
self.assertEqual(options['variants_source_id'], generic_tax_report.id, "The root report should be the variants source.")
self.assertEqual(options['sections_source_id'], self.composite_report.id, "The selected variant should be the sections source.")
self.assertEqual(options['selected_section_id'], self.section_1.id, "Selecting the composite variant should select its first section.")
self.assertEqual(options['report_id'], self.section_1.id, "Selecting the composite variant should open its first section.")
# Select the section
options = generic_tax_report.get_options({**options, 'selected_section_id': self.section_2.id})
self.assertEqual(options['variants_source_id'], generic_tax_report.id, "The root report should be the variants source.")
self.assertEqual(options['sections_source_id'], self.composite_report.id, "The selected variant should be the sections source.")
self.assertEqual(options['selected_section_id'], self.section_2.id, "Section 2 should be selected.")
self.assertEqual(options['report_id'], self.section_2.id, "Selecting the second section from the first one should open it.")
def test_sections_options_report_selection_root(self):
# Open the report
options = self.composite_report.get_options()
self.assertEqual(options['variants_source_id'], self.composite_report.id, "The root report should be the variants source.")
self.assertEqual(options['sections_source_id'], self.composite_report.id, "The root report should be the sections source.")
self.assertEqual(options['selected_section_id'], self.section_1.id, "Opening the composite report should select its first section.")
self.assertEqual(options['report_id'], self.section_1.id, "Opening the composite report should open its first section.")
# Select the section
options = self.composite_report.get_options({**options, 'selected_section_id': self.section_2.id})
self.assertEqual(options['variants_source_id'], self.composite_report.id, "The root report should be the variants source.")
self.assertEqual(options['sections_source_id'], self.composite_report.id, "The root report should be the sections source.")
self.assertEqual(options['selected_section_id'], self.section_2.id, "Section 2 should be selected.")
self.assertEqual(options['report_id'], self.section_2.id, "Selecting the second section from the first one should open it.")
@freeze_time('2023-02-01')
def test_sections_tour(self):
def patched_init_options_custom(report, options, previous_options=None):
# Emulates a custom handler modifying the export buttons
if report == self.composite_report:
options['buttons'][0]['name'] = 'composite_report_custom_button'
# Setup the reports
generic_tax_report = self.env.ref('account.generic_tax_report')
self.composite_report.root_report_id = generic_tax_report
self.section_1.root_report_id = generic_tax_report # First section is a variant of the root report, to increase test coverage
# Rewriting the root report recomputes filter_journal ; re-enable it
self.section_1.filter_journals = True
with patch.object(type(self.env['account.report']), '_init_options_custom', patched_init_options_custom):
self.start_tour("/web", 'account_reports_sections', login=self.env.user.login)