Skip to content

Commit 2aceed1

Browse files
authored
Merge branch 'main' into issue_547
2 parents 9a3b4af + ffc2a2f commit 2aceed1

File tree

17 files changed

+75
-77
lines changed

17 files changed

+75
-77
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'release/*'
77
pull_request:
88
env:
9-
CORE_REPO_SHA: 3e1c89bcae77c34b9750a1f00608a04a97921c51
9+
CORE_REPO_SHA: 9dc17e33bc083e38c1fd55b8ed6787caba8f54fe
1010

1111
jobs:
1212
build:

instrumentation/opentelemetry-instrumentation-aiopg/tests/test_aiopg_integration.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_instrumentor_connect(self):
6868
span = spans_list[0]
6969

7070
# Check version and name in span's instrumentation info
71-
self.check_span_instrumentation_info(
71+
self.assertEqualSpanInstrumentationInfo(
7272
span, opentelemetry.instrumentation.aiopg
7373
)
7474

@@ -97,7 +97,7 @@ async def _ctx_manager_connect():
9797
span = spans_list[0]
9898

9999
# Check version and name in span's instrumentation info
100-
self.check_span_instrumentation_info(
100+
self.assertEqualSpanInstrumentationInfo(
101101
span, opentelemetry.instrumentation.aiopg
102102
)
103103

@@ -118,7 +118,7 @@ def test_instrumentor_create_pool(self):
118118
span = spans_list[0]
119119

120120
# Check version and name in span's instrumentation info
121-
self.check_span_instrumentation_info(
121+
self.assertEqualSpanInstrumentationInfo(
122122
span, opentelemetry.instrumentation.aiopg
123123
)
124124

@@ -149,7 +149,7 @@ async def _ctx_manager_pool():
149149
span = spans_list[0]
150150

151151
# Check version and name in span's instrumentation info
152-
self.check_span_instrumentation_info(
152+
self.assertEqualSpanInstrumentationInfo(
153153
span, opentelemetry.instrumentation.aiopg
154154
)
155155

instrumentation/opentelemetry-instrumentation-botocore/tests/test_botocore_instrumentation.py

+13-13
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ def test_s3_client(self):
132132
assert spans
133133
span = spans[0]
134134
self.assertEqual(len(spans), 2)
135-
self.assertEqual(
136-
span.attributes,
135+
self.assertSpanHasAttributes(
136+
span,
137137
{
138138
"aws.operation": "ListBuckets",
139139
"aws.region": "us-west-2",
@@ -150,8 +150,8 @@ def test_s3_client(self):
150150
spans = self.memory_exporter.get_finished_spans()
151151
assert spans
152152
span = spans[2]
153-
self.assertEqual(
154-
span.attributes,
153+
self.assertSpanHasAttributes(
154+
span,
155155
{
156156
"aws.operation": "ListObjects",
157157
"aws.region": "us-west-2",
@@ -175,9 +175,9 @@ def test_s3_put(self):
175175
spans = self.memory_exporter.get_finished_spans()
176176
assert spans
177177
self.assertEqual(len(spans), 3)
178-
create_bucket_attributes = spans[0].attributes
179-
self.assertEqual(
180-
create_bucket_attributes,
178+
create_span = spans[0]
179+
self.assertSpanHasAttributes(
180+
create_span,
181181
{
182182
"aws.operation": "CreateBucket",
183183
"aws.region": "us-west-2",
@@ -186,9 +186,9 @@ def test_s3_put(self):
186186
SpanAttributes.HTTP_STATUS_CODE: 200,
187187
},
188188
)
189-
put_object_attributes = spans[1].attributes
190-
self.assertEqual(
191-
put_object_attributes,
189+
put_span = spans[1]
190+
self.assertSpanHasAttributes(
191+
put_span,
192192
{
193193
"aws.operation": "PutObject",
194194
"aws.region": "us-west-2",
@@ -198,9 +198,9 @@ def test_s3_put(self):
198198
},
199199
)
200200
self.assertTrue("params.Body" not in spans[1].attributes.keys())
201-
get_object_attributes = spans[2].attributes
202-
self.assertEqual(
203-
get_object_attributes,
201+
get_span = spans[2]
202+
self.assertSpanHasAttributes(
203+
get_span,
204204
{
205205
"aws.operation": "GetObject",
206206
"aws.region": "us-west-2",

instrumentation/opentelemetry-instrumentation-celery/tests/test_tasks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_task(self):
5050

5151
self.assertEqual(consumer.name, "run/tests.celery_test_tasks.task_add")
5252
self.assertEqual(consumer.kind, SpanKind.CONSUMER)
53-
self.assert_span_has_attributes(
53+
self.assertSpanHasAttributes(
5454
consumer,
5555
{
5656
"celery.action": "run",
@@ -64,7 +64,7 @@ def test_task(self):
6464
producer.name, "apply_async/tests.celery_test_tasks.task_add"
6565
)
6666
self.assertEqual(producer.kind, SpanKind.PRODUCER)
67-
self.assert_span_has_attributes(
67+
self.assertSpanHasAttributes(
6868
producer,
6969
{
7070
"celery.action": "apply_async",

instrumentation/opentelemetry-instrumentation-elasticsearch/tests/test_elasticsearch.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def test_instrumentor(self, request_mock):
7777
span = spans_list[0]
7878

7979
# Check version and name in span's instrumentation info
80-
# self.check_span_instrumentation_info(span, opentelemetry.instrumentation.elasticsearch)
81-
self.check_span_instrumentation_info(
80+
# self.assertEqualSpanInstrumentationInfo(span, opentelemetry.instrumentation.elasticsearch)
81+
self.assertEqualSpanInstrumentationInfo(
8282
span, opentelemetry.instrumentation.elasticsearch
8383
)
8484

@@ -289,7 +289,7 @@ def test_dsl_create(self, request_mock):
289289
"elasticsearch.url": "/test-index",
290290
"elasticsearch.method": "PUT",
291291
}
292-
self.assert_span_has_attributes(span2, attributes)
292+
self.assertSpanHasAttributes(span2, attributes)
293293
self.assertEqual(
294294
literal_eval(span2.attributes[SpanAttributes.DB_STATEMENT]),
295295
helpers.dsl_create_statement,
@@ -315,7 +315,7 @@ def test_dsl_index(self, request_mock):
315315
"elasticsearch.url": helpers.dsl_index_url,
316316
"elasticsearch.method": "PUT",
317317
}
318-
self.assert_span_has_attributes(span, attributes)
318+
self.assertSpanHasAttributes(span, attributes)
319319
self.assertEqual(
320320
literal_eval(span.attributes[SpanAttributes.DB_STATEMENT]),
321321
{

instrumentation/opentelemetry-instrumentation-falcon/tests/test_falcon.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def _test_method(self, method):
103103
span.name, "HelloWorldResource.on_{0}".format(method.lower())
104104
)
105105
self.assertEqual(span.status.status_code, StatusCode.UNSET)
106-
self.assert_span_has_attributes(
106+
self.assertSpanHasAttributes(
107107
span,
108108
{
109109
SpanAttributes.HTTP_METHOD: method,
@@ -128,7 +128,7 @@ def test_404(self):
128128
span = spans[0]
129129
self.assertEqual(span.name, "HTTP GET")
130130
self.assertEqual(span.status.status_code, StatusCode.ERROR)
131-
self.assert_span_has_attributes(
131+
self.assertSpanHasAttributes(
132132
span,
133133
{
134134
SpanAttributes.HTTP_METHOD: "GET",
@@ -159,7 +159,7 @@ def test_500(self):
159159
span.status.description,
160160
"NameError: name 'non_existent_var' is not defined",
161161
)
162-
self.assert_span_has_attributes(
162+
self.assertSpanHasAttributes(
163163
span,
164164
{
165165
SpanAttributes.HTTP_METHOD: "GET",

instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def client_response_hook(send_span, response):
222222
response_spans = spans[:2]
223223
for span in response_spans:
224224
self.assertEqual(span.name, "name from response hook")
225-
self.assert_span_has_attributes(
225+
self.assertSpanHasAttributes(
226226
span, {"attr-from-response-hook": "value"}
227227
)
228228

instrumentation/opentelemetry-instrumentation-grpc/tests/test_client_interceptor.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def test_unary_unary_future(self):
112112
self.assertIs(span.kind, trace.SpanKind.CLIENT)
113113

114114
# Check version and name in span's instrumentation info
115-
self.check_span_instrumentation_info(
115+
self.assertEqualSpanInstrumentationInfo(
116116
span, opentelemetry.instrumentation.grpc
117117
)
118118

@@ -126,11 +126,11 @@ def test_unary_unary(self):
126126
self.assertIs(span.kind, trace.SpanKind.CLIENT)
127127

128128
# Check version and name in span's instrumentation info
129-
self.check_span_instrumentation_info(
129+
self.assertEqualSpanInstrumentationInfo(
130130
span, opentelemetry.instrumentation.grpc
131131
)
132132

133-
self.assert_span_has_attributes(
133+
self.assertSpanHasAttributes(
134134
span,
135135
{
136136
SpanAttributes.RPC_METHOD: "SimpleMethod",
@@ -152,11 +152,11 @@ def test_unary_stream(self):
152152
self.assertIs(span.kind, trace.SpanKind.CLIENT)
153153

154154
# Check version and name in span's instrumentation info
155-
self.check_span_instrumentation_info(
155+
self.assertEqualSpanInstrumentationInfo(
156156
span, opentelemetry.instrumentation.grpc
157157
)
158158

159-
self.assert_span_has_attributes(
159+
self.assertSpanHasAttributes(
160160
span,
161161
{
162162
SpanAttributes.RPC_METHOD: "ServerStreamingMethod",
@@ -178,11 +178,11 @@ def test_stream_unary(self):
178178
self.assertIs(span.kind, trace.SpanKind.CLIENT)
179179

180180
# Check version and name in span's instrumentation info
181-
self.check_span_instrumentation_info(
181+
self.assertEqualSpanInstrumentationInfo(
182182
span, opentelemetry.instrumentation.grpc
183183
)
184184

185-
self.assert_span_has_attributes(
185+
self.assertSpanHasAttributes(
186186
span,
187187
{
188188
SpanAttributes.RPC_METHOD: "ClientStreamingMethod",
@@ -206,11 +206,11 @@ def test_stream_stream(self):
206206
self.assertIs(span.kind, trace.SpanKind.CLIENT)
207207

208208
# Check version and name in span's instrumentation info
209-
self.check_span_instrumentation_info(
209+
self.assertEqualSpanInstrumentationInfo(
210210
span, opentelemetry.instrumentation.grpc
211211
)
212212

213-
self.assert_span_has_attributes(
213+
self.assertSpanHasAttributes(
214214
span,
215215
{
216216
SpanAttributes.RPC_METHOD: "BidirectionalStreamingMethod",

instrumentation/opentelemetry-instrumentation-grpc/tests/test_server_interceptor.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ def handler(request, context):
106106
self.assertIs(span.kind, trace.SpanKind.SERVER)
107107

108108
# Check version and name in span's instrumentation info
109-
self.check_span_instrumentation_info(
109+
self.assertEqualSpanInstrumentationInfo(
110110
span, opentelemetry.instrumentation.grpc
111111
)
112112

113113
# Check attributes
114-
self.assert_span_has_attributes(
114+
self.assertSpanHasAttributes(
115115
span,
116116
{
117117
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -187,12 +187,12 @@ def test_create_span(self):
187187
self.assertIs(span.kind, trace.SpanKind.SERVER)
188188

189189
# Check version and name in span's instrumentation info
190-
self.check_span_instrumentation_info(
190+
self.assertEqualSpanInstrumentationInfo(
191191
span, opentelemetry.instrumentation.grpc
192192
)
193193

194194
# Check attributes
195-
self.assert_span_has_attributes(
195+
self.assertSpanHasAttributes(
196196
span,
197197
{
198198
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -257,12 +257,12 @@ def SimpleMethod(self, request, context):
257257
self.assertIs(parent_span.kind, trace.SpanKind.SERVER)
258258

259259
# Check version and name in span's instrumentation info
260-
self.check_span_instrumentation_info(
260+
self.assertEqualSpanInstrumentationInfo(
261261
parent_span, opentelemetry.instrumentation.grpc
262262
)
263263

264264
# Check attributes
265-
self.assert_span_has_attributes(
265+
self.assertSpanHasAttributes(
266266
parent_span,
267267
{
268268
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -317,12 +317,12 @@ def test_create_span_streaming(self):
317317
self.assertIs(span.kind, trace.SpanKind.SERVER)
318318

319319
# Check version and name in span's instrumentation info
320-
self.check_span_instrumentation_info(
320+
self.assertEqualSpanInstrumentationInfo(
321321
span, opentelemetry.instrumentation.grpc
322322
)
323323

324324
# Check attributes
325-
self.assert_span_has_attributes(
325+
self.assertSpanHasAttributes(
326326
span,
327327
{
328328
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -386,12 +386,12 @@ def ServerStreamingMethod(self, request, context):
386386
self.assertIs(parent_span.kind, trace.SpanKind.SERVER)
387387

388388
# Check version and name in span's instrumentation info
389-
self.check_span_instrumentation_info(
389+
self.assertEqualSpanInstrumentationInfo(
390390
parent_span, opentelemetry.instrumentation.grpc
391391
)
392392

393393
# Check attributes
394-
self.assert_span_has_attributes(
394+
self.assertSpanHasAttributes(
395395
parent_span,
396396
{
397397
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -490,7 +490,7 @@ def handler(request, context):
490490
self.assertIsNone(span2.parent)
491491

492492
# check attributes
493-
self.assert_span_has_attributes(
493+
self.assertSpanHasAttributes(
494494
span,
495495
{
496496
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -562,7 +562,7 @@ def handler(request, context):
562562
self.assertIsNone(span2.parent)
563563

564564
# check attributes
565-
self.assert_span_has_attributes(
565+
self.assertSpanHasAttributes(
566566
span,
567567
{
568568
SpanAttributes.NET_PEER_IP: "[::1]",
@@ -617,7 +617,7 @@ def handler(request, context):
617617
self.assertIs(span.kind, trace.SpanKind.SERVER)
618618

619619
# Check version and name in span's instrumentation info
620-
self.check_span_instrumentation_info(
620+
self.assertEqualSpanInstrumentationInfo(
621621
span, opentelemetry.instrumentation.grpc
622622
)
623623

@@ -631,7 +631,7 @@ def handler(request, context):
631631
)
632632

633633
# Check attributes
634-
self.assert_span_has_attributes(
634+
self.assertSpanHasAttributes(
635635
span,
636636
{
637637
SpanAttributes.NET_PEER_IP: "[::1]",

instrumentation/opentelemetry-instrumentation-httpx/tests/test_httpx_integration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def test_basic(self):
153153

154154
self.assertIs(span.status.status_code, trace.StatusCode.UNSET)
155155

156-
self.check_span_instrumentation_info(
156+
self.assertEqualSpanInstrumentationInfo(
157157
span, opentelemetry.instrumentation.httpx
158158
)
159159

instrumentation/opentelemetry-instrumentation-mysql/tests/test_mysql_integration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_instrumentor(self, mock_connect):
4343
span = spans_list[0]
4444

4545
# Check version and name in span's instrumentation info
46-
self.check_span_instrumentation_info(
46+
self.assertEqualSpanInstrumentationInfo(
4747
span, opentelemetry.instrumentation.mysql
4848
)
4949

instrumentation/opentelemetry-instrumentation-psycopg2/tests/test_psycopg2_integration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_instrumentor(self):
100100
span = spans_list[0]
101101

102102
# Check version and name in span's instrumentation info
103-
self.check_span_instrumentation_info(
103+
self.assertEqualSpanInstrumentationInfo(
104104
span, opentelemetry.instrumentation.psycopg2
105105
)
106106

0 commit comments

Comments
 (0)