123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- # coding=utf-8
- # INFO - G.M - 09-06-2018 - Those test need a working MailHog
-
- from email.mime.multipart import MIMEMultipart
- from email.mime.text import MIMEText
-
- import requests
- import transaction
-
- from tracim.fixtures.users_and_groups import Base as BaseFixture
- from tracim.fixtures.content import Content as ContentFixture
- from tracim.models.data import ContentType
-
- from tracim.lib.core.content import ContentApi
- from tracim.lib.core.group import GroupApi
- from tracim.lib.core.user import UserApi
- from tracim.lib.core.userworkspace import RoleApi
- from tracim.lib.core.workspace import WorkspaceApi
- from tracim.lib.mail_notifier.notifier import EmailManager
- from tracim.lib.mail_notifier.sender import EmailSender
- from tracim.lib.mail_notifier.utils import SmtpConfiguration
- from tracim.models import Group
- from tracim.tests import MailHogTest
-
-
- class TestEmailSender(MailHogTest):
-
- def test__func__connect_disconnect__ok__nominal_case(self):
- smtp_config = SmtpConfiguration(
- self.app_config.EMAIL_NOTIFICATION_SMTP_SERVER,
- self.app_config.EMAIL_NOTIFICATION_SMTP_PORT,
- self.app_config.EMAIL_NOTIFICATION_SMTP_USER,
- self.app_config.EMAIL_NOTIFICATION_SMTP_PASSWORD
- )
- sender = EmailSender(
- self.app_config,
- smtp_config,
- True,
- )
- sender.connect()
- sender.disconnect()
-
- def test__func__send_email__ok__nominal_case(self):
- smtp_config = SmtpConfiguration(
- self.app_config.EMAIL_NOTIFICATION_SMTP_SERVER,
- self.app_config.EMAIL_NOTIFICATION_SMTP_PORT,
- self.app_config.EMAIL_NOTIFICATION_SMTP_USER,
- self.app_config.EMAIL_NOTIFICATION_SMTP_PASSWORD
- )
- sender = EmailSender(
- self.app_config,
- smtp_config,
- True,
- )
-
- # Create test_mail
- msg = MIMEMultipart()
- msg['Subject'] = 'test__func__send_email__ok__nominal_case'
- msg['From'] = 'test_send_mail@localhost'
- msg['To'] = 'receiver_test_send_mail@localhost'
- text = "test__func__send_email__ok__nominal_case"
- html = """\
- <html>
- <head></head>
- <body>
- <p>test__func__send_email__ok__nominal_case</p>
- </body>
- </html>
- """.replace(' ', '').replace('\n', '')
- part1 = MIMEText(text, 'plain')
- part2 = MIMEText(html, 'html')
- msg.attach(part1)
- msg.attach(part2)
-
- sender.send_mail(msg)
- sender.disconnect()
-
- # check mail received
- response = requests.get('http://127.0.0.1:8025/api/v1/messages')
- response = response.json()
- headers = response[0]['Content']['Headers']
- assert headers['From'][0] == 'test_send_mail@localhost'
- assert headers['To'][0] == 'receiver_test_send_mail@localhost'
- assert headers['Subject'][0] == 'test__func__send_email__ok__nominal_case'
- assert response[0]['MIME']['Parts'][0]['Body'] == text
- assert response[0]['MIME']['Parts'][1]['Body'] == html
-
-
- class testUserNotification(MailHogTest):
-
- def test_func__create_user_with_mail_notification__ok__nominal_case(self):
- api = UserApi(
- current_user=None,
- session=self.session,
- config=self.app_config,
- )
- u = api.create_user(
- email='bob@bob',
- password='pass',
- name='bob',
- timezone='+2',
- do_save=True,
- do_notify=True,
- )
- assert u is not None
- assert u.email == "bob@bob"
- assert u.validate_password('pass')
- assert u.display_name == 'bob'
- assert u.timezone == '+2'
-
- # check mail received
- response = requests.get('http://127.0.0.1:8025/api/v1/messages')
- response = response.json()
- headers = response[0]['Content']['Headers']
- assert headers['From'][0] == 'Tracim Notifications <test_user_from+0@localhost>'
- assert headers['To'][0] == 'bob <bob@bob>'
- assert headers['Subject'][0] == '[TRACIM] Created account'
-
-
- class testContentNotification(MailHogTest):
-
- fixtures = [BaseFixture, ContentFixture]
-
- def test_func__create_new_content_with_notification__ok__nominal_case(self):
- uapi = UserApi(
- current_user=None,
- session=self.session,
- config=self.app_config,
- )
- current_user = uapi.get_one_by_email('admin@admin.admin')
- # Create new user with notification enabled on w1 workspace
- wapi = WorkspaceApi(
- current_user=current_user,
- session=self.session,
- )
- workspace = wapi.get_one_by_label('w1')
- user = uapi.get_one_by_email('bob@fsf.local')
- wapi.enable_notifications(user, workspace)
-
- api = ContentApi(
- current_user=user,
- session=self.session,
- config=self.app_config,
- )
- item = api.create(
- ContentType.Folder,
- workspace,
- None,
- 'parent',
- do_save=True,
- do_notify=False,
- )
- item2 = api.create(
- ContentType.File,
- workspace,
- item,
- 'file1',
- do_save=True,
- do_notify=True,
- )
-
- # check mail received
- response = requests.get('http://127.0.0.1:8025/api/v1/messages')
- response = response.json()
- headers = response[0]['Content']['Headers']
- assert headers['From'][0] == '"Bob i. via Tracim" <test_user_from+3@localhost>'
- assert headers['To'][0] == 'Global manager <admin@admin.admin>'
- assert headers['Subject'][0] == '[TRACIM] [w1] file1 (open)'
- assert headers['References'][0] == 'test_user_refs+13@localhost'
- assert headers['Reply-to'][0] == '"Bob i. & all members of w1" <test_user_reply+13@localhost>'
|