cr-connect-workflow/tests/emails/test_email_service.py

35 lines
1.3 KiB
Python
Raw Normal View History

2020-06-12 18:17:08 +00:00
from tests.base_test import BaseTest
from crc import session
from crc.models.approval import ApprovalModel, ApprovalStatus
from crc.models.email import EmailModel
from crc.services.email_service import EmailService
class TestEmailService(BaseTest):
def test_add_email(self):
self.load_example_data()
study = self.create_study()
workflow = self.create_workflow('random_fact')
subject = 'Email Subject'
sender = 'sender@sartography.com'
recipients = ['recipient@sartography.com', 'back@sartography.com']
content = 'Content for this email'
content_html = '<p>Hypertext Markup Language content for this email</p>'
EmailService.add_email(subject=subject, sender=sender, recipients=recipients,
2020-06-17 23:00:16 +00:00
content=content, content_html=content_html, study_id=study.id)
2020-06-12 18:17:08 +00:00
email_model = EmailModel.query.first()
self.assertEqual(email_model.subject, subject)
self.assertEqual(email_model.sender, sender)
self.assertEqual(email_model.recipients, str(recipients))
self.assertEqual(email_model.content, content)
self.assertEqual(email_model.content_html, content_html)
2020-06-17 23:00:16 +00:00
self.assertEqual(email_model.study, study)
# TODO: Create email model without study