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 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
from typing import List, TypedDict, Union, cast
from typing import Dict, Any
from tracing_common import FakeSpan
from devtools_testutils import (
get_region_override,
get_credential as get_devtools_credential,
)
from azure.eventhub.extensions.checkpointstoreblobaio import (
BlobCheckpointStore as BlobCheckpointStoreAsync,
)
from azure.eventhub.extensions.checkpointstoreblob import BlobCheckpointStore
from azure.eventhub._pyamqp.authentication import SASTokenAuth
from azure.eventhub._pyamqp import ReceiveClient
from azure.eventhub import EventHubProducerClient, TransportType
from azure.mgmt.eventhub import EventHubManagementClient
from azure.core.settings import settings
from logging.handlers import RotatingFileHandler
from functools import partial
from typing import Callable, Literal
import sys
import os
import tempfile
import pytest
import logging
import uuid
import warnings
import subprocess
import time
import signal
import ssl
import functools
# Load environment variables from .env file automatically for all tests
from dotenv import load_dotenv
load_dotenv()
try:
import uamqp
uamqp_transport_params = [True, False]
uamqp_transport_ids = ["uamqp", "pyamqp"]
except (ModuleNotFoundError, ImportError):
uamqp_transport_params = [False]
uamqp_transport_ids = ["pyamqp"]
socket_transports = [TransportType.Amqp, TransportType.AmqpOverWebsocket]
socket_transport_ids = ["amqp", "ws"]
collect_ignore = []
PARTITION_COUNT = 2
CONN_STR = "Endpoint=sb://{}/;SharedAccessKeyName={};SharedAccessKey={};EntityPath={}"
RES_GROUP_PREFIX = "eh-res-group"
NAMESPACE_PREFIX = "eh-ns"
EVENTHUB_PREFIX = "eh"
EVENTHUB_DEFAULT_AUTH_RULE_NAME = "RootManageSharedAccessKey"
LOCATION = get_region_override("westus")
@pytest.fixture(scope="function")
def faultinjector(live_eventhub, request: pytest.FixtureRequest):
test_name = request.node.name
faultinjector_params = cast(List[str], request.param["faultinjector_args"])
if os.environ.get("USE_FAULTINJECTOR") != "true":
pytest.skip(
"Fault injector not enabled. See conftest.py::faultinjector for requirements."
)
yield
return
env_path = os.environ.get("FAULTINJECTOR_PATH")
faultinjector_path = os.path.abspath(env_path) if env_path else None
logs_dir = os.path.join(os.path.dirname(__file__), "faultinjector_logs", test_name)
os.makedirs(logs_dir, exist_ok=True)
print("Setting up fault injector")
# Start the faultinjector process
faultinjector_params.extend(
["--host", live_eventhub["hostname"], "--logs", logs_dir, "--cert", logs_dir]
)
print("fault injector arguments", *faultinjector_params)
process = subprocess.Popen(
[
faultinjector_path,
*faultinjector_params,
],
stdout=sys.stdout,
stderr=sys.stderr,
preexec_fn=os.setsid,
)
if not process:
raise RuntimeError(f"Failed to start faultinjector. See output for details.")
try:
time.sleep(1)
yield AMQPPROXY_CLIENT_ARGS
print(f"===> Fault injector logs are in '{logs_dir}'")
finally:
os.killpg(os.getpgid(process.pid), signal.SIGTERM)
process.wait()
# Set up the amqpproxy environment variables
amqpproxy_path = os.environ.get("AMQPPROXY_PATH")
AMQPPROXY_PATH = os.path.abspath(amqpproxy_path) if amqpproxy_path else None
RECORD_AMQP_PROXY = os.environ.get("RECORD_AMQP_PROXY") == "true"
AMQPPROXY_RECORDINGS_DIR = os.path.join(
os.path.dirname(__file__), "amqpproxy_recordings"
)
if RECORD_AMQP_PROXY:
if not os.path.exists(AMQPPROXY_RECORDINGS_DIR):
os.makedirs(AMQPPROXY_RECORDINGS_DIR)
# Create/overwrite the amqpproxy startup log file
AMQPPROXY_STARTUP_LOG = os.path.join(
AMQPPROXY_RECORDINGS_DIR, "amqpproxy_startup.log"
)
if os.path.exists(AMQPPROXY_STARTUP_LOG):
with open(AMQPPROXY_STARTUP_LOG, "w") as log_file:
log_file.write("") # Overwrite the file with an empty string
else:
# Create the file if it doesn't exist
open(AMQPPROXY_STARTUP_LOG, "w").close()
AMQPPROXY_CUSTOM_ENDPOINT_ADDRESS = "sb://localhost:5671"
AMQPPROXY_TRANSPORT_TYPE = TransportType.Amqp
context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
context.check_hostname = False
context.verify_mode = ssl.CERT_NONE
AMQPPROXY_SSL_CONTEXT = context
AMQPPROXY_CLIENT_ARGS = {
"custom_endpoint_address": AMQPPROXY_CUSTOM_ENDPOINT_ADDRESS,
"ssl_context": AMQPPROXY_SSL_CONTEXT,
"transport_type": AMQPPROXY_TRANSPORT_TYPE,
}
def pytest_addoption(parser):
parser.addoption(
"--sleep",
action="store",
default="True",
help="sleep on reconnect test: True or False",
)
@pytest.fixture
def sleep(request):
sleep = request.config.getoption("--sleep")
return sleep.lower() in ("true", "yes", "1", "y")
@pytest.fixture(scope="session", params=uamqp_transport_params, ids=uamqp_transport_ids)
def uamqp_transport(request):
return request.param
@pytest.fixture(scope="session", params=socket_transports, ids=socket_transport_ids)
def socket_transport(request):
return request.param
@pytest.fixture(scope="session")
def storage_url():
try:
account_name = os.environ["AZURE_STORAGE_ACCOUNT"]
return f"https://{account_name}.blob.core.windows.net"
except KeyError:
warnings.warn(UserWarning("AZURE_STORAGE_ACCOUNT undefined"))
pytest.skip("AZURE_STORAGE_ACCOUNT undefined")
return
@pytest.fixture()
def checkpoint_store(storage_url):
checkpoint_store = BlobCheckpointStore(
storage_url,
"blobcontainer" + str(uuid.uuid4()),
credential=get_devtools_credential(),
)
return checkpoint_store
@pytest.fixture()
def checkpoint_store_aio(storage_url):
checkpoint_store = BlobCheckpointStoreAsync(
storage_url,
"blobcontainer" + str(uuid.uuid4()),
credential=get_devtools_credential(is_async=True),
)
return checkpoint_store
def get_logger(filename, level=logging.INFO):
azure_logger = logging.getLogger("azure.eventhub")
azure_logger.setLevel(level)
uamqp_logger = logging.getLogger("uamqp")
uamqp_logger.setLevel(logging.INFO)
formatter = logging.Formatter("%(asctime)s %(name)-12s %(levelname)-8s %(message)s")
console_handler = logging.StreamHandler(stream=sys.stdout)
console_handler.setFormatter(formatter)
if not azure_logger.handlers:
azure_logger.addHandler(console_handler)
if not uamqp_logger.handlers:
uamqp_logger.addHandler(console_handler)
if filename:
file_handler = RotatingFileHandler(
filename, maxBytes=5 * 1024 * 1024, backupCount=2
)
file_handler.setFormatter(formatter)
azure_logger.addHandler(file_handler)
return azure_logger
log = get_logger(None, logging.DEBUG)
@pytest.fixture(scope="session")
def timeout_factor(uamqp_transport):
if uamqp_transport:
return 1000
else:
return 1
@pytest.fixture(scope="session")
def fake_span():
return FakeSpan
@pytest.fixture()
def enable_tracing(fake_span):
settings.tracing_implementation.set_value(fake_span)
yield fake_span
# MUST RESET TRACING IMPLEMENTATION TO NONE, ELSE ALL OTHER TESTS ADD TRACING
settings.tracing_implementation.set_value(None)
@pytest.fixture(scope="session")
def get_credential():
return get_devtools_credential
@pytest.fixture(scope="session")
def get_credential_async():
return partial(get_devtools_credential, is_async=True)
@pytest.fixture(scope="session")
def resource_group():
try:
resource_group_name = os.environ["EVENTHUB_RESOURCE_GROUP"]
except KeyError:
warnings.warn(UserWarning("EVENTHUB_RESOURCE_GROUP undefined - skipping test"))
pytest.skip("EVENTHUB_RESOURCE_GROUP defined")
return resource_group_name
@pytest.fixture(scope="session")
def eventhub_namespace(resource_group):
try:
SUBSCRIPTION_ID = os.environ["AZURE_SUBSCRIPTION_ID"]
except KeyError:
pytest.skip("AZURE_SUBSCRIPTION_ID defined")
return
base_url = os.environ.get(
"EVENTHUB_RESOURCE_MANAGER_URL", "https://management.azure.com/"
)
credential_scopes = ["{}.default".format(base_url)]
resource_client = EventHubManagementClient(
get_devtools_credential(),
SUBSCRIPTION_ID,
base_url=base_url,
credential_scopes=credential_scopes,
)
try:
namespace_name = os.environ["EVENT_HUB_NAMESPACE"]
except KeyError:
warnings.warn(UserWarning("EVENT_HUB_NAMESPACE undefined - skipping test"))
pytest.skip("EVENT_HUB_NAMESPACE defined")
key = resource_client.namespaces.list_keys(
resource_group, namespace_name, EVENTHUB_DEFAULT_AUTH_RULE_NAME
)
connection_string = key.primary_connection_string
key_name = key.key_name
primary_key = key.primary_key
return namespace_name, connection_string, key_name, primary_key
@pytest.fixture()
def live_eventhub(
resource_group, eventhub_namespace
): # pylint: disable=redefined-outer-name
try:
SUBSCRIPTION_ID = os.environ["AZURE_SUBSCRIPTION_ID"]
except KeyError:
warnings.warn(UserWarning("AZURE_SUBSCRIPTION_ID undefined - skipping test"))
pytest.skip("AZURE_SUBSCRIPTION_ID defined")
base_url = os.environ.get(
"EVENTHUB_RESOURCE_MANAGER_URL", "https://management.azure.com/"
)
credential_scopes = ["{}.default".format(base_url)]
resource_client = EventHubManagementClient(
get_devtools_credential(),
SUBSCRIPTION_ID,
base_url=base_url,
credential_scopes=credential_scopes,
)
eventhub_name = EVENTHUB_PREFIX + str(uuid.uuid4())
eventhub_ns_name, connection_string, key_name, primary_key = eventhub_namespace
eventhub_endpoint_suffix = os.environ.get(
"EVENT_HUB_ENDPOINT_SUFFIX", ".servicebus.windows.net"
)
try:
eventhub = resource_client.event_hubs.create_or_update(
resource_group,
eventhub_ns_name,
eventhub_name,
{"partition_count": PARTITION_COUNT},
)
live_eventhub_config = {
"resource_group": resource_group,
"hostname": "{}{}".format(eventhub_ns_name, eventhub_endpoint_suffix),
"key_name": key_name,
"access_key": primary_key,
"namespace": eventhub_ns_name,
"event_hub": eventhub.name,
"consumer_group": "$Default",
"partition": "0",
"connection_str": connection_string + ";EntityPath=" + eventhub.name,
}
yield live_eventhub_config
finally:
try:
resource_client.event_hubs.delete(
resource_group, eventhub_ns_name, eventhub_name
)
except:
warnings.warn(UserWarning("eventhub teardown failed"))
@pytest.fixture()
def resource_mgmt_client():
try:
SUBSCRIPTION_ID = os.environ["AZURE_SUBSCRIPTION_ID"]
except KeyError:
warnings.warn(UserWarning("AZURE_SUBSCRIPTION_ID undefined - skipping test"))
pytest.skip("AZURE_SUBSCRIPTION_ID defined")
base_url = os.environ.get(
"EVENTHUB_RESOURCE_MANAGER_URL", "https://management.azure.com/"
)
credential_scopes = ["{}.default".format(base_url)]
resource_client = EventHubManagementClient(
get_devtools_credential(),
SUBSCRIPTION_ID,
base_url=base_url,
credential_scopes=credential_scopes,
)
yield resource_client
@pytest.fixture()
def connection_str(live_eventhub):
return CONN_STR.format(
live_eventhub["hostname"],
live_eventhub["key_name"],
live_eventhub["access_key"],
live_eventhub["event_hub"],
)
@pytest.fixture()
def skip_amqp_proxy(request):
"""Helper method to determine if the AMQP proxy should be run for a test."""
if not RECORD_AMQP_PROXY or not AMQPPROXY_PATH:
return True
if any(marker.name == "no_amqpproxy" for marker in request.node.own_markers):
return True
return False
@pytest.fixture()
def client_args(skip_amqp_proxy):
"""Fixture that adds the amqpproxy client args to the test context."""
if skip_amqp_proxy:
return {}
# Add proxy args to test context
return AMQPPROXY_CLIENT_ARGS
def remove_existing_recordings(path, file_name):
"""Remove existing recordings for the test."""
# Remove any existing recordings for the test
for file in os.listdir(path):
if file.startswith(file_name) and file.endswith(".json"):
os.remove(os.path.join(path, file))
print(f"Removed existing recording: {file}")
def stop_existing_amqpproxy(log_file):
# Kill any existing process using the AMQP proxy port
try:
subprocess.run(
["fuser", "-k", "5671/tcp"], check=True, stdout=log_file, stderr=log_file
)
log_file.write("Kill existing process on port 5671.\n")
except subprocess.CalledProcessError:
log_file.write("No existing process found on port 5671.\n")
@pytest.fixture(autouse=True)
def amqpproxy(live_eventhub, skip_amqp_proxy, request):
"""Fixture that redirects network requests to target the amqp proxy.
Tests can opt out using @pytest.mark.no_amqpproxy or set the environment variable
RECORD_AMQP_PROXY=False.
"""
# Skip if not recording or test opted out
if skip_amqp_proxy:
yield
return
# Use test name as logfile
test_name = request.node.name
# Mirror relative path in AMQPPROXY_RECORDINGS_PATH for recording files
relative_path = os.path.relpath(
request.node.fspath, start=os.path.dirname(__file__)
)
recording_dir_path = os.path.join(
AMQPPROXY_RECORDINGS_DIR, os.path.dirname(relative_path)
)
file_name = os.path.splitext(os.path.basename(request.node.fspath))[0]
recording_file = f"{file_name}.{test_name}"
if not os.path.exists(recording_dir_path):
os.makedirs(recording_dir_path)
else:
# Remove any existing recordings with the same test name, so that we overwrite instead of add
remove_existing_recordings(recording_dir_path, recording_file)
# Start amqpproxy process
log_file = open(AMQPPROXY_STARTUP_LOG, "a")
# Flush log after writing to ensure log line ordering is preserved
log_file.write(f"####### Starting amqpproxy for test: {test_name}\n")
log_file.flush()
try:
# Navigate to the amqpproxy directory and run the proxy
os.chdir(AMQPPROXY_PATH)
stop_existing_amqpproxy(log_file)
# Start the AMQP proxy process
log_file.write("Starting amqpproxy process...\n")
log_file.flush()
proxy_process = subprocess.Popen(
[
"go",
"run",
".",
"--host",
live_eventhub["hostname"],
"--logs",
recording_dir_path,
"--logfile",
recording_file,
],
stdout=log_file,
stderr=log_file,
preexec_fn=os.setsid,
)
if not proxy_process:
log_file.write("Failed to start amqpproxy.\n")
raise RuntimeError(
f"Failed to start amqpproxy. Check for errors in {AMQPPROXY_STARTUP_LOG}"
)
try:
time.sleep(1)
# Add proxy args to test context
request.node.user_properties.append(("client_args", AMQPPROXY_CLIENT_ARGS))
yield
finally:
os.killpg(os.getpgid(proxy_process.pid), signal.SIGTERM)
proxy_process.wait()
finally:
log_file.write(f"####### Stopping amqpproxy for test: {test_name}\n")
log_file.flush()
log_file.close()
@pytest.fixture()
def invalid_hostname(live_eventhub):
return CONN_STR.format(
"invalid123.servicebus.windows.net",
live_eventhub["key_name"],
live_eventhub["access_key"],
live_eventhub["event_hub"],
)
@pytest.fixture()
def invalid_key(live_eventhub):
return CONN_STR.format(
live_eventhub["hostname"],
live_eventhub["key_name"],
"invalid",
live_eventhub["event_hub"],
)
@pytest.fixture()
def invalid_policy(live_eventhub):
return CONN_STR.format(
live_eventhub["hostname"],
"invalid",
live_eventhub["access_key"],
live_eventhub["event_hub"],
)
@pytest.fixture()
def connstr_receivers(live_eventhub, uamqp_transport, client_args):
connection_str = live_eventhub["connection_str"]
partitions = [str(i) for i in range(PARTITION_COUNT)]
receivers = []
for p in partitions:
uri = "sb://{}/{}".format(live_eventhub["hostname"], live_eventhub["event_hub"])
source = "amqps://{}/{}/ConsumerGroups/{}/Partitions/{}".format(
live_eventhub["hostname"],
live_eventhub["event_hub"],
live_eventhub["consumer_group"],
p,
)
if uamqp_transport:
sas_auth = uamqp.authentication.SASTokenAuth.from_shared_access_key(
uri, live_eventhub["key_name"], live_eventhub["access_key"]
)
receiver = uamqp.ReceiveClient(
source, auth=sas_auth, debug=False, timeout=0, prefetch=500
)
else:
sas_auth = SASTokenAuth(
uri, uri, live_eventhub["key_name"], live_eventhub["access_key"]
)
receiver = ReceiveClient(
live_eventhub["hostname"],
source,
auth=sas_auth,
network_trace=False,
timeout=0,
link_credit=500,
**client_args,
)
receiver.open()
receivers.append(receiver)
yield connection_str, receivers
for r in receivers:
r.close()
@pytest.fixture()
def auth_credentials(live_eventhub):
return (
live_eventhub["hostname"],
live_eventhub["event_hub"],
get_devtools_credential,
)
@pytest.fixture()
def auth_credentials_async(live_eventhub):
return (
live_eventhub["hostname"],
live_eventhub["event_hub"],
partial(get_devtools_credential, is_async=True),
)
@pytest.fixture()
def auth_credential_receivers(live_eventhub, uamqp_transport, client_args):
fully_qualified_namespace = live_eventhub["hostname"]
eventhub_name = live_eventhub["event_hub"]
partitions = [str(i) for i in range(PARTITION_COUNT)]
receivers = []
for p in partitions:
uri = "sb://{}/{}".format(live_eventhub["hostname"], live_eventhub["event_hub"])
source = "amqps://{}/{}/ConsumerGroups/{}/Partitions/{}".format(
live_eventhub["hostname"],
live_eventhub["event_hub"],
live_eventhub["consumer_group"],
p,
)
if uamqp_transport:
sas_auth = uamqp.authentication.SASTokenAuth.from_shared_access_key(
uri, live_eventhub["key_name"], live_eventhub["access_key"]
)
receiver = uamqp.ReceiveClient(
source, auth=sas_auth, debug=False, timeout=0, prefetch=500
)
else:
# TODO: TokenAuth should be fine?
sas_auth = SASTokenAuth(
uri, uri, live_eventhub["key_name"], live_eventhub["access_key"]
)
receiver = ReceiveClient(
live_eventhub["hostname"],
source,
auth=sas_auth,
network_trace=False,
timeout=30,
link_credit=500,
**client_args,
)
receiver.open()
receivers.append(receiver)
yield fully_qualified_namespace, eventhub_name, get_devtools_credential, receivers
for r in receivers:
r.close()
@pytest.fixture()
def auth_credential_receivers_async(live_eventhub, uamqp_transport, client_args):
fully_qualified_namespace = live_eventhub["hostname"]
eventhub_name = live_eventhub["event_hub"]
partitions = [str(i) for i in range(PARTITION_COUNT)]
receivers = []
for p in partitions:
uri = "sb://{}/{}".format(live_eventhub["hostname"], live_eventhub["event_hub"])
source = "amqps://{}/{}/ConsumerGroups/{}/Partitions/{}".format(
live_eventhub["hostname"],
live_eventhub["event_hub"],
live_eventhub["consumer_group"],
p,
)
if uamqp_transport:
sas_auth = uamqp.authentication.SASTokenAuth.from_shared_access_key(
uri, live_eventhub["key_name"], live_eventhub["access_key"]
)
receiver = uamqp.ReceiveClient(
source, auth=sas_auth, debug=False, timeout=0, prefetch=500
)
else:
# TODO: TokenAuth should be fine?
sas_auth = SASTokenAuth(
uri, uri, live_eventhub["key_name"], live_eventhub["access_key"]
)
receiver = ReceiveClient(
live_eventhub["hostname"],
source,
auth=sas_auth,
network_trace=False,
timeout=30,
link_credit=500,
**client_args,
)
receiver.open()
receivers.append(receiver)
yield fully_qualified_namespace, eventhub_name, partial(
get_devtools_credential, is_async=True
), receivers
for r in receivers:
r.close()
@pytest.fixture()
def auth_credential_senders(live_eventhub, uamqp_transport, client_args):
fully_qualified_namespace = live_eventhub["hostname"]
eventhub_name = live_eventhub["event_hub"]
client = EventHubProducerClient(
fully_qualified_namespace=fully_qualified_namespace,
eventhub_name=eventhub_name,
credential=get_devtools_credential(),
uamqp_transport=uamqp_transport,
**client_args,
)
partitions = client.get_partition_ids()
senders = []
for p in partitions:
sender = client._create_producer(partition_id=p)
senders.append(sender)
yield fully_qualified_namespace, eventhub_name, get_devtools_credential, senders
for s in senders:
s.close()
client.close()
@pytest.fixture()
def auth_credential_senders_async(live_eventhub, uamqp_transport, client_args):
fully_qualified_namespace = live_eventhub["hostname"]
eventhub_name = live_eventhub["event_hub"]
client = EventHubProducerClient(
fully_qualified_namespace=fully_qualified_namespace,
eventhub_name=eventhub_name,
credential=get_devtools_credential(),
uamqp_transport=uamqp_transport,
**client_args,
)
partitions = client.get_partition_ids()
senders = []
for p in partitions:
sender = client._create_producer(partition_id=p)
senders.append(sender)
yield fully_qualified_namespace, eventhub_name, partial(
get_devtools_credential, is_async=True
), senders
for s in senders:
s.close()
client.close()
# Note: This is duplicated between here and the basic conftest, so that it does not throw warnings if you're
# running locally to this SDK. (Everything works properly, pytest just makes a bit of noise.)
def pytest_configure(config):
# register an additional marker
config.addinivalue_line("markers", "liveTest: mark test to be a live test only")
config.addinivalue_line(
"markers", "no_amqpproxy: mark test to opt out of amqp proxy recording"
)
|