2016-03-09 05:05:17 +00:00
|
|
|
from __future__ import unicode_literals
|
2021-02-11 18:31:17 +00:00
|
|
|
import json
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
import boto3
|
|
|
|
from botocore.exceptions import ClientError
|
|
|
|
from six.moves.email_mime_multipart import MIMEMultipart
|
|
|
|
from six.moves.email_mime_text import MIMEText
|
2020-10-06 05:54:49 +00:00
|
|
|
import pytest
|
2020-05-01 15:46:33 +00:00
|
|
|
|
2016-03-09 05:05:17 +00:00
|
|
|
|
2021-05-18 06:51:27 +00:00
|
|
|
# import sure # noqa
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
from moto import mock_ses
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_verify_email_identity():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2016-03-09 05:05:17 +00:00
|
|
|
conn.verify_email_identity(EmailAddress="test@example.com")
|
|
|
|
|
|
|
|
identities = conn.list_identities()
|
2019-10-31 15:44:26 +00:00
|
|
|
address = identities["Identities"][0]
|
|
|
|
address.should.equal("test@example.com")
|
|
|
|
|
2016-03-09 05:05:17 +00:00
|
|
|
|
2017-07-11 08:02:31 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_verify_email_address():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2017-07-11 08:02:31 +00:00
|
|
|
conn.verify_email_address(EmailAddress="test@example.com")
|
|
|
|
email_addresses = conn.list_verified_email_addresses()
|
2019-10-31 15:44:26 +00:00
|
|
|
email = email_addresses["VerifiedEmailAddresses"][0]
|
|
|
|
email.should.equal("test@example.com")
|
|
|
|
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_domain_verify():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
conn.verify_domain_dkim(Domain="domain1.com")
|
|
|
|
conn.verify_domain_identity(Domain="domain2.com")
|
|
|
|
|
|
|
|
identities = conn.list_identities()
|
2019-10-31 15:44:26 +00:00
|
|
|
domains = list(identities["Identities"])
|
|
|
|
domains.should.equal(["domain1.com", "domain2.com"])
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_delete_identity():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2016-03-09 05:05:17 +00:00
|
|
|
conn.verify_email_identity(EmailAddress="test@example.com")
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.list_identities()["Identities"].should.have.length_of(1)
|
2016-03-09 05:05:17 +00:00
|
|
|
conn.delete_identity(Identity="test@example.com")
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.list_identities()["Identities"].should.have.length_of(0)
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_send_email():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
kwargs = dict(
|
|
|
|
Source="test@example.com",
|
|
|
|
Destination={
|
|
|
|
"ToAddresses": ["test_to@example.com"],
|
|
|
|
"CcAddresses": ["test_cc@example.com"],
|
|
|
|
"BccAddresses": ["test_bcc@example.com"],
|
|
|
|
},
|
|
|
|
Message={
|
|
|
|
"Subject": {"Data": "test subject"},
|
2019-10-31 15:44:26 +00:00
|
|
|
"Body": {"Text": {"Data": "test body"}},
|
|
|
|
},
|
2016-03-09 05:05:17 +00:00
|
|
|
)
|
|
|
|
conn.send_email.when.called_with(**kwargs).should.throw(ClientError)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.verify_domain_identity(Domain="example.com")
|
2016-03-09 05:05:17 +00:00
|
|
|
conn.send_email(**kwargs)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
too_many_addresses = list("to%s@example.com" % i for i in range(51))
|
2016-03-09 05:05:17 +00:00
|
|
|
conn.send_email.when.called_with(
|
2019-10-31 15:44:26 +00:00
|
|
|
**dict(kwargs, Destination={"ToAddresses": too_many_addresses})
|
2016-03-09 05:05:17 +00:00
|
|
|
).should.throw(ClientError)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
2019-10-31 15:44:26 +00:00
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
2016-03-09 05:05:17 +00:00
|
|
|
sent_count.should.equal(3)
|
|
|
|
|
|
|
|
|
2020-08-25 12:51:58 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_send_email_when_verify_source():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
|
|
|
|
kwargs = dict(
|
2020-11-11 15:55:37 +00:00
|
|
|
Destination={"ToAddresses": ["test_to@example.com"],},
|
2020-08-25 12:51:58 +00:00
|
|
|
Message={
|
|
|
|
"Subject": {"Data": "test subject"},
|
|
|
|
"Body": {"Text": {"Data": "test body"}},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
conn.send_email.when.called_with(
|
|
|
|
Source="verify_email_address@example.com", **kwargs
|
|
|
|
).should.throw(ClientError)
|
|
|
|
conn.verify_email_address(EmailAddress="verify_email_address@example.com")
|
|
|
|
conn.send_email(Source="verify_email_address@example.com", **kwargs)
|
|
|
|
|
|
|
|
conn.send_email.when.called_with(
|
|
|
|
Source="verify_email_identity@example.com", **kwargs
|
|
|
|
).should.throw(ClientError)
|
|
|
|
conn.verify_email_identity(EmailAddress="verify_email_identity@example.com")
|
|
|
|
conn.send_email(Source="verify_email_identity@example.com", **kwargs)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
|
|
|
sent_count.should.equal(2)
|
|
|
|
|
|
|
|
|
2019-10-02 07:39:35 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_send_templated_email():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2019-10-02 07:39:35 +00:00
|
|
|
|
|
|
|
kwargs = dict(
|
|
|
|
Source="test@example.com",
|
|
|
|
Destination={
|
|
|
|
"ToAddresses": ["test_to@example.com"],
|
|
|
|
"CcAddresses": ["test_cc@example.com"],
|
|
|
|
"BccAddresses": ["test_bcc@example.com"],
|
|
|
|
},
|
|
|
|
Template="test_template",
|
2019-10-31 15:44:26 +00:00
|
|
|
TemplateData='{"name": "test"}',
|
2019-10-02 07:39:35 +00:00
|
|
|
)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.send_templated_email.when.called_with(**kwargs).should.throw(ClientError)
|
2019-10-02 07:39:35 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
conn.verify_domain_identity(Domain="example.com")
|
2021-03-19 15:36:53 +00:00
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.send_templated_email(**kwargs)
|
|
|
|
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("TemplateDoesNotExist")
|
|
|
|
|
|
|
|
conn.create_template(
|
|
|
|
Template={
|
|
|
|
"TemplateName": "test_template",
|
|
|
|
"SubjectPart": "lalala",
|
|
|
|
"HtmlPart": "",
|
|
|
|
"TextPart": "",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2019-10-02 07:39:35 +00:00
|
|
|
conn.send_templated_email(**kwargs)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
too_many_addresses = list("to%s@example.com" % i for i in range(51))
|
2019-10-02 07:39:35 +00:00
|
|
|
conn.send_templated_email.when.called_with(
|
2019-10-31 15:44:26 +00:00
|
|
|
**dict(kwargs, Destination={"ToAddresses": too_many_addresses})
|
2019-10-02 07:39:35 +00:00
|
|
|
).should.throw(ClientError)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
2019-10-31 15:44:26 +00:00
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
2019-10-02 07:39:35 +00:00
|
|
|
sent_count.should.equal(3)
|
|
|
|
|
|
|
|
|
2016-03-09 05:05:17 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_send_html_email():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
kwargs = dict(
|
|
|
|
Source="test@example.com",
|
2019-10-31 15:44:26 +00:00
|
|
|
Destination={"ToAddresses": ["test_to@example.com"]},
|
2016-03-09 05:05:17 +00:00
|
|
|
Message={
|
|
|
|
"Subject": {"Data": "test subject"},
|
2019-10-31 15:44:26 +00:00
|
|
|
"Body": {"Html": {"Data": "test body"}},
|
|
|
|
},
|
2016-03-09 05:05:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
conn.send_email.when.called_with(**kwargs).should.throw(ClientError)
|
|
|
|
|
|
|
|
conn.verify_email_identity(EmailAddress="test@example.com")
|
|
|
|
conn.send_email(**kwargs)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
2019-10-31 15:44:26 +00:00
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
2016-03-09 05:05:17 +00:00
|
|
|
sent_count.should.equal(1)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_send_raw_email():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2016-03-09 05:05:17 +00:00
|
|
|
|
2020-05-07 08:49:37 +00:00
|
|
|
message = get_raw_email()
|
2016-03-09 05:05:17 +00:00
|
|
|
|
2020-05-07 08:49:37 +00:00
|
|
|
kwargs = dict(Source=message["From"], RawMessage={"Data": message.as_string()})
|
2016-03-09 05:05:17 +00:00
|
|
|
|
2020-05-07 08:49:37 +00:00
|
|
|
conn.send_raw_email.when.called_with(**kwargs).should.throw(ClientError)
|
|
|
|
|
|
|
|
conn.verify_email_identity(EmailAddress="test@example.com")
|
|
|
|
conn.send_raw_email(**kwargs)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
|
|
|
sent_count.should.equal(2)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_send_raw_email_validate_domain():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
|
|
|
|
message = get_raw_email()
|
2016-03-09 05:05:17 +00:00
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
kwargs = dict(Source=message["From"], RawMessage={"Data": message.as_string()})
|
2016-03-09 05:05:17 +00:00
|
|
|
|
|
|
|
conn.send_raw_email.when.called_with(**kwargs).should.throw(ClientError)
|
|
|
|
|
2020-05-07 08:49:37 +00:00
|
|
|
conn.verify_domain_identity(Domain="example.com")
|
2016-03-09 05:05:17 +00:00
|
|
|
conn.send_raw_email(**kwargs)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
2019-10-31 15:44:26 +00:00
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
2016-03-09 05:05:17 +00:00
|
|
|
sent_count.should.equal(2)
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
|
2020-05-07 08:49:37 +00:00
|
|
|
def get_raw_email():
|
|
|
|
message = MIMEMultipart()
|
|
|
|
message["Subject"] = "Test"
|
|
|
|
message["From"] = "test@example.com"
|
|
|
|
message["To"] = "to@example.com, foo@example.com"
|
|
|
|
# Message body
|
|
|
|
part = MIMEText("test file attached")
|
|
|
|
message.attach(part)
|
|
|
|
# Attachment
|
|
|
|
part = MIMEText("contents of test file here")
|
|
|
|
part.add_header("Content-Disposition", "attachment; filename=test.txt")
|
|
|
|
message.attach(part)
|
|
|
|
return message
|
|
|
|
|
|
|
|
|
2018-05-05 01:22:47 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_send_raw_email_without_source():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
message = MIMEMultipart()
|
2019-10-31 15:44:26 +00:00
|
|
|
message["Subject"] = "Test"
|
|
|
|
message["From"] = "test@example.com"
|
|
|
|
message["To"] = "to@example.com, foo@example.com"
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
# Message body
|
2019-10-31 15:44:26 +00:00
|
|
|
part = MIMEText("test file attached")
|
2018-05-05 01:22:47 +00:00
|
|
|
message.attach(part)
|
|
|
|
|
|
|
|
# Attachment
|
2019-10-31 15:44:26 +00:00
|
|
|
part = MIMEText("contents of test file here")
|
|
|
|
part.add_header("Content-Disposition", "attachment; filename=test.txt")
|
2018-05-05 01:22:47 +00:00
|
|
|
message.attach(part)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
kwargs = dict(RawMessage={"Data": message.as_string()})
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
conn.send_raw_email.when.called_with(**kwargs).should.throw(ClientError)
|
|
|
|
|
|
|
|
conn.verify_email_identity(EmailAddress="test@example.com")
|
|
|
|
conn.send_raw_email(**kwargs)
|
|
|
|
|
|
|
|
send_quota = conn.get_send_quota()
|
2019-10-31 15:44:26 +00:00
|
|
|
sent_count = int(send_quota["SentLast24Hours"])
|
2018-05-05 01:22:47 +00:00
|
|
|
sent_count.should.equal(2)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_send_raw_email_without_source_or_from():
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
message = MIMEMultipart()
|
2019-10-31 15:44:26 +00:00
|
|
|
message["Subject"] = "Test"
|
|
|
|
message["To"] = "to@example.com, foo@example.com"
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
# Message body
|
2019-10-31 15:44:26 +00:00
|
|
|
part = MIMEText("test file attached")
|
2018-05-05 01:22:47 +00:00
|
|
|
message.attach(part)
|
|
|
|
# Attachment
|
2019-10-31 15:44:26 +00:00
|
|
|
part = MIMEText("contents of test file here")
|
|
|
|
part.add_header("Content-Disposition", "attachment; filename=test.txt")
|
2018-05-05 01:22:47 +00:00
|
|
|
message.attach(part)
|
|
|
|
|
2019-10-31 15:44:26 +00:00
|
|
|
kwargs = dict(RawMessage={"Data": message.as_string()})
|
2018-05-05 01:22:47 +00:00
|
|
|
|
|
|
|
conn.send_raw_email.when.called_with(**kwargs).should.throw(ClientError)
|
2020-03-18 11:46:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_send_email_notification_with_encoded_sender():
|
|
|
|
sender = "Foo <foo@bar.baz>"
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
conn.verify_email_identity(EmailAddress=sender)
|
|
|
|
response = conn.send_email(
|
|
|
|
Source=sender,
|
|
|
|
Destination={"ToAddresses": ["your.friend@hotmail.com"]},
|
2020-11-11 15:55:37 +00:00
|
|
|
Message={"Subject": {"Data": "hi",}, "Body": {"Text": {"Data": "there",}},},
|
2020-03-18 11:46:44 +00:00
|
|
|
)
|
|
|
|
response["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
2020-05-01 15:46:33 +00:00
|
|
|
|
2020-05-04 08:24:46 +00:00
|
|
|
|
2020-05-01 15:46:33 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_create_configuration_set():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
conn.create_configuration_set(ConfigurationSet=dict({"Name": "test"}))
|
|
|
|
|
|
|
|
conn.create_configuration_set_event_destination(
|
2020-05-04 08:24:46 +00:00
|
|
|
ConfigurationSetName="test",
|
|
|
|
EventDestination={
|
|
|
|
"Name": "snsEvent",
|
|
|
|
"Enabled": True,
|
2020-11-11 15:55:37 +00:00
|
|
|
"MatchingEventTypes": ["send",],
|
2020-05-04 08:24:46 +00:00
|
|
|
"SNSDestination": {
|
|
|
|
"TopicARN": "arn:aws:sns:us-east-1:123456789012:myTopic"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
2020-05-01 15:46:33 +00:00
|
|
|
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-05-01 15:46:33 +00:00
|
|
|
conn.create_configuration_set_event_destination(
|
2020-05-04 08:24:46 +00:00
|
|
|
ConfigurationSetName="failtest",
|
2020-05-01 15:46:33 +00:00
|
|
|
EventDestination={
|
2020-05-04 08:24:46 +00:00
|
|
|
"Name": "snsEvent",
|
|
|
|
"Enabled": True,
|
2020-11-11 15:55:37 +00:00
|
|
|
"MatchingEventTypes": ["send",],
|
2020-05-04 08:24:46 +00:00
|
|
|
"SNSDestination": {
|
|
|
|
"TopicARN": "arn:aws:sns:us-east-1:123456789012:myTopic"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
2020-05-01 15:46:33 +00:00
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("ConfigurationSetDoesNotExist")
|
2020-05-01 15:46:33 +00:00
|
|
|
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-05-01 15:46:33 +00:00
|
|
|
conn.create_configuration_set_event_destination(
|
2020-05-04 08:24:46 +00:00
|
|
|
ConfigurationSetName="test",
|
2020-05-01 15:46:33 +00:00
|
|
|
EventDestination={
|
2020-05-04 08:24:46 +00:00
|
|
|
"Name": "snsEvent",
|
|
|
|
"Enabled": True,
|
2020-11-11 15:55:37 +00:00
|
|
|
"MatchingEventTypes": ["send",],
|
2020-05-04 08:24:46 +00:00
|
|
|
"SNSDestination": {
|
|
|
|
"TopicARN": "arn:aws:sns:us-east-1:123456789012:myTopic"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("EventDestinationAlreadyExists")
|
2020-05-13 11:29:34 +00:00
|
|
|
|
|
|
|
|
2020-06-10 09:23:43 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_create_receipt_rule_set():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
result = conn.create_receipt_rule_set(RuleSetName="testRuleSet")
|
|
|
|
|
|
|
|
result["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
|
|
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-06-10 09:23:43 +00:00
|
|
|
conn.create_receipt_rule_set(RuleSetName="testRuleSet")
|
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("RuleSetNameAlreadyExists")
|
2020-06-10 09:23:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_create_receipt_rule():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
rule_set_name = "testRuleSet"
|
|
|
|
conn.create_receipt_rule_set(RuleSetName=rule_set_name)
|
|
|
|
|
|
|
|
result = conn.create_receipt_rule(
|
|
|
|
RuleSetName=rule_set_name,
|
|
|
|
Rule={
|
|
|
|
"Name": "testRule",
|
|
|
|
"Enabled": False,
|
|
|
|
"TlsPolicy": "Optional",
|
|
|
|
"Recipients": ["string"],
|
|
|
|
"Actions": [
|
|
|
|
{
|
|
|
|
"S3Action": {
|
|
|
|
"TopicArn": "string",
|
|
|
|
"BucketName": "string",
|
|
|
|
"ObjectKeyPrefix": "string",
|
|
|
|
"KmsKeyArn": "string",
|
|
|
|
},
|
|
|
|
"BounceAction": {
|
|
|
|
"TopicArn": "string",
|
|
|
|
"SmtpReplyCode": "string",
|
|
|
|
"StatusCode": "string",
|
|
|
|
"Message": "string",
|
|
|
|
"Sender": "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"ScanEnabled": False,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
result["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
|
|
|
|
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-06-10 09:23:43 +00:00
|
|
|
conn.create_receipt_rule(
|
|
|
|
RuleSetName=rule_set_name,
|
|
|
|
Rule={
|
|
|
|
"Name": "testRule",
|
|
|
|
"Enabled": False,
|
|
|
|
"TlsPolicy": "Optional",
|
|
|
|
"Recipients": ["string"],
|
|
|
|
"Actions": [
|
|
|
|
{
|
|
|
|
"S3Action": {
|
|
|
|
"TopicArn": "string",
|
|
|
|
"BucketName": "string",
|
|
|
|
"ObjectKeyPrefix": "string",
|
|
|
|
"KmsKeyArn": "string",
|
|
|
|
},
|
|
|
|
"BounceAction": {
|
|
|
|
"TopicArn": "string",
|
|
|
|
"SmtpReplyCode": "string",
|
|
|
|
"StatusCode": "string",
|
|
|
|
"Message": "string",
|
|
|
|
"Sender": "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"ScanEnabled": False,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("RuleAlreadyExists")
|
2020-06-10 09:23:43 +00:00
|
|
|
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-06-10 09:23:43 +00:00
|
|
|
conn.create_receipt_rule(
|
|
|
|
RuleSetName="InvalidRuleSetaName",
|
|
|
|
Rule={
|
|
|
|
"Name": "testRule",
|
|
|
|
"Enabled": False,
|
|
|
|
"TlsPolicy": "Optional",
|
|
|
|
"Recipients": ["string"],
|
|
|
|
"Actions": [
|
|
|
|
{
|
|
|
|
"S3Action": {
|
|
|
|
"TopicArn": "string",
|
|
|
|
"BucketName": "string",
|
|
|
|
"ObjectKeyPrefix": "string",
|
|
|
|
"KmsKeyArn": "string",
|
|
|
|
},
|
|
|
|
"BounceAction": {
|
|
|
|
"TopicArn": "string",
|
|
|
|
"SmtpReplyCode": "string",
|
|
|
|
"StatusCode": "string",
|
|
|
|
"Message": "string",
|
|
|
|
"Sender": "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"ScanEnabled": False,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("RuleSetDoesNotExist")
|
2020-06-10 09:23:43 +00:00
|
|
|
|
|
|
|
|
2020-05-13 11:29:34 +00:00
|
|
|
@mock_ses
|
|
|
|
def test_create_ses_template():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
|
|
|
|
conn.create_template(
|
|
|
|
Template={
|
|
|
|
"TemplateName": "MyTemplate",
|
|
|
|
"SubjectPart": "Greetings, {{name}}!",
|
|
|
|
"TextPart": "Dear {{name}},"
|
|
|
|
"\r\nYour favorite animal is {{favoriteanimal}}.",
|
|
|
|
"HtmlPart": "<h1>Hello {{name}},"
|
|
|
|
"</h1><p>Your favorite animal is {{favoriteanimal}}.</p>",
|
|
|
|
}
|
|
|
|
)
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-05-13 11:29:34 +00:00
|
|
|
conn.create_template(
|
|
|
|
Template={
|
|
|
|
"TemplateName": "MyTemplate",
|
|
|
|
"SubjectPart": "Greetings, {{name}}!",
|
|
|
|
"TextPart": "Dear {{name}},"
|
|
|
|
"\r\nYour favorite animal is {{favoriteanimal}}.",
|
|
|
|
"HtmlPart": "<h1>Hello {{name}},"
|
|
|
|
"</h1><p>Your favorite animal is {{favoriteanimal}}.</p>",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("TemplateNameAlreadyExists")
|
2020-05-13 11:29:34 +00:00
|
|
|
|
|
|
|
# get a template which is already added
|
|
|
|
result = conn.get_template(TemplateName="MyTemplate")
|
|
|
|
result["Template"]["TemplateName"].should.equal("MyTemplate")
|
|
|
|
result["Template"]["SubjectPart"].should.equal("Greetings, {{name}}!")
|
2020-12-03 07:42:19 +00:00
|
|
|
result["Template"]["HtmlPart"].should.equal(
|
|
|
|
"<h1>Hello {{name}}," "</h1><p>Your favorite animal is {{favoriteanimal}}.</p>"
|
|
|
|
)
|
2020-05-13 11:29:34 +00:00
|
|
|
# get a template which is not present
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-05-13 11:29:34 +00:00
|
|
|
conn.get_template(TemplateName="MyFakeTemplate")
|
|
|
|
|
2020-10-06 06:04:09 +00:00
|
|
|
ex.value.response["Error"]["Code"].should.equal("TemplateDoesNotExist")
|
2020-05-13 11:29:34 +00:00
|
|
|
|
|
|
|
result = conn.list_templates()
|
|
|
|
result["TemplatesMetadata"][0]["Name"].should.equal("MyTemplate")
|
2021-02-11 18:31:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_render_template():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
|
|
|
|
kwargs = dict(
|
|
|
|
TemplateName="MyTestTemplate",
|
|
|
|
TemplateData=json.dumps({"name": "John", "favoriteanimal": "Lion"}),
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.test_render_template(**kwargs)
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("TemplateDoesNotExist")
|
|
|
|
|
|
|
|
conn.create_template(
|
|
|
|
Template={
|
|
|
|
"TemplateName": "MyTestTemplate",
|
|
|
|
"SubjectPart": "Greetings, {{name}}!",
|
|
|
|
"TextPart": "Dear {{name}},"
|
|
|
|
"\r\nYour favorite animal is {{favoriteanimal}}.",
|
|
|
|
"HtmlPart": "<h1>Hello {{name}},"
|
|
|
|
"</h1><p>Your favorite animal is {{favoriteanimal}}.</p>",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
result = conn.test_render_template(**kwargs)
|
|
|
|
result["RenderedTemplate"].should.contain("Subject: Greetings, John!")
|
|
|
|
result["RenderedTemplate"].should.contain("Dear John,")
|
|
|
|
result["RenderedTemplate"].should.contain("<h1>Hello John,</h1>")
|
|
|
|
result["RenderedTemplate"].should.contain("Your favorite animal is Lion")
|
|
|
|
|
2021-05-18 06:51:27 +00:00
|
|
|
kwargs = dict(
|
|
|
|
TemplateName="MyTestTemplate",
|
|
|
|
TemplateData=json.dumps({"name": "John", "favoriteanimal": "Lion"}),
|
|
|
|
)
|
|
|
|
|
|
|
|
conn.create_template(
|
|
|
|
Template={
|
|
|
|
"TemplateName": "MyTestTemplate1",
|
|
|
|
"SubjectPart": "Greetings, {{name}}!",
|
|
|
|
"TextPart": "Dear {{name}},"
|
|
|
|
"\r\nYour favorite animal is {{favoriteanimal}}.",
|
|
|
|
"HtmlPart": "<h1>Hello {{name}},"
|
|
|
|
"</h1><p>Your favorite animal is {{favoriteanimal }}.</p>",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
result = conn.test_render_template(**kwargs)
|
|
|
|
result["RenderedTemplate"].should.contain("Subject: Greetings, John!")
|
|
|
|
result["RenderedTemplate"].should.contain("Dear John,")
|
|
|
|
result["RenderedTemplate"].should.contain("<h1>Hello John,</h1>")
|
|
|
|
result["RenderedTemplate"].should.contain("Your favorite animal is Lion")
|
|
|
|
|
|
|
|
kwargs = dict(
|
|
|
|
TemplateName="MyTestTemplate", TemplateData=json.dumps({"name": "John"}),
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.test_render_template(**kwargs)
|
|
|
|
assert ex.value.response["Error"]["Code"] == "MissingRenderingAttributeException"
|
|
|
|
assert (
|
|
|
|
ex.value.response["Error"]["Message"]
|
|
|
|
== "Attribute 'favoriteanimal' is not present in the rendering data."
|
|
|
|
)
|
|
|
|
|
2021-02-11 18:31:17 +00:00
|
|
|
|
|
|
|
@mock_ses
|
|
|
|
def test_update_ses_template():
|
|
|
|
conn = boto3.client("ses", region_name="us-east-1")
|
|
|
|
template = {
|
|
|
|
"TemplateName": "MyTemplateToUpdate",
|
|
|
|
"SubjectPart": "Greetings, {{name}}!",
|
|
|
|
"TextPart": "Dear {{name}}," "\r\nYour favorite animal is {{favoriteanimal}}.",
|
|
|
|
"HtmlPart": "<h1>Hello {{name}},"
|
|
|
|
"</h1><p>Your favorite animal is {{favoriteanimal}}.</p>",
|
|
|
|
}
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.update_template(Template=template)
|
|
|
|
ex.value.response["Error"]["Code"].should.equal("TemplateDoesNotExist")
|
|
|
|
|
|
|
|
conn.create_template(Template=template)
|
|
|
|
|
|
|
|
template["SubjectPart"] = "Hi, {{name}}!"
|
|
|
|
template["TextPart"] = "Dear {{name}},\r\n Your favorite color is {{color}}"
|
|
|
|
template[
|
|
|
|
"HtmlPart"
|
|
|
|
] = "<h1>Hello {{name}},</h1><p>Your favorite color is {{color}}</p>"
|
|
|
|
conn.update_template(Template=template)
|
|
|
|
|
|
|
|
result = conn.get_template(TemplateName=template["TemplateName"])
|
|
|
|
result["Template"]["SubjectPart"].should.equal("Hi, {{name}}!")
|
|
|
|
result["Template"]["TextPart"].should.equal(
|
|
|
|
"Dear {{name}},\n Your favorite color is {{color}}"
|
|
|
|
)
|
|
|
|
result["Template"]["HtmlPart"].should.equal(
|
|
|
|
"<h1>Hello {{name}},</h1><p>Your favorite color is {{color}}</p>"
|
|
|
|
)
|