-
Notifications
You must be signed in to change notification settings - Fork 641
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into first-contrib-opentelemetry
- Loading branch information
Showing
7 changed files
with
64 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
import aiohttp | ||
import aiohttp.test_utils | ||
import yarl | ||
from http_server_mock import HttpServerMock | ||
from pkg_resources import iter_entry_points | ||
|
||
from opentelemetry import context | ||
|
@@ -313,18 +314,26 @@ async def request_handler(request): | |
def test_credential_removal(self): | ||
trace_configs = [aiohttp_client.create_trace_config()] | ||
|
||
url = "http://username:[email protected]/status/200" | ||
with self.subTest(url=url): | ||
app = HttpServerMock("test_credential_removal") | ||
|
||
async def do_request(url): | ||
async with aiohttp.ClientSession( | ||
trace_configs=trace_configs, | ||
) as session: | ||
async with session.get(url): | ||
pass | ||
@app.route("/status/200") | ||
def index(): | ||
return "hello" | ||
|
||
loop = asyncio.get_event_loop() | ||
loop.run_until_complete(do_request(url)) | ||
url = "http://username:password@localhost:5000/status/200" | ||
|
||
with app.run("localhost", 5000): | ||
with self.subTest(url=url): | ||
|
||
async def do_request(url): | ||
async with aiohttp.ClientSession( | ||
trace_configs=trace_configs, | ||
) as session: | ||
async with session.get(url): | ||
pass | ||
|
||
loop = asyncio.get_event_loop() | ||
loop.run_until_complete(do_request(url)) | ||
|
||
self.assert_spans( | ||
[ | ||
|
@@ -333,7 +342,9 @@ async def do_request(url): | |
(StatusCode.UNSET, None), | ||
{ | ||
SpanAttributes.HTTP_METHOD: "GET", | ||
SpanAttributes.HTTP_URL: "http://httpbin.org/status/200", | ||
SpanAttributes.HTTP_URL: ( | ||
"http://localhost:5000/status/200" | ||
), | ||
SpanAttributes.HTTP_STATUS_CODE: int(HTTPStatus.OK), | ||
}, | ||
) | ||
|
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
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
|
||
from unittest.mock import Mock, patch | ||
|
||
from http_server_mock import HttpServerMock | ||
from tornado.testing import AsyncHTTPTestCase | ||
|
||
from opentelemetry import trace | ||
|
@@ -494,32 +495,35 @@ def test_response_headers(self): | |
self.memory_exporter.clear() | ||
set_global_response_propagator(orig) | ||
|
||
# todo(srikanthccv): fix this test | ||
# this test is making request to real httpbin.org/status/200 which | ||
# is not a good idea as it can fail due to availability of the | ||
# service. | ||
# def test_credential_removal(self): | ||
# response = self.fetch( | ||
# "http://username:[email protected]/status/200" | ||
# ) | ||
# self.assertEqual(response.code, 200) | ||
|
||
# spans = self.sorted_spans(self.memory_exporter.get_finished_spans()) | ||
# self.assertEqual(len(spans), 1) | ||
# client = spans[0] | ||
|
||
# self.assertEqual(client.name, "GET") | ||
# self.assertEqual(client.kind, SpanKind.CLIENT) | ||
# self.assertSpanHasAttributes( | ||
# client, | ||
# { | ||
# SpanAttributes.HTTP_URL: "http://httpbin.org/status/200", | ||
# SpanAttributes.HTTP_METHOD: "GET", | ||
# SpanAttributes.HTTP_STATUS_CODE: 200, | ||
# }, | ||
# ) | ||
|
||
# self.memory_exporter.clear() | ||
def test_credential_removal(self): | ||
app = HttpServerMock("test_credential_removal") | ||
|
||
@app.route("/status/200") | ||
def index(): | ||
return "hello" | ||
|
||
with app.run("localhost", 5000): | ||
response = self.fetch( | ||
"http://username:password@localhost:5000/status/200" | ||
) | ||
self.assertEqual(response.code, 200) | ||
|
||
spans = self.sorted_spans(self.memory_exporter.get_finished_spans()) | ||
self.assertEqual(len(spans), 1) | ||
client = spans[0] | ||
|
||
self.assertEqual(client.name, "GET") | ||
self.assertEqual(client.kind, SpanKind.CLIENT) | ||
self.assertSpanHasAttributes( | ||
client, | ||
{ | ||
SpanAttributes.HTTP_URL: "http://localhost:5000/status/200", | ||
SpanAttributes.HTTP_METHOD: "GET", | ||
SpanAttributes.HTTP_STATUS_CODE: 200, | ||
}, | ||
) | ||
|
||
self.memory_exporter.clear() | ||
|
||
|
||
class TestTornadoInstrumentationWithXHeaders(TornadoTest): | ||
|
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