143 lines
5.9 KiB
Python
143 lines
5.9 KiB
Python
# Copyright 2015 Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
|
# Copyright 2015 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
|
# Copyright 2015 Javier Iniesta <javieria@antiun.com>
|
|
# Copyright 2020 Tecnativa - Manuel Calero
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo.exceptions import ValidationError
|
|
|
|
from ..hooks import post_init_hook
|
|
from . import base
|
|
|
|
|
|
class MailMassMailingContactCase(base.BaseCase):
|
|
def test_match_existing_contacts(self):
|
|
contact = self.create_mailing_contact(
|
|
{"email": "partner@test.com", "list_ids": [(6, 0, self.mailing_list.ids)]}
|
|
)
|
|
post_init_hook(self.cr, self.registry)
|
|
self.assertEqual(contact.partner_id.id, self.partner.id)
|
|
self.check_mailing_contact_partner(contact)
|
|
|
|
def test_create_mass_mailing_contact(self):
|
|
title_doctor = self.env.ref("base.res_partner_title_doctor")
|
|
country_cu = self.env.ref("base.cu")
|
|
category_8 = self.env.ref("base.res_partner_category_8")
|
|
category_11 = self.env.ref("base.res_partner_category_11")
|
|
contact_vals = {
|
|
"name": "Partner test 2",
|
|
"email": "partner2@test.com",
|
|
"title_id": title_doctor.id,
|
|
"company_name": "TestCompany",
|
|
"country_id": country_cu.id,
|
|
"tag_ids": [(6, 0, (category_8 | category_11).ids)],
|
|
"list_ids": [(6, 0, (self.mailing_list | self.mailing_list2).ids)],
|
|
}
|
|
contact = self.create_mailing_contact(contact_vals)
|
|
self.check_mailing_contact_partner(contact)
|
|
with self.assertRaises(ValidationError):
|
|
self.create_mailing_contact(
|
|
{
|
|
"email": "partner2@test.com",
|
|
"list_ids": [[6, 0, [self.mailing_list2.id]]],
|
|
}
|
|
)
|
|
|
|
def test_create_mass_mailing_contact_with_subscription(self):
|
|
title_doctor = self.env.ref("base.res_partner_title_doctor")
|
|
country_cu = self.env.ref("base.cu")
|
|
category_8 = self.env.ref("base.res_partner_category_8")
|
|
category_11 = self.env.ref("base.res_partner_category_11")
|
|
contact_vals = {
|
|
"name": "Partner test 2",
|
|
"email": "partner2@test.com",
|
|
"title_id": title_doctor.id,
|
|
"company_name": "TestCompany",
|
|
"country_id": country_cu.id,
|
|
"tag_ids": [(6, 0, (category_8 | category_11).ids)],
|
|
"subscription_list_ids": [
|
|
(0, 0, {"list_id": self.mailing_list.id}),
|
|
(0, 0, {"list_id": self.mailing_list2.id}),
|
|
],
|
|
}
|
|
contact = self.create_mailing_contact(contact_vals)
|
|
self.check_mailing_contact_partner(contact)
|
|
with self.assertRaises(ValidationError):
|
|
self.create_mailing_contact(
|
|
{
|
|
"email": "partner2@test.com",
|
|
"subscription_list_ids": [
|
|
(0, 0, {"list_id": self.mailing_list2.id})
|
|
],
|
|
}
|
|
)
|
|
|
|
def test_write_mass_mailing_contact(self):
|
|
contact = self.create_mailing_contact(
|
|
{"email": "partner@test.com", "list_ids": [(6, 0, self.mailing_list.ids)]}
|
|
)
|
|
contact.write({"partner_id": False})
|
|
self.check_mailing_contact_partner(contact)
|
|
contact2 = self.create_mailing_contact(
|
|
{
|
|
"email": "partner2@test.com",
|
|
"name": "Partner test 2",
|
|
"list_ids": [(6, 0, self.mailing_list.ids)],
|
|
}
|
|
)
|
|
contact2.write({"partner_id": False})
|
|
self.assertFalse(contact2.partner_id)
|
|
|
|
def test_onchange_partner(self):
|
|
contact = self.create_mailing_contact(
|
|
{"email": "partner@test.com", "list_ids": [[6, 0, [self.mailing_list.id]]]}
|
|
)
|
|
title_doctor = self.env.ref("base.res_partner_title_doctor")
|
|
country_cu = self.env.ref("base.cu")
|
|
category_8 = self.env.ref("base.res_partner_category_8")
|
|
category_11 = self.env.ref("base.res_partner_category_11")
|
|
partner_vals = {
|
|
"name": "Partner test 2",
|
|
"email": "partner2@test.com",
|
|
"title": title_doctor.id,
|
|
"company_id": self.main_company.id,
|
|
"country_id": country_cu.id,
|
|
"category_id": [(6, 0, (category_8 | category_11).ids)],
|
|
}
|
|
partner = self.create_partner(partner_vals)
|
|
contact.partner_id = partner
|
|
contact._onchange_partner_mass_mailing_partner()
|
|
self.check_mailing_contact_partner(contact)
|
|
|
|
def test_partners_merge(self):
|
|
partner_1 = self.create_partner({"name": "Demo 1", "email": "demo1@demo.com"})
|
|
partner_2 = self.create_partner({"name": "Demo 2", "email": "demo2@demo.com"})
|
|
list_1 = self.create_mailing_list({"name": "List test Partners Merge 1"})
|
|
list_2 = self.create_mailing_list({"name": "List test Partners Merge 2"})
|
|
contact_1 = self.create_mailing_contact(
|
|
{
|
|
"email": partner_1.email,
|
|
"name": partner_1.name,
|
|
"partner_id": partner_1.id,
|
|
"list_ids": [(6, 0, [list_1.id])],
|
|
}
|
|
)
|
|
contact_2 = self.create_mailing_contact(
|
|
{
|
|
"email": partner_2.email,
|
|
"name": partner_2.name,
|
|
"partner_id": partner_2.id,
|
|
"list_ids": [(6, 0, [list_1.id, list_2.id])],
|
|
}
|
|
)
|
|
# Wizard partner merge (partner_1 + partner_2) in partner_i1
|
|
wizard = self.env["base.partner.merge.automatic.wizard"].create(
|
|
{"state": "option"}
|
|
)
|
|
wizard._merge((partner_1 + partner_2).ids, partner_1)
|
|
contact = self.env["mailing.contact"].search(
|
|
[("id", "in", (contact_1 + contact_2).ids)]
|
|
)
|
|
self.assertEqual(len(contact), 1)
|
|
self.assertEqual(contact.list_ids.ids, (list_1 + list_2).ids)
|