123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: Jayesh Kariya <jayeshk@saltstack.com>
- """
- # Import Python Libs
- from __future__ import absolute_import, print_function, unicode_literals
- # Import Salt Libs
- import salt.modules.smtp as smtp
- # Import Salt Testing Libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.mock import MagicMock, patch
- from tests.support.unit import TestCase
- class SMTPRecipientsRefused(Exception):
- """
- Mock SMTPRecipientsRefused class
- """
- def __init__(self, msg):
- super(SMTPRecipientsRefused, self).__init__(msg)
- self.smtp_error = msg
- class SMTPHeloError(Exception):
- """
- Mock SMTPHeloError class
- """
- def __init__(self, msg):
- super(SMTPHeloError, self).__init__(msg)
- self.smtp_error = msg
- class SMTPSenderRefused(Exception):
- """
- Mock SMTPSenderRefused class
- """
- def __init__(self, msg):
- super(SMTPSenderRefused, self).__init__(msg)
- self.smtp_error = msg
- class SMTPDataError(Exception):
- """
- Mock SMTPDataError class
- """
- def __init__(self, msg):
- super(SMTPDataError, self).__init__(msg)
- self.smtp_error = msg
- class SMTPException(Exception):
- """
- Mock SMTPException class
- """
- def __init__(self, msg):
- super(SMTPException, self).__init__(msg)
- self.smtp_error = msg
- class SMTPAuthenticationError(Exception):
- """
- Mock SMTPAuthenticationError class
- """
- def __init__(self, msg):
- super(SMTPAuthenticationError, self).__init__(msg)
- self.smtp_error = msg
- class MockSMTPSSL(object):
- """
- Mock SMTP_SSL class
- """
- flag = None
- def __init__(self, server):
- pass
- def sendmail(self, sender, recipient, msg):
- """
- Mock sendmail method
- """
- if self.flag == 1:
- raise SMTPRecipientsRefused("All recipients were refused.")
- elif self.flag == 2:
- raise SMTPHeloError("Helo error")
- elif self.flag == 3:
- raise SMTPSenderRefused("Sender Refused")
- elif self.flag == 4:
- raise SMTPDataError("Data error")
- return (sender, recipient, msg)
- def login(self, username, password):
- """
- Mock login method
- """
- if self.flag == 5:
- raise SMTPAuthenticationError("SMTP Authentication Failure")
- return (username, password)
- @staticmethod
- def quit():
- """
- Mock quit method
- """
- return True
- class MockSMTP(object):
- """
- Mock SMTP class
- """
- flag = None
- def __init__(self, server):
- pass
- @staticmethod
- def ehlo():
- """
- Mock ehlo method
- """
- return True
- @staticmethod
- def has_extn(name):
- """
- Mock has_extn method
- """
- return name
- def starttls(self):
- """
- Mock starttls method
- """
- if self.flag == 1:
- raise SMTPHeloError("Helo error")
- elif self.flag == 2:
- raise SMTPException("Exception error")
- elif self.flag == 3:
- raise RuntimeError
- return True
- def sendmail(self, sender, recipient, msg):
- """
- Mock sendmail method
- """
- if self.flag == 1:
- raise SMTPRecipientsRefused("All recipients were refused.")
- elif self.flag == 2:
- raise SMTPHeloError("Helo error")
- elif self.flag == 3:
- raise SMTPSenderRefused("Sender Refused")
- elif self.flag == 4:
- raise SMTPDataError("Data error")
- return (sender, recipient, msg)
- @staticmethod
- def quit():
- """
- Mock quit method
- """
- return True
- class MockGaierror(Exception):
- """
- Mock MockGaierror class
- """
- def __init__(self, msg):
- super(MockGaierror, self).__init__(msg)
- self.smtp_error = msg
- class MockSocket(object):
- """
- Mock Socket class
- """
- def __init__(self):
- self.gaierror = MockGaierror
- class MockSmtplib(object):
- """
- Mock smtplib class
- """
- flag = None
- def __init__(self):
- self.SMTPRecipientsRefused = SMTPRecipientsRefused
- self.SMTPHeloError = SMTPHeloError
- self.SMTPSenderRefused = SMTPSenderRefused
- self.SMTPDataError = SMTPDataError
- self.SMTPException = SMTPException
- self.SMTPAuthenticationError = SMTPAuthenticationError
- self.server = None
- def SMTP_SSL(self, server):
- """
- Mock SMTP_SSL method
- """
- self.server = server
- if self.flag == 1:
- raise MockGaierror("gaierror")
- return MockSMTPSSL("server")
- def SMTP(self, server):
- """
- Mock SMTP method
- """
- self.server = server
- if self.flag == 1:
- raise MockGaierror("gaierror")
- return MockSMTP("server")
- class SmtpTestCase(TestCase, LoaderModuleMockMixin):
- """
- TestCase for salt.modules.smtp
- """
- def setup_loader_modules(self):
- return {smtp: {"socket": MockSocket(), "smtplib": MockSmtplib()}}
- # 'send_msg' function tests: 1
- def test_send_msg(self):
- """
- Tests if it send a message to an SMTP recipient.
- """
- mock = MagicMock(
- return_value={
- "smtp.server": "",
- "smtp.tls": "True",
- "smtp.sender": "",
- "smtp.username": "",
- "smtp.password": "",
- }
- )
- with patch.dict(smtp.__salt__, {"config.option": mock}):
- self.assertTrue(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSMTPSSL.flag = 1
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSMTPSSL.flag = 2
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSMTPSSL.flag = 3
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSMTPSSL.flag = 4
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- mock = MagicMock(
- return_value={
- "smtp.server": "",
- "smtp.tls": "",
- "smtp.sender": "",
- "smtp.username": "",
- "smtp.password": "",
- }
- )
- with patch.dict(smtp.__salt__, {"config.option": mock}):
- MockSMTPSSL.flag = 5
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- username="myuser",
- password="verybadpass",
- sender="admin@example.com",
- server="smtp.domain.com",
- )
- )
- MockSMTP.flag = 1
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSMTP.flag = 2
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSMTP.flag = 3
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
- MockSmtplib.flag = 1
- self.assertFalse(
- smtp.send_msg(
- "admin@example.com",
- "This is a salt module test",
- profile="my-smtp-account",
- )
- )
|