forked from Azure/azure-event-hubs-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
236 lines (190 loc) · 7.65 KB
/
conftest.py
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
#-------------------------------------------------------------------------
# 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 pytest
import logging
import sys
import uuid
# Ignore async tests for Python < 3.5
collect_ignore = []
if sys.version_info < (3, 5):
collect_ignore.append("tests/asynctests")
collect_ignore.append("features")
else:
from tests.asynctests import MockEventProcessor
from azure.eventprocessorhost import EventProcessorHost
from azure.eventprocessorhost import EventHubPartitionPump
from azure.eventprocessorhost import AzureStorageCheckpointLeaseManager
from azure.eventprocessorhost import AzureBlobLease
from azure.eventprocessorhost import EventHubConfig
from azure.eventprocessorhost.lease import Lease
from azure.eventprocessorhost.partition_pump import PartitionPump
from azure.eventprocessorhost.partition_manager import PartitionManager
from tests import get_logger
from azure import eventhub
from azure.eventhub import EventHubClient, Receiver, Offset
log = get_logger(None, logging.DEBUG)
def create_eventhub(eventhub_config, client=None):
from azure.servicebus.control_client import ServiceBusService, EventHub
hub_name = str(uuid.uuid4())
hub_value = EventHub(partition_count=2)
client = client or ServiceBusService(
service_namespace=eventhub_config['namespace'],
shared_access_key_name=eventhub_config['key_name'],
shared_access_key_value=eventhub_config['access_key'])
if client.create_event_hub(hub_name, hub=hub_value, fail_on_exist=True):
return hub_name
raise ValueError("EventHub creation failed.")
def cleanup_eventhub(servicebus_config, hub_name, client=None):
from azure.servicebus.control_client import ServiceBusService
client = client or ServiceBusService(
service_namespace=eventhub_config['namespace'],
shared_access_key_name=eventhub_config['key_name'],
shared_access_key_value=eventhub_config['access_key'])
client.delete_event_hub(hub_name)
@pytest.fixture()
def live_eventhub_config():
try:
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['namespace'] = os.environ['EVENT_HUB_NAMESPACE']
config['consumer_group'] = "$Default"
config['partition'] = "0"
except KeyError:
pytest.skip("Live EventHub configuration not found.")
else:
return config
@pytest.fixture()
def live_eventhub(live_eventhub_config): # pylint: disable=redefined-outer-name
from azure.servicebus.control_client import ServiceBusService
client = ServiceBusService(
service_namespace=live_eventhub_config['namespace'],
shared_access_key_name=live_eventhub_config['key_name'],
shared_access_key_value=live_eventhub_config['access_key'])
try:
hub_name = create_eventhub(live_eventhub_config, client=client)
print("Created EventHub {}".format(hub_name))
live_eventhub_config['event_hub'] = hub_name
yield live_eventhub_config
finally:
cleanup_eventhub(live_eventhub_config, hub_name, client=client)
print("Deleted EventHub {}".format(hub_name))
@pytest.fixture()
def connection_str(live_eventhub):
return "Endpoint=sb://{}/;SharedAccessKeyName={};SharedAccessKey={};EntityPath={}".format(
live_eventhub['hostname'],
live_eventhub['key_name'],
live_eventhub['access_key'],
live_eventhub['event_hub'])
@pytest.fixture()
def invalid_hostname(live_eventhub_config):
return "Endpoint=sb://invalid123.servicebus.windows.net/;SharedAccessKeyName={};SharedAccessKey={};EntityPath={}".format(
live_eventhub_config['key_name'],
live_eventhub_config['access_key'],
live_eventhub_config['event_hub'])
@pytest.fixture()
def invalid_key(live_eventhub_config):
return "Endpoint=sb://{}/;SharedAccessKeyName={};SharedAccessKey=invalid;EntityPath={}".format(
live_eventhub_config['hostname'],
live_eventhub_config['key_name'],
live_eventhub_config['event_hub'])
@pytest.fixture()
def invalid_policy(live_eventhub_config):
return "Endpoint=sb://{}/;SharedAccessKeyName=invalid;SharedAccessKey={};EntityPath={}".format(
live_eventhub_config['hostname'],
live_eventhub_config['access_key'],
live_eventhub_config['event_hub'])
@pytest.fixture()
def iot_connection_str():
try:
return os.environ['IOTHUB_CONNECTION_STR']
except KeyError:
pytest.skip("No IotHub connection string found.")
@pytest.fixture()
def device_id():
try:
return os.environ['IOTHUB_DEVICE']
except KeyError:
pytest.skip("No Iothub device ID found.")
@pytest.fixture()
def connstr_receivers(connection_str):
client = EventHubClient.from_connection_string(connection_str, debug=False)
eh_hub_info = client.get_eventhub_info()
partitions = eh_hub_info["partition_ids"]
recv_offset = Offset("@latest")
receivers = []
for p in partitions:
receivers.append(client.add_receiver("$default", p, prefetch=500, offset=Offset("@latest")))
client.run()
for r in receivers:
r.receive(timeout=1)
yield connection_str, receivers
client.stop()
@pytest.fixture()
def connstr_senders(connection_str):
client = EventHubClient.from_connection_string(connection_str, debug=True)
eh_hub_info = client.get_eventhub_info()
partitions = eh_hub_info["partition_ids"]
senders = []
for p in partitions:
senders.append(client.add_sender(partition=p))
client.run()
yield connection_str, senders
client.stop()
@pytest.fixture()
def storage_clm(eph):
try:
container = str(uuid.uuid4())
storage_clm = AzureStorageCheckpointLeaseManager(
os.environ['AZURE_STORAGE_ACCOUNT'],
os.environ['AZURE_STORAGE_ACCESS_KEY'],
container)
except KeyError:
pytest.skip("Live Storage configuration not found.")
try:
storage_clm.initialize(eph)
storage_clm.storage_client.create_container(container)
yield storage_clm
finally:
storage_clm.storage_client.delete_container(container)
@pytest.fixture()
def eph():
try:
storage_clm = AzureStorageCheckpointLeaseManager(
os.environ['AZURE_STORAGE_ACCOUNT'],
os.environ['AZURE_STORAGE_ACCESS_KEY'],
"lease")
NAMESPACE = os.environ.get('EVENT_HUB_NAMESPACE')
EVENTHUB = os.environ.get('EVENT_HUB_NAME')
USER = os.environ.get('EVENT_HUB_SAS_POLICY')
KEY = os.environ.get('EVENT_HUB_SAS_KEY')
eh_config = EventHubConfig(NAMESPACE, EVENTHUB, USER, KEY, consumer_group="$default")
host = EventProcessorHost(
MockEventProcessor,
eh_config,
storage_clm)
except KeyError:
pytest.skip("Live EventHub configuration not found.")
return host
@pytest.fixture()
def eh_partition_pump(eph):
lease = AzureBlobLease()
lease.with_partition_id("1")
partition_pump = EventHubPartitionPump(eph, lease)
return partition_pump
@pytest.fixture()
def partition_pump(eph):
lease = Lease()
lease.with_partition_id("1")
partition_pump = PartitionPump(eph, lease)
return partition_pump
@pytest.fixture()
def partition_manager(eph):
partition_manager = PartitionManager(eph)
return partition_manager