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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from markupsafe import Markup
from unittest.mock import patch
from unittest.mock import DEFAULT
import base64
from odoo import exceptions
from odoo.addons.mail.tests.common import MailCommon
from odoo.addons.test_mail.models.test_mail_models import MailTestSimple
from odoo.addons.test_mail.tests.common import TestRecipients
from odoo.addons.mail.tools.discuss import Store
from odoo.tests import Form, tagged, users
from odoo.tools import mute_logger
@tagged('mail_thread')
class TestAPI(MailCommon, TestRecipients):
@classmethod
def setUpClass(cls):
super(TestAPI, cls).setUpClass()
cls.ticket_record = cls.env['mail.test.ticket'].with_context(cls._test_context).create({
'email_from': '"Paulette Vachette" <paulette@test.example.com>',
'name': 'Test',
'user_id': cls.user_employee.id,
})
@users('employee')
def test_body_escape(self):
""" Test various use cases involving HTML encoding / escaping """
ticket_record = self.ticket_record.with_env(self.env)
attachments = self.env['ir.attachment'].create(
self._generate_attachments_data(2, 'mail.compose.message', 0)
)
self.assertFalse(self.env['ir.attachment'].sudo().search([('name', '=', 'test_image.jpeg')]))
# attachments processing through CID, rewrites body (if escaped)
body = '<div class="ltr"><img src="cid:ii_lps7a8sm0" alt="test_image.jpeg" width="542" height="253">Zboing</div>'
for with_markup in [False, True]:
with self.subTest(with_markup=with_markup):
test_body = Markup(body) if with_markup else body
message = ticket_record.message_post(
attachments=[("test_image.jpeg", "b", {"cid": "ii_lps7a8sm0"})],
attachment_ids=attachments.ids,
body=test_body,
message_type="comment",
partner_ids=self.partner_1.ids,
)
new_attachment = self.env['ir.attachment'].sudo().search([('name', '=', 'test_image.jpeg')])
self.assertEqual(new_attachment.res_id, ticket_record.id)
if with_markup:
expected_body = Markup(
f'<div class="ltr"><img src="/web/image/{new_attachment.id}?access_token={new_attachment.access_token}" '
'alt="test_image.jpeg" width="542" height="253">Zboing</div>'
)
else:
expected_body = Markup('<p><div class="ltr"><img src="cid:ii_lps7a8sm0" alt="test_image.jpeg" width="542" height="253">Zboing</div></p>')
self.assertEqual(message.attachment_ids, attachments + new_attachment)
self.assertEqual(message.body, expected_body)
new_attachment.unlink()
# internals of attachment processing, in case it is called for other addons
for with_markup in [False, True]:
with self.subTest(with_markup=with_markup):
message_values = {
'body': Markup(body) if with_markup else body,
'model': ticket_record._name,
'res_id': ticket_record.id,
}
processed_values = self.env['mail.thread']._process_attachments_for_post(
[("test_image.jpeg", "b", {"cid": "ii_lps7a8sm0"})], attachments.ids, message_values,
)
if not with_markup:
self.assertFalse('body' in processed_values, 'Mail: escaped html does not contain tags to handle anymore')
else:
self.assertTrue(isinstance(processed_values['body'], Markup))
# html is escaped in main API methods
content = 'I am "Robert <robert@poilvache.com>"'
expected = Markup('<p>I am "Robert <robert@poilvache.com>"</p>') # enclosed in p to make valid html
message = ticket_record._message_log(
body=content,
)
self.assertEqual(message.body, expected)
message = ticket_record.message_notify(
body=content,
partner_ids=self.partner_1.ids,
)
self.assertEqual(message.body, expected)
message = ticket_record.message_post(
body=content,
message_type="comment",
partner_ids=self.partner_1.ids,
)
self.assertEqual(message.body, expected)
ticket_record._message_update_content(message, "Hello <R&D/>")
self.assertEqual(message.body, Markup('<p>Hello <R&D/><span class="o-mail-Message-edited"></span></p>'))
@mute_logger('openerp.addons.mail.models.mail_mail')
@users('employee')
def test_message_update_content(self):
""" Test updating message content. """
ticket_record = self.ticket_record.with_env(self.env)
attachments = self.env['ir.attachment'].create(
self._generate_attachments_data(2, 'mail.compose.message', 0)
)
# post a note
message = ticket_record.message_post(
attachment_ids=attachments.ids,
body=Markup("<p>Initial Body</p>"),
message_type="comment",
partner_ids=self.partner_1.ids,
)
self.assertEqual(message.attachment_ids, attachments)
self.assertEqual(set(message.mapped('attachment_ids.res_id')), set(ticket_record.ids))
self.assertEqual(set(message.mapped('attachment_ids.res_model')), set([ticket_record._name]))
self.assertEqual(message.body, "<p>Initial Body</p>")
self.assertEqual(message.subtype_id, self.env.ref('mail.mt_note'))
# clear the content when having attachments should show edit label
ticket_record._message_update_content(
message, "",
)
self.assertEqual(message.attachment_ids, attachments)
self.assertEqual(message.body, Markup('<span class="o-mail-Message-edited"></span>'))
# update the content with new attachments
new_attachments = self.env['ir.attachment'].create(
self._generate_attachments_data(2, 'mail.compose.message', 0)
)
ticket_record._message_update_content(
message, Markup("<p>New Body</p>"),
attachment_ids=new_attachments.ids
)
self.assertEqual(message.attachment_ids, attachments + new_attachments)
self.assertEqual(set(message.mapped('attachment_ids.res_id')), set(ticket_record.ids))
self.assertEqual(set(message.mapped('attachment_ids.res_model')), set([ticket_record._name]))
self.assertEqual(message.body, Markup('<p>New Body</p><span class="o-mail-Message-edited"></span>'))
# void attachments
ticket_record._message_update_content(
message, Markup("<p>Another Body, void attachments</p>"),
attachment_ids=[]
)
self.assertFalse(message.attachment_ids)
self.assertFalse((attachments + new_attachments).exists())
self.assertEqual(message.body, Markup('<p>Another Body, void attachments</p><span class="o-mail-Message-edited"></span>'))
@mute_logger('openerp.addons.mail.models.mail_mail')
@users('employee')
def test_message_update_content_check(self):
""" Test cases where updating content should be prevented """
ticket_record = self.ticket_record.with_env(self.env)
message = ticket_record.message_post(
body="<p>Initial Body</p>",
message_type="comment",
subtype_id=self.env.ref('mail.mt_comment').id,
)
ticket_record._message_update_content(
message, "<p>New Body 1</p>"
)
message.sudo().write({'subtype_id': self.env.ref('mail.mt_note')})
ticket_record._message_update_content(
message, "<p>New Body 2</p>"
)
# cannot edit notifications
for message_type in ['notification', 'user_notification', 'email', 'email_outgoing', 'auto_comment']:
message.sudo().write({'message_type': message_type})
with self.assertRaises(exceptions.UserError):
ticket_record._message_update_content(
message, "<p>New Body</p>"
)
@tagged('mail_thread')
class TestChatterTweaks(MailCommon, TestRecipients):
@classmethod
def setUpClass(cls):
super(TestChatterTweaks, cls).setUpClass()
cls.test_record = cls.env['mail.test.simple'].with_context(cls._test_context).create({'name': 'Test', 'email_from': 'ignasse@example.com'})
def test_post_no_subscribe_author(self):
original = self.test_record.message_follower_ids
self.test_record.with_user(self.user_employee).with_context({'mail_create_nosubscribe': True}).message_post(
body='Test Body', message_type='comment', subtype_xmlid='mail.mt_comment')
self.assertEqual(self.test_record.message_follower_ids.mapped('partner_id'), original.mapped('partner_id'))
@mute_logger('odoo.addons.mail.models.mail_mail')
def test_post_no_subscribe_recipients(self):
original = self.test_record.message_follower_ids
self.test_record.with_user(self.user_employee).with_context({'mail_create_nosubscribe': True}).message_post(
body='Test Body', message_type='comment', subtype_xmlid='mail.mt_comment', partner_ids=[self.partner_1.id, self.partner_2.id])
self.assertEqual(self.test_record.message_follower_ids.mapped('partner_id'), original.mapped('partner_id'))
@mute_logger('odoo.addons.mail.models.mail_mail')
def test_post_subscribe_recipients(self):
original = self.test_record.message_follower_ids
self.test_record.with_user(self.user_employee).with_context({'mail_create_nosubscribe': True, 'mail_post_autofollow': True}).message_post(
body='Test Body', message_type='comment', subtype_xmlid='mail.mt_comment', partner_ids=[self.partner_1.id, self.partner_2.id])
self.assertEqual(self.test_record.message_follower_ids.mapped('partner_id'), original.mapped('partner_id') | self.partner_1 | self.partner_2)
@mute_logger('odoo.addons.mail.models.mail_mail')
def test_chatter_context_cleaning(self):
""" Test default keys are not propagated to message creation as it may
induce wrong values for some fields, like parent_id. """
parent = self.env['res.partner'].create({'name': 'Parent'})
partner = self.env['res.partner'].with_context(default_parent_id=parent.id).create({'name': 'Contact'})
self.assertFalse(partner.message_ids[-1].parent_id)
def test_chatter_mail_create_nolog(self):
""" Test disable of automatic chatter message at create """
rec = self.env['mail.test.simple'].with_user(self.user_employee).with_context({'mail_create_nolog': True}).create({'name': 'Test'})
self.flush_tracking()
self.assertEqual(rec.message_ids, self.env['mail.message'])
rec = self.env['mail.test.simple'].with_user(self.user_employee).with_context({'mail_create_nolog': False}).create({'name': 'Test'})
self.flush_tracking()
self.assertEqual(len(rec.message_ids), 1)
def test_chatter_mail_notrack(self):
""" Test disable of automatic value tracking at create and write """
rec = self.env['mail.test.track'].with_user(self.user_employee).create({'name': 'Test', 'user_id': self.user_employee.id})
self.flush_tracking()
self.assertEqual(len(rec.message_ids), 1,
"A creation message without tracking values should have been posted")
self.assertEqual(len(rec.message_ids.sudo().tracking_value_ids), 0,
"A creation message without tracking values should have been posted")
rec.with_context({'mail_notrack': True}).write({'user_id': self.user_admin.id})
self.flush_tracking()
self.assertEqual(len(rec.message_ids), 1,
"No new message should have been posted with mail_notrack key")
rec.with_context({'mail_notrack': False}).write({'user_id': self.user_employee.id})
self.flush_tracking()
self.assertEqual(len(rec.message_ids), 2,
"A tracking message should have been posted")
self.assertEqual(len(rec.message_ids.sudo().mapped('tracking_value_ids')), 1,
"New tracking message should have tracking values")
def test_chatter_tracking_disable(self):
""" Test disable of all chatter features at create and write """
rec = self.env['mail.test.track'].with_user(self.user_employee).with_context({'tracking_disable': True}).create({'name': 'Test', 'user_id': self.user_employee.id})
self.flush_tracking()
self.assertEqual(rec.sudo().message_ids, self.env['mail.message'])
self.assertEqual(rec.sudo().mapped('message_ids.tracking_value_ids'), self.env['mail.tracking.value'])
rec.write({'user_id': self.user_admin.id})
self.flush_tracking()
self.assertEqual(rec.sudo().mapped('message_ids.tracking_value_ids'), self.env['mail.tracking.value'])
rec.with_context({'tracking_disable': False}).write({'user_id': self.user_employee.id})
self.flush_tracking()
self.assertEqual(len(rec.sudo().mapped('message_ids.tracking_value_ids')), 1)
rec = self.env['mail.test.track'].with_user(self.user_employee).with_context({'tracking_disable': False}).create({'name': 'Test', 'user_id': self.user_employee.id})
self.flush_tracking()
self.assertEqual(len(rec.sudo().message_ids), 1,
"Creation message without tracking values should have been posted")
self.assertEqual(len(rec.sudo().mapped('message_ids.tracking_value_ids')), 0,
"Creation message without tracking values should have been posted")
def test_cache_invalidation(self):
""" Test that creating a mail-thread record does not invalidate the whole cache. """
# make a new record in cache
record = self.env['res.partner'].new({'name': 'Brave New Partner'})
self.assertTrue(record.name)
# creating a mail-thread record should not invalidate the whole cache
self.env['res.partner'].create({'name': 'Actual Partner'})
self.assertTrue(record.name)
@tagged('mail_thread')
class TestDiscuss(MailCommon, TestRecipients):
@classmethod
def setUpClass(cls):
super(TestDiscuss, cls).setUpClass()
cls.test_record = cls.env['mail.test.simple'].with_context(cls._test_context).create({
'name': 'Test',
'email_from': 'ignasse@example.com'
})
@mute_logger('openerp.addons.mail.models.mail_mail')
def test_mark_all_as_read(self):
def _employee_crash(recordset, operation):
""" If employee is test employee, consider they have no access on document """
if recordset.env.uid == self.user_employee.id and not recordset.env.su:
return recordset, lambda: exceptions.AccessError('Hop hop hop Ernest, please step back.')
return DEFAULT
with patch.object(MailTestSimple, '_check_access', autospec=True, side_effect=_employee_crash):
with self.assertRaises(exceptions.AccessError):
self.env['mail.test.simple'].with_user(self.user_employee).browse(self.test_record.ids).read(['name'])
employee_partner = self.env['res.partner'].with_user(self.user_employee).browse(self.partner_employee.ids)
# mark all as read clear needactions
msg1 = self.test_record.message_post(body='Test', message_type='comment', subtype_xmlid='mail.mt_comment', partner_ids=[employee_partner.id])
self._reset_bus()
with self.assertBus(
[(self.cr.dbname, 'res.partner', employee_partner.id)],
message_items=[{
'type': 'mail.message/mark_as_read',
'payload': {
'message_ids': [msg1.id],
'needaction_inbox_counter': 0,
},
}]):
employee_partner.env['mail.message'].mark_all_as_read(domain=[])
na_count = employee_partner._get_needaction_count()
self.assertEqual(na_count, 0, "mark all as read should conclude all needactions")
# mark all as read also clear inaccessible needactions
msg2 = self.test_record.message_post(body='Zest', message_type='comment', subtype_xmlid='mail.mt_comment', partner_ids=[employee_partner.id])
needaction_accessible = len(employee_partner.env['mail.message'].search([['needaction', '=', True]]))
self.assertEqual(needaction_accessible, 1, "a new message to a partner is readable to that partner")
msg2.sudo().partner_ids = self.env['res.partner']
employee_partner.env['mail.message'].search([['needaction', '=', True]])
needaction_length = len(employee_partner.env['mail.message'].search([['needaction', '=', True]]))
self.assertEqual(needaction_length, 1, "message should still be readable when notified")
na_count = employee_partner._get_needaction_count()
self.assertEqual(na_count, 1, "message not accessible is currently still counted")
self._reset_bus()
with self.assertBus(
[(self.cr.dbname, 'res.partner', employee_partner.id)],
message_items=[{
'type': 'mail.message/mark_as_read',
'payload': {
'message_ids': [msg2.id],
'needaction_inbox_counter': 0,
},
}]):
employee_partner.env['mail.message'].mark_all_as_read(domain=[])
na_count = employee_partner._get_needaction_count()
self.assertEqual(na_count, 0, "mark all read should conclude all needactions even inacessible ones")
def test_set_message_done_user(self):
with self.assertSinglePostNotifications([{'partner': self.partner_employee, 'type': 'inbox'}], message_info={'content': 'Test'}):
message = self.test_record.message_post(
body='Test', message_type='comment', subtype_xmlid='mail.mt_comment',
partner_ids=[self.user_employee.partner_id.id])
message.with_user(self.user_employee).set_message_done()
self.assertMailNotifications(message, [{'notif': [{'partner': self.partner_employee, 'type': 'inbox', 'is_read': True}]}])
# TDE TODO: it seems bus notifications could be checked
def test_set_star(self):
msg = self.test_record.with_user(self.user_admin).message_post(body='My Body', subject='1')
msg_emp = self.env['mail.message'].with_user(self.user_employee).browse(msg.id)
# Admin set as starred
msg.toggle_message_starred()
self.assertTrue(msg.starred)
# Employee set as starred
msg_emp.toggle_message_starred()
self.assertTrue(msg_emp.starred)
# Do: Admin unstars msg
msg.toggle_message_starred()
self.assertFalse(msg.starred)
self.assertTrue(msg_emp.starred)
def test_delete_starred_message(self):
msg = self.test_record.message_post(body="Hello!", message_type="comment")
msg_2 = self.test_record.message_post(body="Goodbye!", message_type="comment")
msg.with_user(self.user_admin).toggle_message_starred()
msg.with_user(self.user_employee).toggle_message_starred()
msg_2.with_user(self.user_employee).toggle_message_starred()
self.assertIn(self.partner_admin, msg.starred_partner_ids)
self.assertIn(self.partner_employee, msg.starred_partner_ids)
self._reset_bus()
bus_last_id = self.env["bus.bus"].sudo()._bus_last_id()
self.test_record._message_update_content(message=msg, body="")
self.assertFalse(msg.starred)
self.assertBusNotifications(
[
(self.cr.dbname, "res.partner", self.partner_admin.id),
(self.cr.dbname, "res.partner", self.partner_employee.id),
],
[
{
"type": "mail.record/insert",
"payload": {
"mail.thread": [
{
"counter": 1,
"counter_bus_id": bus_last_id,
"id": "starred",
"messages": [["DELETE", [msg.id]]],
"model": "mail.box",
}
],
},
},
{
"type": "mail.record/insert",
"payload": {
"mail.thread": [
{
"counter": 0,
"counter_bus_id": bus_last_id,
"id": "starred",
"messages": [["DELETE", [msg.id]]],
"model": "mail.box",
}
],
},
},
],
check_unique=False,
)
def test_inbox_message_fetch_needaction(self):
user1 = self.env['res.users'].create({'login': 'user1', 'name': 'User 1'})
user1.notification_type = 'inbox'
user2 = self.env['res.users'].create({'login': 'user2', 'name': 'User 2'})
user2.notification_type = 'inbox'
message1 = self.test_record.with_user(self.user_admin).message_post(body='Message 1', partner_ids=[user1.partner_id.id, user2.partner_id.id])
message2 = self.test_record.with_user(self.user_admin).message_post(body='Message 2', partner_ids=[user1.partner_id.id, user2.partner_id.id])
# both notified users should have the 2 messages in Inbox initially
res = self.env['mail.message'].with_user(user1)._message_fetch(domain=[['needaction', '=', True]])
self.assertEqual(len(res["messages"]), 2)
res = self.env['mail.message'].with_user(user2)._message_fetch(domain=[['needaction', '=', True]])
self.assertEqual(len(res["messages"]), 2)
# first user is marking one message as done: the other message is still Inbox, while the other user still has the 2 messages in Inbox
message1.with_user(user1).set_message_done()
res = self.env['mail.message'].with_user(user1)._message_fetch(domain=[['needaction', '=', True]])
self.assertEqual(len(res["messages"]), 1)
self.assertEqual(res["messages"][0].id, message2.id)
res = self.env['mail.message'].with_user(user2)._message_fetch(domain=[['needaction', '=', True]])
self.assertEqual(len(res["messages"]), 2)
def test_notification_has_error_filter(self):
"""Ensure message_has_error filter is only returning threads for which
the current user is author of a failed message."""
message = self.test_record.with_user(self.user_admin).message_post(
body='Test', message_type='comment', subtype_xmlid='mail.mt_comment',
partner_ids=[self.user_employee.partner_id.id]
)
self.assertFalse(message.has_error)
with self.mock_mail_gateway():
def _connect(*args, **kwargs):
raise Exception("Some exception")
self.connect_mocked.side_effect = _connect
self.user_admin.notification_type = 'email'
message2 = self.test_record.with_user(self.user_employee).message_post(
body='Test', message_type='comment', subtype_xmlid='mail.mt_comment',
partner_ids=[self.user_admin.partner_id.id]
)
self.assertTrue(message2.has_error)
# employee is author of message which has a failure
threads_employee = self.test_record.with_user(self.user_employee).search([('message_has_error', '=', True)])
self.assertEqual(len(threads_employee), 1)
# admin is also author of a message, but it doesn't have a failure
# and the failure from employee's message should not be taken into account for admin
threads_admin = self.test_record.with_user(self.user_admin).search([('message_has_error', '=', True)])
self.assertEqual(len(threads_admin), 0)
@users("employee")
def test_suggested_recipients_default_create_value(self):
""" Test default creation values returned for suggested recipient. """
email = 'newpartner@example.com'
data_from_record_mobile = '+33199001015'
record = self.env['mail.test.ticket'].create({
'email_from': email,
'mobile_number': data_from_record_mobile,
})
suggestions = record._message_get_suggested_recipients()
self.assertItemsEqual(
suggestions,
[
{
'lang': None,
'reason': 'Customer Email',
'name': 'newpartner@example.com',
'email': 'newpartner@example.com',
'create_values': {'mobile': '+33199001015', 'phone': False},
}
],
)
@users("employee")
def test_unlink_notification_message(self):
channel = self.env['discuss.channel'].create({'name': 'testChannel'})
channel.with_user(self.user_admin).message_notify(
body='test',
partner_ids=[self.partner_2.id],
)
channel_message = self.env['mail.message'].sudo().search([('model', '=', 'discuss.channel'), ('res_id', 'in', channel.ids)])
self.assertEqual(len(channel_message), 1, "Test message should have been posted")
channel.sudo().unlink()
remaining_message = channel_message.exists()
self.assertEqual(len(remaining_message), 0, "Test message should have been deleted")
@tagged('mail_thread')
class TestNoThread(MailCommon, TestRecipients):
""" Specific tests for cross models thread features """
@users('employee')
def test_mail_sending_on_non_thread_model(self):
""" This test simulates scenarios where a required method called `_process_attachments_for_post` is missing,
in such case composer should fallback to the method implementation in mail.thread. """
record = self.env['mail.test.nothread'].sudo().create({
'name': 'Test Model Missing Method',
})
attachment = self.env['ir.attachment'].create({
'name': 'Test Attachment',
'datas': base64.b64encode(b'This is test attachment content'),
'res_model': 'mail.test.nothread',
'res_id': record.id,
'mimetype': 'text/plain',
})
template = self.env['mail.template'].create({
'name': 'TestTemplate',
'model_id': self.env['ir.model']._get_id('mail.test.nothread'),
})
mail_compose_message = self.env['mail.compose.message'].create({
'composition_mode': 'mass_mail',
'model': 'mail.test.nothread',
'template_id': template.id,
'res_ids': record.ids,
'attachment_ids': [(6, 0, [attachment.id])]
})
with self.mock_mail_gateway():
mail_compose_message.action_send_mail()
self.assertEqual(self._new_mails.attachment_ids['datas'], base64.b64encode(b'This is test attachment content'),
"The attachment was not included correctly in the sent message")
@users('employee')
def test_message_to_store(self):
""" Test formatting of messages when linked to non-thread models.
Format could be asked notably if an inbox notification due to a
'message_notify' happens. """
test_record = self.env['mail.test.nothread'].create({
'customer_id': self.partner_1.id,
'name': 'Not A Thread',
})
message = self.env['mail.message'].create({
'model': test_record._name,
'record_name': 'Not used in message _to_store',
'res_id': test_record.id,
})
formatted = Store(message, for_current_user=True).get_result()["mail.message"][0]
self.assertEqual(formatted['default_subject'], test_record.name)
self.assertEqual(formatted['record_name'], test_record.name)
test_record.write({'name': 'Just Test'})
formatted = Store(message, for_current_user=True).get_result()["mail.message"][0]
self.assertEqual(formatted['default_subject'], 'Just Test')
self.assertEqual(formatted['record_name'], 'Just Test')
@users('employee')
def test_message_notify(self):
""" Test notifying on non-thread models, using MailThread as an abstract
class with model and res_id giving the record used for notification.
Test default subject computation is also tested. """
test_record = self.env['mail.test.nothread'].create({
'customer_id': self.partner_1.id,
'name': 'Not A Thread',
})
for subject in ["Test Notify", False]:
with self.subTest():
with self.assertPostNotifications([{
'content': 'Hello Paulo',
'email_values': {
'reply_to': self.company_admin.catchall_formatted,
},
'message_type': 'user_notification',
'notif': [{
'check_send': True,
'is_read': True,
'partner': self.partner_2,
'status': 'sent',
'type': 'email',
}],
'subtype': 'mail.mt_note',
}]):
_message = self.env['mail.thread'].message_notify(
body='<p>Hello Paulo</p>',
model=test_record._name,
partner_ids=self.partner_2.ids,
res_id=test_record.id,
subject=subject,
)
@users('employee')
def test_message_notify_composer(self):
""" Test comment mode on composer which triggers a notify when model
does not inherit from mail thread. """
test_records, _test_partners = self._create_records_for_batch('mail.test.nothread', 2)
test_reports = self.env['ir.actions.report'].sudo().create([
{
'name': 'Test Report on Mail Test Ticket',
'model': test_records._name,
'print_report_name': "'TestReport for %s' % object.name",
'report_type': 'qweb-pdf',
'report_name': 'test_mail.mail_test_ticket_test_template',
}, {
'name': 'Test Report 2 on Mail Test Ticket',
'model': test_records._name,
'print_report_name': "'TestReport2 for %s' % object.name",
'report_type': 'qweb-pdf',
'report_name': 'test_mail.mail_test_ticket_test_template_2',
}
])
test_template = self.env['mail.template'].create({
'auto_delete': True,
'body_html': '<p>TemplateBody <t t-esc="object.name"></t></p>',
'email_from': '{{ (user.email_formatted) }}',
'email_to': '',
'mail_server_id': self.mail_server_domain.id,
'partner_to': '{{ object.customer_id.id if object.customer_id else "" }}',
'name': 'TestTemplate',
'model_id': self.env['ir.model']._get(test_records._name).id,
'reply_to': '{{ ctx.get("custom_reply_to") or "info@test.example.com" }}',
'report_template_ids': [(6, 0, test_reports.ids)],
'scheduled_date': '{{ (object.create_date or datetime.datetime(2022, 12, 26, 18, 0, 0)) + datetime.timedelta(days=2) }}',
'subject': 'TemplateSubject {{ object.name }}',
})
attachment_data = self._generate_attachments_data(2, test_template._name, test_template.id)
test_template.write({'attachment_ids': [(0, 0, a) for a in attachment_data]})
ctx = {
'default_composition_mode': 'comment',
'default_model': test_records._name,
'default_res_domain': [('id', 'in', test_records.ids)],
'default_template_id': test_template.id,
}
# open a composer and run it in comment mode
composer_form = Form(self.env['mail.compose.message'].with_context(ctx))
composer = composer_form.save()
with self.mock_mail_gateway(mail_unlink_sent=False), self.mock_mail_app():
_, messages = composer._action_send_mail()
self.assertEqual(len(messages), 2)
for record, message in zip(test_records, messages):
self.assertEqual(
sorted(message.mapped('attachment_ids.name')),
sorted(['AttFileName_00.txt', 'AttFileName_01.txt',
f'TestReport2 for {record.name}.html',
f'TestReport for {record.name}.html'])
)
self.assertEqual(len(messages.attachment_ids), 8, 'No attachments should be shared')
@users('employee')
def test_message_notify_norecord(self):
""" Test notifying on no record, just using the abstract model itself. """
with self.assertPostNotifications([{
'content': 'Hello Paulo',
'email_values': {
'reply_to': self.company_admin.catchall_formatted,
'subject': 'Test Notify',
},
'message_type': 'user_notification',
'notif': [{
'check_send': True,
'is_read': True,
'partner': self.partner_2,
'status': 'sent',
'type': 'email',
}],
'subtype': 'mail.mt_note',
}]):
_message = self.env['mail.thread'].message_notify(
body=Markup('<p>Hello Paulo</p>'),
partner_ids=self.partner_2.ids,
subject='Test Notify',
)
|