
These need to be squashed into a single commit in order to make the CI
pass. The skyline-functional-devstack is still made non-voting since
the fixes in [0] are also needed in order to make it work again after
the switch to Ubuntu 24.04.
Fix some pep8 and typing errors.
Bump aiosqlite version as per upper constraints:
aiosqlite is u-c with 0.20.0
- 8a8abf5abf/upper-constraints.txt (L156)
We need to bump it in requirements.txt also otherwise below requirements
conflict occur:
The conflict is caused by:
skyline-apiserver 5.1.0.dev2 depends on aiosqlite<=0.17.0
The user requested (constraint) aiosqlite===0.20.0
[0] https://review.opendev.org/c/openstack/skyline-console/+/939685
Change-Id: I2dababab7c79e7c37983c1702178419c88e014a5
61 lines
2.1 KiB
Python
61 lines
2.1 KiB
Python
# Copyright 2021 99cloud
|
|
#
|
|
# 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 typing import TYPE_CHECKING, AsyncGenerator
|
|
|
|
import pytest
|
|
from _pytest.mark import ParameterSet
|
|
from asgi_lifespan import LifespanManager
|
|
from httpx import AsyncClient
|
|
|
|
from skyline_apiserver.config import CONF
|
|
from skyline_apiserver.main import app
|
|
from skyline_apiserver.tests.models import TestData
|
|
|
|
if TYPE_CHECKING:
|
|
from _pytest.python import Metafunc
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
async def client() -> AsyncGenerator:
|
|
async with LifespanManager(app):
|
|
async with AsyncClient(app=app, base_url="http://test") as ac: # type: ignore
|
|
yield ac
|
|
|
|
CONF.cleanup()
|
|
|
|
|
|
def pytest_generate_tests(metafunc: "Metafunc") -> None:
|
|
for marker in metafunc.definition.iter_markers(name="ddt"):
|
|
test_data: TestData
|
|
for test_data in marker.args:
|
|
argument_length = len(test_data.arguments)
|
|
argvalues = []
|
|
for argument_data in test_data.argument_data_set:
|
|
if len(argument_data.values) != argument_length:
|
|
raise ValueError(
|
|
f'Argument data "{argument_data.id}" of method '
|
|
f'"{metafunc.function.__name__}" doesn\'t match '
|
|
"number of arguments.",
|
|
)
|
|
argvalues.append(
|
|
ParameterSet(
|
|
id=argument_data.id,
|
|
marks=argument_data.marks,
|
|
values=argument_data.values,
|
|
),
|
|
)
|
|
|
|
metafunc.parametrize(test_data.arguments, argvalues, indirect=test_data.indirect)
|