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
|
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
import os
import logging
import asyncio
import time
from datetime import timedelta
import pytest
import sys
import types
import collections
import uamqp
from uamqp import types as uamqp_types, utils, authentication, constants
_AccessToken = collections.namedtuple("AccessToken", "token expires_on")
def get_logger(level):
uamqp_logger = logging.getLogger("uamqp")
if not uamqp_logger.handlers:
handler = logging.StreamHandler(stream=sys.stdout)
handler.setFormatter(logging.Formatter('%(asctime)s %(name)-12s %(levelname)-8s %(message)s'))
uamqp_logger.addHandler(handler)
uamqp_logger.setLevel(level)
return uamqp_logger
log = get_logger(logging.INFO)
@pytest.mark.asyncio
async def test_event_hubs_client_send_async(live_eventhub_config):
properties = {b"SendData": b"Property_String_Value_1"}
msg_content = b"hello world"
message = uamqp.Message(msg_content, application_properties=properties)
plain_auth = authentication.SASLPlain(live_eventhub_config['hostname'], live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=plain_auth, debug=False)
send_client.queue_message(message)
results = await send_client.send_all_messages_async()
assert not [m for m in results if m == uamqp.constants.MessageState.SendFailed]
@pytest.mark.asyncio
async def test_event_hubs_single_send_async(live_eventhub_config):
annotations={b"x-opt-partition-key": b"PartitionKeyInfo"}
msg_content = b"hello world"
message = uamqp.Message(msg_content, annotations=annotations)
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
sas_auth = authentication.SASTokenAsync.from_shared_access_key(uri, live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=sas_auth, debug=False)
for _ in range(10):
message = uamqp.Message(msg_content, application_properties=annotations, annotations=annotations)
await send_client.send_message_async(message)
await send_client.close_async()
@pytest.mark.asyncio
async def test_event_hubs_async_sender_sync(live_eventhub_config):
annotations={b"x-opt-partition-key": b"PartitionKeyInfo"}
msg_content = b"hello world"
message = uamqp.Message(msg_content, annotations=annotations)
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
sas_auth = authentication.SASTokenAsync.from_shared_access_key(uri, live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=sas_auth, debug=False)
for _ in range(10):
message = uamqp.Message(msg_content, application_properties=annotations, annotations=annotations)
send_client.send_message(message)
send_client.close()
@pytest.mark.asyncio
async def test_event_hubs_client_send_multiple_async(live_eventhub_config):
properties = {b"SendData": b"Property_String_Value_1"}
msg_content = b"hello world"
plain_auth = authentication.SASLPlain(live_eventhub_config['hostname'], live_eventhub_config['key_name'], live_eventhub_config['access_key'])
assert not plain_auth.consumed
target = "amqps://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=plain_auth, debug=False)
messages = []
for i in range(10):
messages.append(uamqp.Message(msg_content, application_properties=properties))
send_client.queue_message(*messages)
assert len(send_client.pending_messages) == 10
results = await send_client.send_all_messages_async()
assert len(results) == 10
assert not [m for m in results if m == uamqp.constants.MessageState.SendFailed]
assert plain_auth.consumed
assert send_client.pending_messages == []
@pytest.mark.asyncio
async def test_event_hubs_batch_send_async(live_eventhub_config):
for _ in range(10):
def data_generator():
for i in range(50):
msg_content = "Hello world {}".format(i).encode('utf-8')
yield msg_content
message_batch = uamqp.message.BatchMessage(data_generator())
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
sas_auth = authentication.SASTokenAsync.from_shared_access_key(uri, live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}/Partitions/0".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=sas_auth, debug=False)
send_client.queue_message(message_batch)
results = await send_client.send_all_messages_async()
assert not [m for m in results if m == uamqp.constants.MessageState.SendFailed]
@pytest.mark.asyncio
async def test_event_hubs_send_timeout_async(live_eventhub_config):
async def _hack_client_run(cls):
"""MessageSender Link is now open - perform message send
on all pending messages.
Will return True if operation successful and client can remain open for
further work.
:rtype: bool
"""
# pylint: disable=protected-access
await asyncio.sleep(6)
await cls.message_handler.work_async()
cls._waiting_messages = 0
cls._pending_messages = cls._filter_pending()
if cls._backoff and not cls._waiting_messages:
log.info("Client told to backoff - sleeping for %r seconds", cls._backoff)
await cls._connection.sleep_async(cls._backoff)
cls._backoff = 0
await cls._connection.work_async()
return True
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
sas_auth = authentication.SASTokenAsync.from_shared_access_key(
uri, live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}/Partitions/0".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=sas_auth, debug=False, msg_timeout=5000)
send_client._client_run_async = types.MethodType(_hack_client_run, send_client)
await send_client.open_async()
with pytest.raises(uamqp.errors.ClientMessageError):
await send_client.send_message_async(uamqp.message.Message(body='Hello World'))
await send_client.close_async()
@pytest.mark.asyncio
async def test_event_hubs_custom_end_point():
sas_token = authentication.SASTokenAsync("fake_audience", "fake_uri", "fake_token", expires_in=timedelta(10), custom_endpoint_hostname="123.45.67.89")
assert sas_token.hostname == b"123.45.67.89"
sas_token = authentication.SASTokenAsync.from_shared_access_key("fake_uri", "fake_key_name", "fake_key", custom_endpoint_hostname="123.45.67.89")
assert sas_token.hostname == b"123.45.67.89"
async def fake_get_token():
return "fake get token"
jwt_token = authentication.JWTTokenAsync("fake_audience", "fake_uri", fake_get_token, custom_endpoint_hostname="123.45.67.89")
assert jwt_token.hostname == b"123.45.67.89"
@pytest.mark.asyncio
async def test_event_hubs_idempotent_producer(live_eventhub_config):
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
sas_auth = authentication.SASTokenAsync.from_shared_access_key(
uri, live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}/Partitions/0".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
symbol_array = [uamqp_types.AMQPSymbol(b"com.microsoft:idempotent-producer")]
desired_capabilities = utils.data_factory(uamqp_types.AMQPArray(symbol_array))
link_properties = {
uamqp_types.AMQPSymbol(b"com.microsoft:timeout"): uamqp_types.AMQPLong(int(60 * 1000))
}
def on_attach(attach_source, attach_target, properties, error):
if str(attach_target) == target:
on_attach.owner_level = properties.get(b"com.microsoft:producer-epoch")
on_attach.producer_group_id = properties.get(b"com.microsoft:producer-id")
on_attach.starting_sequence_number = properties.get(b"com.microsoft:producer-sequence-number")
send_client = uamqp.SendClientAsync(
target,
auth=sas_auth,
desired_capabilities=desired_capabilities,
link_properties=link_properties,
on_attach=on_attach,
debug=True
)
await send_client.open_async()
while not await send_client.client_ready_async():
await asyncio.sleep(0.05)
assert on_attach.owner_level is not None
assert on_attach.producer_group_id is not None
assert on_attach.starting_sequence_number is not None
await send_client.close_async()
@pytest.mark.asyncio
async def test_event_hubs_send_large_message_after_socket_lost(live_eventhub_config):
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
sas_auth = authentication.SASTokenAsync.from_shared_access_key(
uri, live_eventhub_config['key_name'], live_eventhub_config['access_key'])
target = "amqps://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
send_client = uamqp.SendClientAsync(target, auth=sas_auth, debug=True)
try:
await send_client.open_async()
while not await send_client.client_ready_async():
await send_client.do_work_async()
# the connection idle timeout setting on the EH service is 240s, after 240s no activity
# on the connection, the service would send detach to the client, the underlying socket on the client
# is still able to work to receive the frame.
# HOWEVER, after no activity on the client socket > 300s, the underlying socket would get completely lost:
# the socket reports "Failure: sending socket failed 10054" on windows
# or "Failure: sending socket failed. errno=104" on linux which indicates the socket is lost
await asyncio.sleep(350)
with pytest.raises(uamqp.errors.AMQPConnectionError):
await send_client.send_message_async(uamqp.message.Message(b't'*1024*700))
finally:
await send_client.close_async()
@pytest.mark.asyncio
async def test_event_hubs_send_override_token_refresh_window(live_eventhub_config):
uri = "sb://{}/{}".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
target = "amqps://{}/{}/Partitions/0".format(live_eventhub_config['hostname'], live_eventhub_config['event_hub'])
token = None
async def get_token():
nonlocal token
return _AccessToken(token, expiry)
jwt_auth = authentication.JWTTokenAsync(
uri,
uri,
get_token,
refresh_window=300 # set refresh window to be 5 mins
)
send_client = uamqp.SendClientAsync(target, auth=jwt_auth, debug=False)
# use token of which the valid remaining time < refresh window
expiry = int(time.time()) + (60 * 4 + 30) # 4.5 minutes
token = utils.create_sas_token(
live_eventhub_config['key_name'].encode(),
live_eventhub_config['access_key'].encode(),
uri.encode(),
expiry=timedelta(minutes=4, seconds=30)
)
for _ in range(3):
message = uamqp.message.Message(body='Hello World')
await send_client.send_message_async(message)
auth_status = constants.CBSAuthStatus(jwt_auth._cbs_auth.get_status())
assert auth_status == constants.CBSAuthStatus.RefreshRequired
# update token, the valid remaining time > refresh window
expiry = int(time.time()) + (60 * 5 + 30) # 5.5 minutes
token = utils.create_sas_token(
live_eventhub_config['key_name'].encode(),
live_eventhub_config['access_key'].encode(),
uri.encode(),
expiry=timedelta(minutes=5, seconds=30)
)
for _ in range(3):
message = uamqp.message.Message(body='Hello World')
await send_client.send_message_async(message)
auth_status = constants.CBSAuthStatus(jwt_auth._cbs_auth.get_status())
assert auth_status == constants.CBSAuthStatus.Ok
await send_client.close_async()
if __name__ == '__main__':
config = {}
config['hostname'] = os.environ['EVENT_HUB_HOSTNAME']
config['event_hub'] = os.environ['EVENT_HUB_NAME']
config['key_name'] = os.environ['EVENT_HUB_SAS_POLICY']
config['access_key'] = os.environ['EVENT_HUB_SAS_KEY']
config['consumer_group'] = "$Default"
config['partition'] = "0"
loop = asyncio.get_event_loop()
loop.run_until_complete(test_event_hubs_send_override_token_refresh_window(config))
|