File size: 15,964 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 |
import asyncio
import os
import random
import string
import tempfile
from contextlib import AsyncExitStack, ExitStack
from itertools import chain
from unittest.mock import patch
import aiohttp
# Third Party
import pytest
import aiobotocore.session
from aiobotocore.config import AioConfig
host = '127.0.0.1'
_PYCHARM_HOSTED = os.environ.get('PYCHARM_HOSTED') == '1'
@pytest.fixture(
scope="session", params=[True, False], ids=['debug[true]', 'debug[false]']
)
def debug(request):
return request.param
def random_bucketname():
# 63 is the max bucket length.
return random_name()
def random_tablename():
return random_name()
def random_name():
"""Return a string with presumably unique contents
The string contains only symbols allowed for s3 buckets
(alphanumeric, dot and hyphen).
"""
return ''.join(random.sample(string.ascii_lowercase, k=26))
def assert_status_code(response, status_code):
assert response['ResponseMetadata']['HTTPStatusCode'] == status_code
async def assert_num_uploads_found(
s3_client,
bucket_name,
operation,
num_uploads,
*,
max_items=None,
num_attempts=5,
):
paginator = s3_client.get_paginator(operation)
for _ in range(num_attempts):
pages = paginator.paginate(
Bucket=bucket_name, PaginationConfig={'MaxItems': max_items}
)
responses = []
async for page in pages:
responses.append(page)
# It sometimes takes a while for all the uploads to show up,
# especially if the upload was just created. If we don't
# see the expected amount, we retry up to num_attempts time
# before failing.
amount_seen = len(responses[0]['Uploads'])
if amount_seen == num_uploads:
# Test passed.
return
else:
# Sleep and try again.
await asyncio.sleep(2)
pytest.fail(
f"Expected to see {num_uploads} uploads, instead saw: {amount_seen}"
)
@pytest.fixture
def aa_fail_proxy_config(monkeypatch):
# NOTE: name of this fixture must be alphabetically first to run first
monkeypatch.setenv('HTTP_PROXY', f'http://{host}:54321')
monkeypatch.setenv('HTTPS_PROXY', f'http://{host}:54321')
@pytest.fixture
def aa_succeed_proxy_config(monkeypatch):
# NOTE: name of this fixture must be alphabetically first to run first
monkeypatch.setenv('HTTP_PROXY', f'http://{host}:54321')
monkeypatch.setenv('HTTPS_PROXY', f'http://{host}:54321')
# this will cause us to skip proxying
monkeypatch.setenv('NO_PROXY', 'amazonaws.com')
@pytest.fixture
def session():
session = aiobotocore.session.AioSession()
return session
@pytest.fixture
def region():
return 'us-east-1'
@pytest.fixture
def alternative_region():
return 'us-west-2'
@pytest.fixture
def signature_version():
return 's3'
@pytest.fixture
def server_scheme():
return 'http'
@pytest.fixture
def s3_verify():
return None
@pytest.fixture
def config(request, region, signature_version):
config_kwargs = request.node.get_closest_marker("config_kwargs") or {}
if config_kwargs:
assert not config_kwargs.kwargs, config_kwargs
assert len(config_kwargs.args) == 1
config_kwargs = config_kwargs.args[0]
connect_timeout = read_timout = 5
if _PYCHARM_HOSTED:
connect_timeout = read_timout = 180
return AioConfig(
region_name=region,
signature_version=signature_version,
read_timeout=read_timout,
connect_timeout=connect_timeout,
**config_kwargs,
)
@pytest.fixture
def mocking_test():
# change this flag for test with real aws
# TODO: this should be merged with pytest.mark.moto
return True
def moto_config(endpoint_url):
kw = dict(
endpoint_url=endpoint_url,
aws_secret_access_key="xxx",
aws_access_key_id="xxx",
)
return kw
@pytest.fixture
def patch_attributes(request):
"""Call unittest.mock.patch on arguments passed through a pytest mark.
This fixture looks at the @pytest.mark.patch_attributes mark. This mark is a list
of arguments to be passed to unittest.mock.patch (see example below). This fixture
returns the list of mock objects, one per element in the input list.
Why do we need this? In some cases, we want to perform the patching before other
fixtures are run. For instance, the `s3_client` fixture creates an aiobotocore
client. During the client creation process, some event listeners are registered.
When we want to patch the target of these event listeners, we must do so before
the `s3_client` fixture is executed. Otherwise, the aiobotocore client will store
references to the unpatched targets.
In such situations, make sure that subsequent fixtures explicitly depends on
`patch_attribute` to enforce the ordering between fixtures.
Example:
@pytest.mark.patch_attributes([
dict(
target="aiobotocore.retries.adaptive.AsyncClientRateLimiter.on_sending_request",
side_effect=aiobotocore.retries.adaptive.AsyncClientRateLimiter.on_sending_request,
autospec=True
)
])
async def test_client_rate_limiter_called(s3_client, patch_attributes):
await s3_client.get_object(Bucket="bucket", Key="key")
# Just for illustration (this test doesn't pass).
# mock_attributes is a list of 1 element, since we passed a list of 1 element
# to the patch_attributes marker.
mock_attributes[0].assert_called_once()
"""
marker = request.node.get_closest_marker("patch_attributes")
if marker is None:
yield
else:
with ExitStack() as stack:
yield [
stack.enter_context(patch(**kwargs))
for kwargs in marker.args[0]
]
@pytest.fixture
async def s3_client(
session,
region,
config,
s3_server,
mocking_test,
s3_verify,
patch_attributes,
):
# This depends on mock_attributes because we may want to test event listeners.
# See the documentation of `mock_attributes` for details.
kw = moto_config(s3_server) if mocking_test else {}
async with session.create_client(
's3', region_name=region, config=config, verify=s3_verify, **kw
) as client:
yield client
@pytest.fixture
async def alternative_s3_client(
session, alternative_region, signature_version, s3_server, mocking_test
):
kw = moto_config(s3_server) if mocking_test else {}
config = AioConfig(
region_name=alternative_region,
signature_version=signature_version,
read_timeout=5,
connect_timeout=5,
)
async with session.create_client(
's3', region_name=alternative_region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def dynamodb_client(
session, region, config, dynamodb2_server, mocking_test
):
kw = moto_config(dynamodb2_server) if mocking_test else {}
async with session.create_client(
'dynamodb', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def cloudformation_client(
session, region, config, cloudformation_server, mocking_test
):
kw = moto_config(cloudformation_server) if mocking_test else {}
async with session.create_client(
'cloudformation', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def sns_client(session, region, config, sns_server, mocking_test):
kw = moto_config(sns_server) if mocking_test else {}
async with session.create_client(
'sns', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def sqs_client(session, region, config, sqs_server, mocking_test):
kw = moto_config(sqs_server) if mocking_test else {}
async with session.create_client(
'sqs', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def batch_client(session, region, config, batch_server, mocking_test):
kw = moto_config(batch_server) if mocking_test else {}
async with session.create_client(
'batch', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def lambda_client(session, region, config, lambda_server, mocking_test):
kw = moto_config(lambda_server) if mocking_test else {}
async with session.create_client(
'lambda', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def iam_client(session, region, config, iam_server, mocking_test):
kw = moto_config(iam_server) if mocking_test else {}
async with session.create_client(
'iam', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def rds_client(session, region, config, rds_server, mocking_test):
kw = moto_config(rds_server) if mocking_test else {}
async with session.create_client(
'rds', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def ec2_client(session, region, config, ec2_server, mocking_test):
kw = moto_config(ec2_server) if mocking_test else {}
async with session.create_client(
'ec2', region_name=region, config=config, **kw
) as client:
yield client
@pytest.fixture
async def kinesis_client(
session, region, config, kinesis_server, mocking_test
):
kw = moto_config(kinesis_server) if mocking_test else {}
async with session.create_client(
'kinesis', region_name=region, config=config, **kw
) as client:
yield client
async def recursive_delete(s3_client, bucket_name):
# Recursively deletes a bucket and all of its contents.
paginator = s3_client.get_paginator('list_object_versions')
async for n in paginator.paginate(Bucket=bucket_name, Prefix=''):
for obj in chain(
n.get('Versions', []),
n.get('DeleteMarkers', []),
n.get('Contents', []),
n.get('CommonPrefixes', []),
):
kwargs = dict(Bucket=bucket_name, Key=obj['Key'])
if 'VersionId' in obj:
kwargs['VersionId'] = obj['VersionId']
resp = await s3_client.delete_object(**kwargs)
assert_status_code(resp, 204)
resp = await s3_client.delete_bucket(Bucket=bucket_name)
assert_status_code(resp, 204)
@pytest.fixture
async def bucket_name(region, create_bucket):
name = await create_bucket(region)
yield name
@pytest.fixture
async def table_name(create_table):
name = await create_table()
yield name
@pytest.fixture
async def create_bucket(s3_client):
_bucket_name = None
async def _f(region_name, bucket_name=None):
nonlocal _bucket_name
if bucket_name is None:
bucket_name = random_bucketname()
_bucket_name = bucket_name
bucket_kwargs = {'Bucket': bucket_name}
if region_name != 'us-east-1':
bucket_kwargs['CreateBucketConfiguration'] = {
'LocationConstraint': region_name,
}
response = await s3_client.create_bucket(**bucket_kwargs)
assert_status_code(response, 200)
await s3_client.put_bucket_versioning(
Bucket=bucket_name, VersioningConfiguration={'Status': 'Enabled'}
)
return bucket_name
try:
yield _f
finally:
await recursive_delete(s3_client, _bucket_name)
@pytest.fixture
async def create_table(dynamodb_client):
_table_name = None
async def _is_table_ready(table_name):
response = await dynamodb_client.describe_table(TableName=table_name)
return response['Table']['TableStatus'] == 'ACTIVE'
async def _f(table_name=None):
nonlocal _table_name
if table_name is None:
table_name = random_tablename()
_table_name = table_name
table_kwargs = {
'TableName': table_name,
'AttributeDefinitions': [
{'AttributeName': 'testKey', 'AttributeType': 'S'},
],
'KeySchema': [
{'AttributeName': 'testKey', 'KeyType': 'HASH'},
],
'ProvisionedThroughput': {
'ReadCapacityUnits': 1,
'WriteCapacityUnits': 1,
},
}
response = await dynamodb_client.create_table(**table_kwargs)
while not (await _is_table_ready(table_name)):
pass
assert_status_code(response, 200)
return table_name
try:
yield _f
finally:
await delete_table(dynamodb_client, _table_name)
async def delete_table(dynamodb_client, table_name):
response = await dynamodb_client.delete_table(TableName=table_name)
assert_status_code(response, 200)
@pytest.fixture
def tempdir():
with tempfile.TemporaryDirectory() as td:
yield td
@pytest.fixture
def create_object(s3_client, bucket_name):
async def _f(key_name, body='foo'):
r = await s3_client.put_object(
Bucket=bucket_name, Key=key_name, Body=body
)
assert_status_code(r, 200)
return r
return _f
@pytest.fixture
def create_multipart_upload(request, s3_client, bucket_name, event_loop):
_key_name = None
upload_id = None
async def _f(key_name):
nonlocal _key_name
nonlocal upload_id
_key_name = key_name
parsed = await s3_client.create_multipart_upload(
Bucket=bucket_name, Key=key_name
)
upload_id = parsed['UploadId']
return upload_id
def fin():
event_loop.run_until_complete(
s3_client.abort_multipart_upload(
UploadId=upload_id, Bucket=bucket_name, Key=_key_name
)
)
request.addfinalizer(fin)
return _f
@pytest.fixture
async def aio_session():
async with aiohttp.ClientSession() as session:
yield session
def pytest_configure():
class AIOUtils:
def __init__(self):
self.assert_status_code = assert_status_code
self.assert_num_uploads_found = assert_num_uploads_found
pytest.aio = AIOUtils()
@pytest.fixture
def dynamodb_put_item(dynamodb_client, table_name):
async def _f(key_string_value):
response = await dynamodb_client.put_item(
TableName=table_name,
Item={'testKey': {'S': key_string_value}},
)
assert_status_code(response, 200)
return _f
@pytest.fixture
def topic_arn(region, create_topic, sns_client, event_loop):
arn = event_loop.run_until_complete(create_topic())
return arn
async def delete_topic(sns_client, topic_arn):
response = await sns_client.delete_topic(TopicArn=topic_arn)
assert_status_code(response, 200)
@pytest.fixture
def create_topic(request, sns_client, event_loop):
_topic_arn = None
async def _f():
nonlocal _topic_arn
response = await sns_client.create_topic(Name=random_name())
_topic_arn = response['TopicArn']
assert_status_code(response, 200)
return _topic_arn
def fin():
event_loop.run_until_complete(delete_topic(sns_client, _topic_arn))
request.addfinalizer(fin)
return _f
@pytest.fixture
async def sqs_queue_url(sqs_client):
response = await sqs_client.create_queue(QueueName=random_name())
queue_url = response['QueueUrl']
assert_status_code(response, 200)
try:
yield queue_url
finally:
response = await sqs_client.delete_queue(QueueUrl=queue_url)
assert_status_code(response, 200)
@pytest.fixture
async def exit_stack():
async with AsyncExitStack() as es:
yield es
pytest_plugins = ['tests.mock_server']
|