moto/tests/test_core/test_mock_all.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
959 B
Python
Raw Normal View History

2021-11-09 22:29:28 +00:00
import boto3
import pytest
2021-11-09 22:29:28 +00:00
import sure # noqa # pylint: disable=unused-import
from moto import mock_all
@mock_all()
def test_decorator():
2021-11-09 22:29:28 +00:00
rgn = "us-east-1"
sqs = boto3.client("sqs", region_name=rgn)
r = sqs.list_queues()
2021-11-09 22:29:28 +00:00
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
lmbda = boto3.client("lambda", region_name=rgn)
r = lmbda.list_event_source_mappings()
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
ddb = boto3.client("dynamodb", region_name=rgn)
r = ddb.list_tables()
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
def test_context_manager():
rgn = "us-east-1"
with mock_all():
sqs = boto3.client("sqs", region_name=rgn)
r = sqs.list_queues()
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
unpatched_sqs = boto3.Session().client("sqs", region_name=rgn)
with pytest.raises(Exception):
unpatched_sqs.list_queues()