mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 20:52:57 +08:00

* Fix install of Python 3.10 on GitHub Actions In PR #1604 the Python version was upgraded to Python 3.10 to fix a local issue on M1 MacBooks. The GitHub Action workflows now exit with the following message for the docker-tests, spellcheck and lint checks, skipping these checks. ``` lint create: /home/runner/work/opentelemetry-python-contrib/opentelemetry-python-contrib/.tox/lint SKIPPED: InterpreterNotFound: python3.10 ___________________________________ summary ____________________________________ SKIPPED: lint: InterpreterNotFound: python3.10 congratulations :) ``` Upgrade the Python version in the GitHub Actions workflow to fix this. * Fix YAML interpretation of Python 3.10 * Upgrade Docker tests dependencies Upgrade the asyncpg and psycopg2 packages, they don't work on Python 3.10. This also fixes running these tests no M1 MacBooks. * Fix linter issues merged into main They went unnoticed while the CI didn't fail on the lint task not working. --------- Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
78 lines
2.7 KiB
Python
78 lines
2.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.
|
|
|
|
import flask
|
|
from werkzeug.test import Client
|
|
from werkzeug.wrappers import Response
|
|
|
|
from opentelemetry.instrumentation.flask import FlaskInstrumentor
|
|
from opentelemetry.test.wsgitestutil import WsgiTestBase
|
|
|
|
# pylint: disable=import-error
|
|
from .base_test import InstrumentationTest
|
|
|
|
|
|
class TestSQLCommenter(InstrumentationTest, WsgiTestBase):
|
|
def setUp(self):
|
|
super().setUp()
|
|
FlaskInstrumentor().instrument()
|
|
self.app = flask.Flask(__name__)
|
|
self._common_initialization()
|
|
|
|
def tearDown(self):
|
|
super().tearDown()
|
|
with self.disable_logging():
|
|
FlaskInstrumentor().uninstrument()
|
|
|
|
def test_sqlcommenter_enabled_default(self):
|
|
self.app = flask.Flask(__name__)
|
|
self.app.route("/sqlcommenter")(self._sqlcommenter_endpoint)
|
|
client = Client(self.app, Response)
|
|
|
|
resp = client.get("/sqlcommenter")
|
|
self.assertEqual(200, resp.status_code)
|
|
self.assertRegex(
|
|
list(resp.response)[0].strip(),
|
|
b'{"controller":"_sqlcommenter_endpoint","framework":"flask:(.*)","route":"/sqlcommenter"}',
|
|
)
|
|
|
|
def test_sqlcommenter_enabled_with_configurations(self):
|
|
FlaskInstrumentor().uninstrument()
|
|
FlaskInstrumentor().instrument(
|
|
enable_commenter=True, commenter_options={"route": False}
|
|
)
|
|
|
|
self.app = flask.Flask(__name__)
|
|
self.app.route("/sqlcommenter")(self._sqlcommenter_endpoint)
|
|
client = Client(self.app, Response)
|
|
|
|
resp = client.get("/sqlcommenter")
|
|
self.assertEqual(200, resp.status_code)
|
|
self.assertRegex(
|
|
list(resp.response)[0].strip(),
|
|
b'{"controller":"_sqlcommenter_endpoint","framework":"flask:(.*)"}',
|
|
)
|
|
|
|
def test_sqlcommenter_disabled(self):
|
|
FlaskInstrumentor().uninstrument()
|
|
FlaskInstrumentor().instrument(enable_commenter=False)
|
|
|
|
self.app = flask.Flask(__name__)
|
|
self.app.route("/sqlcommenter")(self._sqlcommenter_endpoint)
|
|
client = Client(self.app, Response)
|
|
|
|
resp = client.get("/sqlcommenter")
|
|
self.assertEqual(200, resp.status_code)
|
|
self.assertEqual(list(resp.response)[0].strip(), b"{}")
|