From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/test_mail/tests/test_ir_actions.py | 43 +++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 addons/test_mail/tests/test_ir_actions.py (limited to 'addons/test_mail/tests/test_ir_actions.py') diff --git a/addons/test_mail/tests/test_ir_actions.py b/addons/test_mail/tests/test_ir_actions.py new file mode 100644 index 00000000..d67124b2 --- /dev/null +++ b/addons/test_mail/tests/test_ir_actions.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.base.tests.test_ir_actions import TestServerActionsBase +from odoo.addons.test_mail.tests.common import TestMailCommon + + +class TestServerActionsEmail(TestMailCommon, TestServerActionsBase): + + def test_action_email(self): + email_template = self._create_template('res.partner', {'partner_to': '%s' % self.test_partner.id}) + self.action.write({'state': 'email', 'template_id': email_template.id}) + self.action.with_context(self.context).run() + # check an email is waiting for sending + mail = self.env['mail.mail'].sudo().search([('subject', '=', 'About TestingPartner')]) + self.assertEqual(len(mail), 1) + # check email content + self.assertEqual(mail.body, '

Hello TestingPartner

') + + def test_action_followers(self): + self.test_partner.message_unsubscribe(self.test_partner.message_partner_ids.ids) + random_partner = self.env['res.partner'].create({'name': 'Thierry Wololo'}) + self.action.write({ + 'state': 'followers', + 'partner_ids': [(4, self.env.ref('base.partner_admin').id), (4, random_partner.id)], + 'channel_ids': [(4, self.env.ref('mail.channel_all_employees').id)] + }) + self.action.with_context(self.context).run() + self.assertEqual(self.test_partner.message_partner_ids, self.env.ref('base.partner_admin') | random_partner) + self.assertEqual(self.test_partner.message_channel_ids, self.env.ref('mail.channel_all_employees')) + + def test_action_next_activity(self): + self.action.write({ + 'state': 'next_activity', + 'activity_user_type': 'specific', + 'activity_type_id': self.env.ref('mail.mail_activity_data_meeting').id, + 'activity_summary': 'TestNew', + }) + before_count = self.env['mail.activity'].search_count([]) + run_res = self.action.with_context(self.context).run() + self.assertFalse(run_res, 'ir_actions_server: create next activity action correctly finished should return False') + self.assertEqual(self.env['mail.activity'].search_count([]), before_count + 1) + self.assertEqual(self.env['mail.activity'].search_count([('summary', '=', 'TestNew')]), 1) -- cgit v1.2.3