-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix/check future cancelled (#2461)
* Calling the exception() method when future is in the cancelled state is causing a CancelledError Calling the exception() method when future is in the cancelled state is causing a CancelledError. we should check the cancelled state first and call f.exception() only if it's not cancelled. * modify lint * modify lint * Update CHANGELOG.md * remove init() * add future cancelled test code * add future cancelled test code * add future cancelled test code * add future cancelled test code * add future cancelled test code * add future cancelled test code * lint * lint * remove if condition * modify test code * lint * lint * remove pytest --------- Co-authored-by: Diego Hurtado <[email protected]>
- Loading branch information
Showing
3 changed files
with
71 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...mentation/opentelemetry-instrumentation-asyncio/tests/test_asyncio_future_cancellation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import asyncio | ||
from unittest.mock import patch | ||
|
||
from opentelemetry.instrumentation.asyncio import AsyncioInstrumentor | ||
from opentelemetry.instrumentation.asyncio.environment_variables import ( | ||
OTEL_PYTHON_ASYNCIO_FUTURE_TRACE_ENABLED, | ||
) | ||
from opentelemetry.test.test_base import TestBase | ||
from opentelemetry.trace import get_tracer | ||
|
||
|
||
class TestTraceFuture(TestBase): | ||
@patch.dict( | ||
"os.environ", {OTEL_PYTHON_ASYNCIO_FUTURE_TRACE_ENABLED: "true"} | ||
) | ||
def setUp(self): | ||
super().setUp() | ||
self._tracer = get_tracer( | ||
__name__, | ||
) | ||
self.instrumentor = AsyncioInstrumentor() | ||
self.instrumentor.instrument() | ||
|
||
def tearDown(self): | ||
super().tearDown() | ||
self.instrumentor.uninstrument() | ||
|
||
def test_trace_future_cancelled(self): | ||
async def future_cancelled(): | ||
with self._tracer.start_as_current_span("root"): | ||
future = asyncio.Future() | ||
future = self.instrumentor.trace_future(future) | ||
future.cancel() | ||
|
||
try: | ||
asyncio.run(future_cancelled()) | ||
except asyncio.CancelledError as exc: | ||
self.assertEqual(isinstance(exc, asyncio.CancelledError), True) | ||
spans = self.memory_exporter.get_finished_spans() | ||
self.assertEqual(len(spans), 2) | ||
self.assertEqual(spans[0].name, "root") | ||
self.assertEqual(spans[1].name, "asyncio future") | ||
|
||
metrics = ( | ||
self.memory_metrics_reader.get_metrics_data() | ||
.resource_metrics[0] | ||
.scope_metrics[0] | ||
.metrics | ||
) | ||
self.assertEqual(len(metrics), 2) | ||
|
||
self.assertEqual(metrics[0].name, "asyncio.process.duration") | ||
self.assertEqual( | ||
metrics[0].data.data_points[0].attributes["state"], "cancelled" | ||
) | ||
|
||
self.assertEqual(metrics[1].name, "asyncio.process.created") | ||
self.assertEqual( | ||
metrics[1].data.data_points[0].attributes["state"], "cancelled" | ||
) |