oca-ocb-core/odoo-bringout-oca-ocb-web/web/tests/test_reports.py
Ernad Husremovic d1963a3c3a vanilla 19.0
2025-10-08 10:49:46 +02:00

140 lines
6.3 KiB
Python

import os
from unittest.mock import Mock, patch
import odoo.tests
from odoo.addons.http_routing.tests.common import MockRequest
from odoo.exceptions import UserError
from odoo.http import root
from odoo.tools import mute_logger
class TestReports(odoo.tests.HttpCase):
def test_report_session_cookie(self):
""" Asserts wkhtmltopdf forwards the user session when requesting resources to Odoo, such as images,
and that the resource is correctly returned as expected.
"""
partner_id = self.env.user.partner_id.id
img = b'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAADElEQVR4nGP4//8/AAX+Av4N70a4AAAAAElFTkSuQmCC'
image = self.env['ir.attachment'].create({
'name': 'foo',
'res_model': 'res.partner',
'res_id': partner_id,
'datas': img,
})
report = self.env['ir.actions.report'].create({
'name': 'test report',
'report_name': 'base.test_report',
'model': 'res.partner',
})
self.env['ir.ui.view'].create({
'type': 'qweb',
'name': 'base.test_report',
'key': 'base.test_report',
'arch': f'''
<main>
<div class="article" data-oe-model="res.partner" t-att-data-oe-id="docs.id">
<img src="/web/image/{image.id}"/>
</div>
</main>
'''
})
result = {}
origin_find_record = self.env.registry['ir.binary']._find_record
def _find_record(self, xmlid=None, res_model='ir.attachment', res_id=None, access_token=None, field=None):
if res_model == 'ir.attachment' and res_id == image.id:
result['uid'] = self.env.uid
record = origin_find_record(self, xmlid, res_model, res_id, access_token, field)
result.update({'record_id': record.id, 'data': record.datas})
else:
record = origin_find_record(self, xmlid, res_model, res_id, access_token, field)
return record
self.patch(self.env.registry['ir.binary'], '_find_record', _find_record)
# 1. Request the report as admin, who has access to the image
admin = self.env.ref('base.user_admin')
admin_device_log_count_before = self.env['res.device.log'].search_count([('user_id', '=', admin.id)])
report = report.with_user(admin)
with MockRequest(report.env) as mock_request:
mock_request.session = self.authenticate(admin.login, admin.login)
report.with_context(force_report_rendering=True)._render_qweb_pdf(report.id, [partner_id])
# Check that no device logs have been generated
admin_device_log_count_after = self.env['res.device.log'].search_count([('user_id', '=', admin.id)])
self.assertFalse(admin_device_log_count_after - admin_device_log_count_before)
self.assertEqual(
result.get('uid'), admin.id, 'wkhtmltopdf is not fetching the image as the user printing the report'
)
self.assertEqual(result.get('record_id'), image.id, 'wkhtmltopdf did not fetch the expected record')
self.assertEqual(result.get('data'), img, 'wkhtmltopdf did not fetch the right image content')
# 2. Request the report as public, who has no acess to the image
self.logout()
result.clear()
public = self.env.ref('base.public_user')
public_device_log_count_before = self.env['res.device.log'].search_count([('user_id', '=', public.id)])
report = report.with_user(public)
with MockRequest(self.env) as mock_request:
mock_request.session = self.authenticate(None, None)
report.with_context(force_report_rendering=True)._render_qweb_pdf(report.id, [partner_id])
# Check that no device logs have been generated
public_device_log_count_after = self.env['res.device.log'].search_count([('user_id', '=', public.id)])
self.assertFalse(public_device_log_count_after - public_device_log_count_before)
self.assertEqual(
result.get('uid'), public.id, 'wkhtmltopdf is not fetching the image as the user printing the report'
)
self.assertEqual(result.get('record_id'), None, 'wkhtmltopdf must not have been allowed to fetch the image')
self.assertEqual(result.get('data'), None, 'wkhtmltopdf must not have been allowed to fetch the image')
@mute_logger('odoo.addons.base.models.ir_actions_report')
def test_report_error_cleanup(self):
admin = self.env.ref('base.user_admin')
self.env['ir.ui.view'].create({
'type': 'qweb',
'name': 'base.test_report',
'key': 'base.test_report',
'arch': '''
<main>
<div">
<p>TEST</p>
</div>
</main>
'''
})
report = self.env['ir.actions.report'].create({
'name': 'test report',
'report_name': 'base.test_report',
'model': 'res.partner',
})
report = report.with_user(admin)
with (MockRequest(report.env) as mock_request,
patch('subprocess.run') as mock_popen,
patch.object(root.session_store, 'delete') as mock_delete,
patch.object(os, 'unlink') as mock_unlink):
mock_request.session = self.authenticate(admin.login, admin.login)
mock_process = Mock()
mock_process.returncode = -1
mock_process.stderr = ""
mock_popen.return_value = mock_process
with self.assertRaises(UserError):
report.with_context(force_report_rendering=True)._render_qweb_pdf(report.id)
# Check if the temporary session has been deleted
self.assertEqual(mock_delete.call_count, 1)
self.assertNotEqual(mock_delete.call_args.args[0].sid, mock_request.session.sid)
# Check if temporary files have been deleted
deleted_files = ''.join([call.args[0] for call in mock_unlink.call_args_list])
self.assertIn('report.cookie_jar.tmp', deleted_files)
self.assertIn('report.header.tmp', deleted_files)
self.assertIn('report.footer.tmp', deleted_files)
self.assertIn('report.body.tmp', deleted_files)
self.assertIn('report.tmp', deleted_files)