ephraimbuddy commented on a change in pull request #14219: URL: https://github.com/apache/airflow/pull/14219#discussion_r586079000
########## File path: tests/api_connexion/test_webserver_auth.py ########## @@ -0,0 +1,129 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you 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 unittest +from base64 import b64encode +from datetime import datetime, timedelta + +import jwt +from flask_login import current_user +from parameterized import parameterized + +from airflow.www.app import create_app +from tests.test_utils.api_connexion_utils import assert_401 +from tests.test_utils.config import conf_vars +from tests.test_utils.db import clear_db_pools + + +class TestWebserverAuth(unittest.TestCase): + def setUp(self) -> None: + with conf_vars({("api", "auth_backend"): "tests.test_utils.remote_user_api_auth_backend"}): + self.app = create_app(testing=True) + + self.appbuilder = self.app.appbuilder # pylint: disable=no-member + role_admin = self.appbuilder.sm.find_role("Admin") + self.tester = self.appbuilder.sm.find_user(username="test") + if not self.tester: + self.appbuilder.sm.add_user( + username="test", + first_name="test", + last_name="test", + email="[email protected]", + role=role_admin, + password="test", + ) + clear_db_pools() + + def tearDown(self) -> None: + clear_db_pools() Review comment: In my tests, I keep getting several pools that I didn't expect, I decided to clear it, I will try again and see what is actually happening ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
