2021-10-18 19:44:29 +00:00
|
|
|
import sure # noqa # pylint: disable=unused-import
|
2019-07-10 01:31:43 +00:00
|
|
|
import boto3
|
2019-07-11 02:40:49 +00:00
|
|
|
from moto import mock_sqs, settings
|
2022-08-13 09:49:43 +00:00
|
|
|
from tests import DEFAULT_ACCOUNT_ID
|
2019-07-11 02:40:49 +00:00
|
|
|
|
2019-07-10 01:31:43 +00:00
|
|
|
|
2019-07-11 02:16:11 +00:00
|
|
|
def test_context_manager_returns_mock():
|
2019-07-10 01:31:43 +00:00
|
|
|
with mock_sqs() as sqs_mock:
|
2019-10-31 15:44:26 +00:00
|
|
|
conn = boto3.client("sqs", region_name="us-west-1")
|
2019-07-10 01:31:43 +00:00
|
|
|
conn.create_queue(QueueName="queue1")
|
|
|
|
|
2019-07-11 02:40:49 +00:00
|
|
|
if not settings.TEST_SERVER_MODE:
|
2022-08-13 09:49:43 +00:00
|
|
|
backend = sqs_mock.backends[DEFAULT_ACCOUNT_ID]["us-west-1"]
|
|
|
|
list(backend.queues.keys()).should.equal(["queue1"])
|