mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
166 lines
5.7 KiB
Python
166 lines
5.7 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.
|
|
|
|
from unittest.mock import patch
|
|
|
|
from flask import Flask, request
|
|
|
|
from opentelemetry import trace
|
|
from opentelemetry.instrumentation.flask import FlaskInstrumentor
|
|
from opentelemetry.test.test_base import TestBase
|
|
from opentelemetry.test.wsgitestutil import WsgiTestBase
|
|
from opentelemetry.util import ExcludeList
|
|
|
|
# pylint: disable=import-error
|
|
from .base_test import InstrumentationTest
|
|
|
|
|
|
def expected_attributes(override_attributes):
|
|
default_attributes = {
|
|
"component": "http",
|
|
"http.method": "GET",
|
|
"http.server_name": "localhost",
|
|
"http.scheme": "http",
|
|
"host.port": 80,
|
|
"http.host": "localhost",
|
|
"http.target": "/",
|
|
"http.flavor": "1.1",
|
|
"http.status_text": "OK",
|
|
"http.status_code": 200,
|
|
}
|
|
for key, val in override_attributes.items():
|
|
default_attributes[key] = val
|
|
return default_attributes
|
|
|
|
|
|
class TestProgrammatic(InstrumentationTest, TestBase, WsgiTestBase):
|
|
def setUp(self):
|
|
super().setUp()
|
|
|
|
self.app = Flask(__name__)
|
|
|
|
FlaskInstrumentor().instrument_app(self.app)
|
|
|
|
self._common_initialization()
|
|
|
|
def tearDown(self):
|
|
super().tearDown()
|
|
with self.disable_logging():
|
|
FlaskInstrumentor().uninstrument_app(self.app)
|
|
|
|
def test_uninstrument(self):
|
|
resp = self.client.get("/hello/123")
|
|
self.assertEqual(200, resp.status_code)
|
|
self.assertEqual([b"Hello: 123"], list(resp.response))
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
|
|
FlaskInstrumentor().uninstrument_app(self.app)
|
|
|
|
resp = self.client.get("/hello/123")
|
|
self.assertEqual(200, resp.status_code)
|
|
self.assertEqual([b"Hello: 123"], list(resp.response))
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
|
|
# pylint: disable=no-member
|
|
def test_only_strings_in_environ(self):
|
|
"""
|
|
Some WSGI servers (such as Gunicorn) expect keys in the environ object
|
|
to be strings
|
|
|
|
OpenTelemetry should adhere to this convention.
|
|
"""
|
|
nonstring_keys = set()
|
|
|
|
def assert_environ():
|
|
for key in request.environ:
|
|
if not isinstance(key, str):
|
|
nonstring_keys.add(key)
|
|
return "hi"
|
|
|
|
self.app.route("/assert_environ")(assert_environ)
|
|
self.client.get("/assert_environ")
|
|
self.assertEqual(nonstring_keys, set())
|
|
|
|
def test_simple(self):
|
|
expected_attrs = expected_attributes(
|
|
{"http.target": "/hello/123", "http.route": "/hello/<int:helloid>"}
|
|
)
|
|
self.client.get("/hello/123")
|
|
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
self.assertEqual(span_list[0].name, "_hello_endpoint")
|
|
self.assertEqual(span_list[0].kind, trace.SpanKind.SERVER)
|
|
self.assertEqual(span_list[0].attributes, expected_attrs)
|
|
|
|
def test_404(self):
|
|
expected_attrs = expected_attributes(
|
|
{
|
|
"http.method": "POST",
|
|
"http.target": "/bye",
|
|
"http.status_text": "NOT FOUND",
|
|
"http.status_code": 404,
|
|
}
|
|
)
|
|
|
|
resp = self.client.post("/bye")
|
|
self.assertEqual(404, resp.status_code)
|
|
resp.close()
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
self.assertEqual(span_list[0].name, "HTTP POST")
|
|
self.assertEqual(span_list[0].kind, trace.SpanKind.SERVER)
|
|
self.assertEqual(span_list[0].attributes, expected_attrs)
|
|
|
|
def test_internal_error(self):
|
|
expected_attrs = expected_attributes(
|
|
{
|
|
"http.target": "/hello/500",
|
|
"http.route": "/hello/<int:helloid>",
|
|
"http.status_text": "INTERNAL SERVER ERROR",
|
|
"http.status_code": 500,
|
|
}
|
|
)
|
|
resp = self.client.get("/hello/500")
|
|
self.assertEqual(500, resp.status_code)
|
|
resp.close()
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
self.assertEqual(span_list[0].name, "_hello_endpoint")
|
|
self.assertEqual(span_list[0].kind, trace.SpanKind.SERVER)
|
|
self.assertEqual(span_list[0].attributes, expected_attrs)
|
|
|
|
@patch(
|
|
"opentelemetry.instrumentation.flask._excluded_urls",
|
|
ExcludeList(["http://localhost/excluded_arg/123", "excluded_noarg"]),
|
|
)
|
|
def test_exclude_lists(self):
|
|
self.client.get("/excluded_arg/123")
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 0)
|
|
|
|
self.client.get("/excluded_arg/125")
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
|
|
self.client.get("/excluded_noarg")
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|
|
|
|
self.client.get("/excluded_noarg2")
|
|
span_list = self.memory_exporter.get_finished_spans()
|
|
self.assertEqual(len(span_list), 1)
|