mirror of https://github.com/OCA/social.git
[FIX] mail_autosusbscribe: Removing external dependencies and adding context to tests
The external dependency odoo_test_helper must be defined in test-requirements.txt not in the manifest. Also, a context has been added to the tests to avoid executing the code of the "_message_get_default_recipients" method added by this module in a test environment as long as it is not the module itself that is being tested. TT48102pull/1318/head
parent
6c3e7322c4
commit
0bf8a23bea
|
@ -7,7 +7,7 @@ Mail Autosubscribe
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:25398ac084bbb538cdf42cf20ec03b2502919a3ce4fcd7f865bd23cf7d0ca09f
|
||||
!! source digest: sha256:a5279d5605d3a20ab78296c3e833a9158bd7048178fae2d9b543abb8b1ddf1a1
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
|
|
|
@ -10,9 +10,6 @@
|
|||
"license": "AGPL-3",
|
||||
"category": "Marketing",
|
||||
"depends": ["mail"],
|
||||
"external_dependencies": {
|
||||
"python": ["odoo_test_helper"],
|
||||
},
|
||||
"website": "https://github.com/OCA/social",
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import api, models
|
||||
from odoo.tools import config
|
||||
|
||||
|
||||
class BaseModel(models.AbstractModel):
|
||||
|
@ -24,7 +25,10 @@ class BaseModel(models.AbstractModel):
|
|||
# Overload to include auto follow document partners in the composer
|
||||
# Note: This only works if the template is configured with 'Default recipients'
|
||||
res = super()._message_get_default_recipients()
|
||||
if self.env.context.get("no_autosubscribe_followers"):
|
||||
test_condition = config["test_enable"] and not self.env.context.get(
|
||||
"test_mail_autosubscribe"
|
||||
)
|
||||
if test_condition or self.env.context.get("no_autosubscribe_followers"):
|
||||
return res
|
||||
for rec in self:
|
||||
partner_ids = res[rec.id]["partner_ids"]
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
|
@ -366,7 +367,7 @@ ul.auto-toc {
|
|||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:25398ac084bbb538cdf42cf20ec03b2502919a3ce4fcd7f865bd23cf7d0ca09f
|
||||
!! source digest: sha256:a5279d5605d3a20ab78296c3e833a9158bd7048178fae2d9b543abb8b1ddf1a1
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/social/tree/16.0/mail_autosubscribe"><img alt="OCA/social" src="https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_autosubscribe"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/social&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows you to configure partners that will be automatically in copy
|
||||
|
|
|
@ -13,7 +13,11 @@ class TestMailAutosubscribe(TransactionCase):
|
|||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
# Setup env
|
||||
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
|
||||
cls.env = cls.env(
|
||||
context=dict(
|
||||
cls.env.context, tracking_disable=True, test_mail_autosubscribe=True
|
||||
)
|
||||
)
|
||||
# Load fake order model
|
||||
cls.loader = FakeModelLoader(cls.env, cls.__module__)
|
||||
cls.loader.backup_registry()
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# generated from manifests external_dependencies
|
||||
cryptography<37
|
||||
extract_msg
|
||||
odoo_test_helper
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
odoo-test-helper
|
Loading…
Reference in New Issue