forked from newrelic/newrelic-python-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_pika_produce.py
420 lines (352 loc) · 13.6 KB
/
test_pika_produce.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
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
# Copyright 2010 New Relic, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pika
import pytest
from testing_support.db_settings import rabbitmq_settings
from testing_support.fixtures import override_application_settings
from testing_support.validators.validate_messagebroker_headers import (
validate_messagebroker_headers,
)
from testing_support.validators.validate_transaction_metrics import (
validate_transaction_metrics,
)
from testing_support.validators.validate_tt_collector_json import (
validate_tt_collector_json,
)
from newrelic.api.background_task import background_task
from newrelic.api.transaction import current_transaction
from newrelic.common.object_wrapper import transient_function_wrapper
@transient_function_wrapper(pika.frame, "Header.__init__")
def cache_pika_headers(wrapped, instance, args, kwargs):
transaction = current_transaction()
if transaction is None:
return wrapped(*args, **kwargs)
ret = wrapped(*args, **kwargs)
headers = instance.properties.headers
transaction._test_request_headers = headers
return ret
DB_SETTINGS = rabbitmq_settings()[0]
QUEUE = "test-pika-queue"
CORRELATION_ID = "testingpika"
REPLY_TO = "testing"
HEADERS = {"MYHEADER": "pikatest"}
_message_broker_tt_included_params = {
"routing_key": QUEUE,
}
_message_broker_tt_forgone_params = ["queue_name", "correlation_id", "reply_to"]
_test_blocking_connection_metrics = [
("MessageBroker/RabbitMQ/Exchange/Produce/Named/Default", 2),
("MessageBroker/RabbitMQ/Exchange/Consume/Named/Default", None),
]
@validate_transaction_metrics(
"test_pika_produce:test_blocking_connection",
scoped_metrics=_test_blocking_connection_metrics,
rollup_metrics=_test_blocking_connection_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_params,
message_broker_forgone_params=_message_broker_tt_forgone_params,
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_blocking_connection(producer):
with pika.BlockingConnection(pika.ConnectionParameters(DB_SETTINGS["host"])) as connection:
channel = connection.channel()
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
)
# publish has been removed and replaced with basic_publish in later
# versions of pika
publish = getattr(channel, "publish", channel.basic_publish)
publish(
exchange="",
routing_key=QUEUE,
body="test",
)
_message_broker_tt_included_test_correlation_id = _message_broker_tt_included_params.copy()
_message_broker_tt_included_test_correlation_id.update(
{
"correlation_id": CORRELATION_ID,
}
)
_message_broker_tt_forgone_test_correlation_id = ["queue_name", "reply_to", "headers"]
@validate_transaction_metrics(
"test_pika_produce:test_blocking_connection_correlation_id",
scoped_metrics=_test_blocking_connection_metrics,
rollup_metrics=_test_blocking_connection_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_test_correlation_id,
message_broker_forgone_params=(_message_broker_tt_forgone_test_correlation_id),
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_blocking_connection_correlation_id(producer):
with pika.BlockingConnection(pika.ConnectionParameters(DB_SETTINGS["host"])) as connection:
channel = connection.channel()
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=pika.spec.BasicProperties(correlation_id=CORRELATION_ID),
)
# publish has been removed and replaced with basic_publish in later
# versions of pika
publish = getattr(channel, "publish", channel.basic_publish)
publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=pika.spec.BasicProperties(correlation_id=CORRELATION_ID),
)
_message_broker_tt_included_test_reply_to = _message_broker_tt_included_params.copy()
_message_broker_tt_included_test_reply_to.update(
{
"reply_to": REPLY_TO,
}
)
_message_broker_tt_forgone_test_reply_to = ["queue_name", "correlation_id", "headers"]
@validate_transaction_metrics(
"test_pika_produce:test_blocking_connection_reply_to",
scoped_metrics=_test_blocking_connection_metrics,
rollup_metrics=_test_blocking_connection_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_test_reply_to,
message_broker_forgone_params=_message_broker_tt_forgone_test_reply_to,
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_blocking_connection_reply_to(producer):
with pika.BlockingConnection(pika.ConnectionParameters(DB_SETTINGS["host"])) as connection:
channel = connection.channel()
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=pika.spec.BasicProperties(reply_to=REPLY_TO),
)
# publish has been removed and replaced with basic_publish in later
# versions of pika
publish = getattr(channel, "publish", channel.basic_publish)
publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=pika.spec.BasicProperties(reply_to=REPLY_TO),
)
_message_broker_tt_included_test_headers = _message_broker_tt_included_params.copy()
_message_broker_tt_included_test_headers.update(
{
"headers": HEADERS.copy(),
}
)
_message_broker_tt_forgone_test_headers = ["queue_name", "correlation_id", "reply_to"]
@pytest.mark.parametrize("enable_distributed_tracing", [True, False])
def test_blocking_connection_headers(enable_distributed_tracing):
override_settings = {
"distributed_tracing.enabled": enable_distributed_tracing,
"cross_application_tracer.enabled": not enable_distributed_tracing,
}
rollup_metrics = list(_test_blocking_connection_metrics)
if enable_distributed_tracing:
rollup_metrics += [
("DurationByCaller/Unknown/Unknown/Unknown/Unknown/all", 1),
("DurationByCaller/Unknown/Unknown/Unknown/Unknown/allOther", 1),
]
@override_application_settings(override_settings)
@validate_transaction_metrics(
"test_blocking_connection_headers",
scoped_metrics=_test_blocking_connection_metrics,
rollup_metrics=rollup_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_test_headers,
message_broker_forgone_params=_message_broker_tt_forgone_test_headers,
)
@background_task(name="test_blocking_connection_headers")
@validate_messagebroker_headers
@cache_pika_headers
def _test():
with pika.BlockingConnection(pika.ConnectionParameters(DB_SETTINGS["host"])) as connection:
channel = connection.channel()
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=pika.spec.BasicProperties(headers=HEADERS),
)
# publish has been removed and replaced with basic_publish in later
# versions of pika
publish = getattr(channel, "publish", channel.basic_publish)
publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=pika.spec.BasicProperties(headers=HEADERS),
)
_test()
@validate_transaction_metrics(
"test_pika_produce:test_blocking_connection_headers_reuse_properties",
scoped_metrics=_test_blocking_connection_metrics,
rollup_metrics=_test_blocking_connection_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_test_headers,
message_broker_forgone_params=_message_broker_tt_forgone_test_headers,
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_blocking_connection_headers_reuse_properties(producer):
with pika.BlockingConnection(pika.ConnectionParameters(DB_SETTINGS["host"])) as connection:
channel = connection.channel()
properties = pika.spec.BasicProperties(headers=HEADERS)
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=properties,
)
# publish has been removed and replaced with basic_publish in later
# versions of pika
publish = getattr(channel, "publish", channel.basic_publish)
publish(
exchange="",
routing_key=QUEUE,
body="test",
properties=properties,
)
_test_blocking_connection_two_exchanges_metrics = [
("MessageBroker/RabbitMQ/Exchange/Produce/Named/exchange-1", 1),
("MessageBroker/RabbitMQ/Exchange/Produce/Named/exchange-2", 1),
("MessageBroker/RabbitMQ/Exchange/Consume/Named/exchange-1", None),
("MessageBroker/RabbitMQ/Exchange/Consume/Named/exchange-2", None),
]
@validate_transaction_metrics(
"test_pika_produce:test_blocking_connection_two_exchanges",
scoped_metrics=_test_blocking_connection_two_exchanges_metrics,
rollup_metrics=_test_blocking_connection_two_exchanges_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_params,
message_broker_forgone_params=_message_broker_tt_forgone_params,
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_blocking_connection_two_exchanges():
with pika.BlockingConnection(pika.ConnectionParameters(DB_SETTINGS["host"])) as connection:
channel = connection.channel()
channel.queue_declare(queue=QUEUE)
channel.exchange_declare(exchange="exchange-1", durable=False, auto_delete=True)
channel.exchange_declare(exchange="exchange-2", durable=False, auto_delete=True)
channel.basic_publish(
exchange="exchange-1",
routing_key=QUEUE,
body="test",
)
channel.basic_publish(
exchange="exchange-2",
routing_key=QUEUE,
body="test",
)
_test_select_connection_metrics = [
("MessageBroker/RabbitMQ/Exchange/Produce/Named/Default", 1),
("MessageBroker/RabbitMQ/Exchange/Consume/Named/Default", None),
]
@validate_transaction_metrics(
"test_pika_produce:test_select_connection",
scoped_metrics=_test_select_connection_metrics,
rollup_metrics=_test_select_connection_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_params,
message_broker_forgone_params=_message_broker_tt_forgone_params,
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_select_connection():
def on_open(connection):
connection.channel(on_open_callback=on_channel_open)
def on_channel_open(channel):
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
)
connection.close()
connection.ioloop.stop()
parameters = pika.ConnectionParameters(DB_SETTINGS["host"])
connection = pika.SelectConnection(parameters=parameters, on_open_callback=on_open)
try:
connection.ioloop.start()
except:
connection.close()
# Start the IOLoop again so Pika can communicate, it will stop on its
# own when the connection is closed
connection.ioloop.start()
raise
_test_tornado_connection_metrics = [
("MessageBroker/RabbitMQ/Exchange/Produce/Named/Default", 1),
("MessageBroker/RabbitMQ/Exchange/Consume/Named/Default", None),
]
@validate_transaction_metrics(
"test_pika_produce:test_tornado_connection",
scoped_metrics=_test_tornado_connection_metrics,
rollup_metrics=_test_tornado_connection_metrics,
background_task=True,
)
@validate_tt_collector_json(
message_broker_params=_message_broker_tt_included_params,
message_broker_forgone_params=_message_broker_tt_forgone_params,
)
@background_task()
@validate_messagebroker_headers
@cache_pika_headers
def test_tornado_connection():
from pika.adapters import tornado_connection
def on_open(connection):
connection.channel(on_open_callback=on_channel_open)
def on_channel_open(channel):
channel.basic_publish(
exchange="",
routing_key=QUEUE,
body="test",
)
connection.close()
connection.ioloop.stop()
parameters = pika.ConnectionParameters(DB_SETTINGS["host"])
connection = tornado_connection.TornadoConnection(parameters=parameters, on_open_callback=on_open)
try:
connection.ioloop.start()
except:
connection.close()
# Start the IOLoop again so Pika can communicate, it will stop on its
# own when the connection is closed
connection.ioloop.start()
raise