Ejemplo n.º 1
0
def error_email(**kwargs):
    if kwargs.get('table_name', None) is None or kwargs.get('error', None) is None:
        return

    if config.get('debug.enabled') is False:
        subj_str = "Job Failure - %s" % kwargs.get('table_name')
        mail_str = "Job %s failed with error: %s" % (kwargs.get('table_name'), kwargs.get('error'))
        mail_str = mail_str + ' || Stack trace: %s' % kwargs.get('trace', None)
        mail.sendmail("*****@*****.**", subj_str, mail_str)
Ejemplo n.º 2
0
    def test_sendmail_starttls(self, mock_SMTP):
        """Test that when use_starttls is true, elho and starttls are called."""
        mock_SMTP_instance = mock_SMTP.return_value

        mailto = '*****@*****.**'
        subject = 'This is another subject'
        message = 'This is another message'
        mail.sendmail(mailto, subject, message, use_starttls=True)

        self.assertEqual(len(mock_SMTP_instance.elho.call_args_list), 2)
        self.assertTrue(mock_SMTP_instance.starttls.called)
Ejemplo n.º 3
0
    def test_sendmail_starttls(self, mock_SMTP):
        """Test that when use_starttls is true, elho and starttls are called."""
        mock_SMTP_instance = mock_SMTP.return_value

        mailto = '*****@*****.**'
        subject = 'This is another subject'
        message = 'This is another message'
        mail.sendmail(mailto, subject, message, use_starttls=True)

        self.assertEqual(len(mock_SMTP_instance.elho.call_args_list), 2)
        self.assertTrue(mock_SMTP_instance.starttls.called)
Ejemplo n.º 4
0
    def test_sendmail_attachments(self, mock_set_payload, mock_SMTP):
        """Test that whens sarttls is true, elho and starttls are called."""

        mailto = '*****@*****.**'
        subject = 'This is another subject'
        message = 'This is another message'
        file_name = 'my_file_name.txt'
        file_content = 'this is the content'
        mail.sendmail(mailto,
                      subject,
                      message,
                      attachments={file_name: file_content})

        # set_payload should be called on the file content.
        self.assertIn(file_content,
                      [call[0][0] for call in mock_set_payload.call_args_list])
Ejemplo n.º 5
0
    def test_sendmail(self, mock_SMTP):
        mock_SMTP_instance = mock_SMTP.return_value

        mailto = '*****@*****.**'
        subject = 'This is a subject'
        message = 'This is a message'
        mail.sendmail(mailto, subject, message)

        args, kwargs = mock_SMTP_instance.sendmail.call_args
        from_header = config.get('smtp.from')
        self.assertEqual(from_header, args[0])
        self.assertIn(mailto, args[1])
        self.assertIn('To: %s' % mailto, args[2])
        self.assertIn('From: %s' % from_header, args[2])
        self.assertIn('Subject: %s' % subject, args[2])
        self.assertIn('Content-Type: text/html', args[2])
Ejemplo n.º 6
0
    def test_sendmail_attachments(self, mock_set_payload, mock_SMTP):
        """Test that whens sarttls is true, elho and starttls are called."""

        mailto = '*****@*****.**'
        subject = 'This is another subject'
        message = 'This is another message'
        file_name = 'my_file_name.txt'
        file_content = 'this is the content'
        mail.sendmail(
            mailto,
            subject,
            message,
            attachments={file_name: file_content}
        )

        # set_payload should be called on the file content.
        self.assertIn(file_content, [call[0][0] for call in mock_set_payload.call_args_list])