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
|
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import datetime as dt
import sys
import unittest
from unittest.mock import ANY, patch
from trytond.config import config
try:
from trytond.modules.company.tests import CompanyTestMixin
except ImportError:
class CompanyTestMixin:
pass
from trytond.modules.notification_email import \
notification as notification_module
from trytond.pool import Pool
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
from trytond.transaction import Transaction
FROM = 'tryton@example.com'
class NotificationEmailTestCase(CompanyTestMixin, ModuleTestCase):
"Test Notification Email module"
module = 'notification_email'
extras = ['company', 'commission', 'party', 'web_user']
def setUp(self):
super(NotificationEmailTestCase, self).setUp()
reset_from = config.get('email', 'from', default='')
config.set('email', 'from', FROM)
self.addCleanup(lambda: config.set('email', 'from', reset_from))
def _setup_notification(self, recipient_field='create_uid'):
pool = Pool()
Model = pool.get('ir.model')
ModelField = pool.get('ir.model.field')
Action = pool.get('ir.action')
Report = pool.get('ir.action.report')
User = pool.get('res.user')
NotificationEmail = pool.get('notification.email')
model, = Model.search([
('model', '=', User.__name__),
])
action = Action(name="Notification Email", type='ir.action.report')
action.save()
report = Report()
report.report_name = 'notification_notification.test.report'
report.action = action
report.template_extension = 'txt'
report.report_content = b'Hello ${records[0].name}'
report.model = model.model
report.save()
user = User(Transaction().user)
user.email = 'user@example.com'
user.save()
notification_email = NotificationEmail()
notification_email.recipients, = ModelField.search([
('model.model', '=', model.model),
('name', '=', recipient_field),
])
notification_email.content = report
notification_email.save()
def run_tasks(self, count=None):
pool = Pool()
Queue = pool.get('ir.queue')
transaction = Transaction()
self.assertTrue(transaction.tasks)
i = 0
while transaction.tasks:
task = Queue(transaction.tasks.pop())
task.run()
i += 1
if count is not None:
if i >= count:
break
@unittest.skipIf(
(3, 5, 0) <= sys.version_info < (3, 5, 2), "python bug #25195")
@with_transaction()
def test_notification_email(self):
"Test email notificiation is sent on trigger"
pool = Pool()
User = pool.get('res.user')
Trigger = pool.get('ir.trigger')
Model = pool.get('ir.model')
NotificationEmail = pool.get('notification.email')
Email = pool.get('ir.email')
self._setup_notification()
notification_email, = NotificationEmail.search([])
model, = Model.search([
('model', '=', User.__name__),
])
trigger, = Trigger.create([{
'name': 'Test creation',
'model': model.id,
'on_create': True,
'condition': 'true',
'notification_email': notification_email.id,
'action': 'notification.email|trigger',
}])
with patch.object(
notification_module, 'sendmail_transactional') as sendmail, \
patch.object(notification_module, 'SMTPDataManager'):
user, = User.create([{'name': "Michael Scott", 'login': "msc"}])
self.run_tasks()
sendmail.assert_called_once_with(
FROM, ['user@example.com'], ANY,
datamanager=ANY)
_, _, msg = sendmail.call_args[0]
self.assertEqual(msg['From'], FROM)
self.assertEqual(msg['Subject'], 'Notification Email')
self.assertEqual(msg['To'], 'Administrator <user@example.com>')
self.assertEqual(msg['Auto-Submitted'], 'auto-generated')
self.assertEqual(msg.get_content_type(), 'multipart/alternative')
self.assertEqual(
msg.get_payload(0).get_payload(), 'Hello Michael Scott')
email, = Email.search([])
self.assertEqual(email.recipients, 'Administrator <user@example.com>')
self.assertEqual(email.recipients_secondary, '')
self.assertEqual(email.recipients_hidden, '')
self.assertEqual(email.subject, 'Notification Email')
self.assertEqual(email.resource, user)
self.assertEqual(email.notification_email, notification_email)
self.assertEqual(email.notification_trigger, trigger)
@unittest.skipIf(
(3, 5, 0) <= sys.version_info < (3, 5, 2), "python bug #25195")
@with_transaction()
def test_notification_email_id_recipient(self):
"Test email notificiation is sent when using id as recipient"
pool = Pool()
User = pool.get('res.user')
Trigger = pool.get('ir.trigger')
Model = pool.get('ir.model')
NotificationEmail = pool.get('notification.email')
Email = pool.get('ir.email')
self._setup_notification(recipient_field='id')
notification_email, = NotificationEmail.search([])
model, = Model.search([
('model', '=', User.__name__),
])
trigger, = Trigger.create([{
'name': 'Test creation',
'model': model.id,
'on_create': True,
'condition': 'true',
'notification_email': notification_email.id,
'action': 'notification.email|trigger',
}])
with patch.object(
notification_module, 'sendmail_transactional') as sendmail, \
patch.object(notification_module, 'SMTPDataManager'):
user, = User.create([{
'name': "Michael Scott",
'login': "msc",
'email': 'msc@example.com'}])
self.run_tasks()
sendmail.assert_called_once_with(
FROM, ['msc@example.com'], ANY,
datamanager=ANY)
email, = Email.search([])
self.assertEqual(email.recipients, 'Michael Scott <msc@example.com>')
self.assertEqual(email.resource, user)
self.assertEqual(email.notification_email, notification_email)
self.assertEqual(email.notification_trigger, trigger)
@with_transaction()
def test_notification_email_delay(self):
"Test email notification is sent with delay"
pool = Pool()
User = pool.get('res.user')
Trigger = pool.get('ir.trigger')
Model = pool.get('ir.model')
NotificationEmail = pool.get('notification.email')
self._setup_notification()
notification_email, = NotificationEmail.search([])
notification_email.send_after = dt.timedelta(minutes=5)
notification_email.save()
model, = Model.search([
('model', '=', User.__name__),
])
Trigger.create([{
'name': 'Test creation',
'model': model.id,
'on_create': True,
'condition': 'true',
'notification_email': notification_email.id,
'action': 'notification.email|trigger',
}])
with patch.object(
notification_module, 'sendmail_transactional') as sendmail, \
patch.object(notification_module, 'SMTPDataManager'):
User.create([{'name': "Michael Scott", 'login': "msc"}])
self.run_tasks(1)
sendmail.assert_not_called()
self.run_tasks()
sendmail.assert_called_once_with(
FROM, ['user@example.com'], ANY, datamanager=ANY)
@with_transaction()
def test_notification_email_attachment(self):
"Test email notificiation with attachment"
pool = Pool()
Model = pool.get('ir.model')
Report = pool.get('ir.action.report')
User = pool.get('res.user')
NotificationEmail = pool.get('notification.email')
Language = pool.get('ir.lang')
self._setup_notification()
model, = Model.search([
('model', '=', User.__name__),
])
en, = Language.search([('code', '=', 'en')])
attachment = Report()
attachment.name = "Attachment"
attachment.report_name = 'notification_notification.test.report'
attachment.template_extension = 'txt'
attachment.report_content = b'attachment for ${records[0].name}'
attachment.model = model.model
attachment.save()
notification_email, = NotificationEmail.search([])
notification_email.attachments = [attachment]
notification_email.save()
user, = User.create([{'name': "Michael Scott", 'login': "msc"}])
msg, title = notification_email.get_email(
user, FROM, ['Administrator <user@example.com>'], [], [], [en])
self.assertEqual(msg['From'], FROM)
self.assertEqual(msg['Subject'], 'Notification Email')
self.assertEqual(msg['To'], 'Administrator <user@example.com>')
self.assertEqual(msg.get_content_type(), 'multipart/mixed')
self.assertEqual(
msg.get_payload(0).get_content_type(), 'multipart/alternative')
attachment = msg.get_payload(1)
self.assertEqual(
attachment.get_payload(None, True),
b'attachment for Michael Scott')
self.assertEqual(
attachment.get_content_type(), 'text/plain')
self.assertEqual(
attachment.get_filename(), "Attachment-Michael Scott.txt")
@with_transaction()
def test_notification_email_subject(self):
"Test email notificiation with subject"
pool = Pool()
Model = pool.get('ir.model')
User = pool.get('res.user')
NotificationEmail = pool.get('notification.email')
Language = pool.get('ir.lang')
self._setup_notification()
model, = Model.search([
('model', '=', User.__name__),
])
en, = Language.search([('code', '=', 'en')])
notification_email, = NotificationEmail.search([])
notification_email.subject = 'Notification for ${record.name}'
notification_email.save()
user, = User.create([{'name': "Michael Scott", 'login': "msc"}])
msg, title = notification_email.get_email(
user, FROM, ['Administrator <user@example.com>'], [], [], [en])
self.assertEqual(msg['Subject'], 'Notification for Michael Scott')
@with_transaction()
def test_notification_email_translated_subject(self):
"Test email notificiation with translated subject"
pool = Pool()
Model = pool.get('ir.model')
User = pool.get('res.user')
NotificationEmail = pool.get('notification.email')
Language = pool.get('ir.lang')
self._setup_notification()
model, = Model.search([
('model', '=', User.__name__),
])
es, = Language.search([('code', '=', 'es')])
Language.load_translations([es])
notification_email, = NotificationEmail.search([])
notification_email.subject = 'Notification for ${record.name}'
notification_email.save()
with Transaction().set_context(lang='es'):
notification_email, = NotificationEmail.search([])
notification_email.subject = 'Notificación para ${record.name}'
notification_email.save()
user, = User.create([{
'name': "Michael Scott",
'login': "msc",
'language': es.id,
}])
msg, title = notification_email.get_email(
user, FROM, ['Administrator <user@example.com>'], [], [], [es])
self.assertEqual(msg['Subject'], 'Notificación para Michael Scott')
@unittest.skipIf(
(3, 5, 0) <= sys.version_info < (3, 5, 2), "python bug #25195")
@with_transaction()
def test_notification_email_fallback(self):
"Test email notification fallback"
pool = Pool()
User = pool.get('res.user')
Trigger = pool.get('ir.trigger')
Model = pool.get('ir.model')
NotificationEmail = pool.get('notification.email')
User = pool.get('res.user')
fallback_user = User()
fallback_user.name = 'Fallback'
fallback_user.email = 'fallback@example.com'
fallback_user.login = 'fallback'
fallback_user.save()
self._setup_notification()
notification_email, = NotificationEmail.search([])
notification_email.recipients = None
notification_email.fallback_recipients = fallback_user
notification_email.save()
model, = Model.search([
('model', '=', User.__name__),
])
Trigger.create([{
'name': 'Test creation',
'model': model.id,
'on_create': True,
'condition': 'true',
'notification_email': notification_email.id,
'action': 'notification.email|trigger',
}])
with patch.object(
notification_module, 'sendmail_transactional') as sendmail, \
patch.object(notification_module, 'SMTPDataManager'):
User.create([{'name': "Michael Scott", 'login': "msc"}])
self.run_tasks()
sendmail.assert_called_once_with(
FROM, ['fallback@example.com'], ANY,
datamanager=ANY)
_, _, msg = sendmail.call_args[0]
self.assertEqual(msg['To'], 'Fallback <fallback@example.com>')
@with_transaction()
def test_notification_email_no_recipient(self):
"Test email notification no recipient"
pool = Pool()
User = pool.get('res.user')
Trigger = pool.get('ir.trigger')
Model = pool.get('ir.model')
NotificationEmail = pool.get('notification.email')
User = pool.get('res.user')
self._setup_notification()
notification_email, = NotificationEmail.search([])
notification_email.recipients = None
notification_email.save()
model, = Model.search([
('model', '=', User.__name__),
])
Trigger.create([{
'name': 'Test creation',
'model': model.id,
'on_create': True,
'condition': 'true',
'notification_email': notification_email.id,
'action': 'notification.email|trigger',
}])
with patch.object(
notification_module, 'get_email') as get_email, \
patch.object(notification_module, 'SMTPDataManager'):
User.create([{'name': "Michael Scott", 'login': "msc"}])
self.run_tasks()
get_email.assert_not_called()
del ModuleTestCase
|