87 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Python
		
	
	
	
| # Copyright The OpenTelemetry Authors
 | |
| #
 | |
| # 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 urllib3
 | |
| import urllib3.exceptions
 | |
| 
 | |
| from opentelemetry import trace
 | |
| from opentelemetry.instrumentation.urllib3 import URLLib3Instrumentor
 | |
| from opentelemetry.test.httptest import HttpTestBase
 | |
| from opentelemetry.test.test_base import TestBase
 | |
| from opentelemetry.util.http.httplib import HttpClientInstrumentor
 | |
| 
 | |
| 
 | |
| class TestURLLib3InstrumentorWithRealSocket(HttpTestBase, TestBase):
 | |
|     def setUp(self):
 | |
|         super().setUp()
 | |
|         self.assert_ip = self.server.server_address[0]
 | |
|         self.http_host = ":".join(map(str, self.server.server_address[:2]))
 | |
|         self.http_url_base = "http://" + self.http_host
 | |
|         self.http_url = self.http_url_base + "/status/200"
 | |
|         HttpClientInstrumentor().instrument()
 | |
|         URLLib3Instrumentor().instrument()
 | |
| 
 | |
|     def tearDown(self):
 | |
|         super().tearDown()
 | |
|         HttpClientInstrumentor().uninstrument()
 | |
|         URLLib3Instrumentor().uninstrument()
 | |
| 
 | |
|     @staticmethod
 | |
|     def perform_request(url: str) -> urllib3.response.HTTPResponse:
 | |
|         with urllib3.PoolManager() as pool:
 | |
|             resp = pool.request("GET", url)
 | |
|             resp.close()
 | |
|         return resp
 | |
| 
 | |
|     def test_basic_http_success(self):
 | |
|         response = self.perform_request(self.http_url)
 | |
|         self.assert_success_span(response, self.http_url)
 | |
| 
 | |
|     def test_basic_http_success_using_connection_pool(self):
 | |
|         with urllib3.HTTPConnectionPool(self.http_host, timeout=3) as pool:
 | |
|             response = pool.request("GET", "/status/200")
 | |
| 
 | |
|             self.assert_success_span(response, self.http_url)
 | |
| 
 | |
|             # Test that when re-using an existing connection, everything still works.
 | |
|             # Especially relevant for IP capturing.
 | |
|             response = pool.request("GET", "/status/200")
 | |
| 
 | |
|             self.assert_success_span(response, self.http_url)
 | |
| 
 | |
|     def assert_span(self, num_spans=1):
 | |
|         span_list = self.memory_exporter.get_finished_spans()
 | |
|         self.assertEqual(num_spans, len(span_list))
 | |
|         if num_spans == 0:
 | |
|             return None
 | |
|         self.memory_exporter.clear()
 | |
|         if num_spans == 1:
 | |
|             return span_list[0]
 | |
|         return span_list
 | |
| 
 | |
|     def assert_success_span(
 | |
|         self, response: urllib3.response.HTTPResponse, url: str
 | |
|     ):
 | |
|         self.assertEqual(b"Hello!", response.data)
 | |
| 
 | |
|         span = self.assert_span()
 | |
|         self.assertIs(trace.SpanKind.CLIENT, span.kind)
 | |
|         self.assertEqual("GET", span.name)
 | |
| 
 | |
|         attributes = {
 | |
|             "http.status_code": 200,
 | |
|             "net.peer.ip": self.assert_ip,
 | |
|         }
 | |
|         self.assertGreaterEqual(span.attributes.items(), attributes.items())
 |