File size: 24,391 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Collection of pytest fixtures used in conda tests."""
from __future__ import annotations
import os
import subprocess
import uuid
import warnings
from contextlib import contextmanager, nullcontext
from dataclasses import dataclass
from itertools import chain
from logging import getLogger
from pathlib import Path
from shutil import copyfile
from typing import TYPE_CHECKING, Literal, TypeVar, overload
import py
import pytest
from conda.deprecations import deprecated
from .. import CONDA_SOURCE_ROOT
from ..auxlib.ish import dals
from ..base.constants import PACKAGE_CACHE_MAGIC_FILE, PREFIX_MAGIC_FILE
from ..base.context import context, reset_context
from ..cli.main import main_subshell
from ..common.configuration import YamlRawParameter
from ..common.serialize import json, yaml
from ..common.url import path_to_url
from ..core.package_cache_data import PackageCacheData
from ..core.subdir_data import SubdirData
from ..exceptions import CondaExitZero
from ..gateways.disk.create import TemporaryDirectory
from ..models.records import PackageRecord
from .integration import PYTHON_BINARY
if TYPE_CHECKING:
import http.server
from collections.abc import Iterable, Iterator
from _pytest.capture import MultiCapture
from pytest import (
CaptureFixture,
ExceptionInfo,
FixtureRequest,
MonkeyPatch,
TempPathFactory,
)
from pytest_mock import MockerFixture
from ..common.path import PathType
log = getLogger(__name__)
TEST_CONDARC = dals(
"""
custom_channels:
darwin: https://some.url.somewhere/stuff
chuck: http://another.url:8080/with/path
custom_multichannels:
michele:
- https://do.it.with/passion
- learn_from_every_thing
steve:
- more-downloads
channel_settings:
- channel: darwin
param_one: value_one
param_two: value_two
- channel: "http://localhost"
param_one: value_one
param_two: value_two
migrated_custom_channels:
darwin: s3://just/cant
chuck: file:///var/lib/repo/
migrated_channel_aliases:
- https://conda.anaconda.org
channel_alias: ftp://new.url:8082
conda-build:
root-dir: /some/test/path
proxy_servers:
http: http://user:pass@corp.com:8080
https: none
ftp:
sftp: ''
ftps: false
rsync: 'false'
aggressive_update_packages: []
channel_priority: false
"""
)
@pytest.fixture(autouse=True)
def suppress_resource_warning():
"""
Suppress `Unclosed Socket Warning`
It seems urllib3 keeps a socket open to avoid costly recreation costs.
xref: https://github.com/kennethreitz/requests/issues/1882
"""
warnings.filterwarnings("ignore", category=ResourceWarning)
@pytest.fixture(scope="function")
def tmpdir(tmpdir, request):
tmpdir = TemporaryDirectory(dir=str(tmpdir))
request.addfinalizer(tmpdir.cleanup)
return py.path.local(tmpdir.name)
@pytest.fixture(autouse=True)
def clear_subdir_cache():
SubdirData.clear_cached_local_channel_data()
@pytest.fixture(scope="function")
def reset_conda_context():
"""Resets the context object after each test function is run."""
yield
reset_context()
@pytest.fixture()
def temp_package_cache(tmp_path_factory, monkeypatch: MonkeyPatch) -> Iterator[Path]:
"""
Used to isolate package or index cache from other tests.
"""
pkgs_dir = tmp_path_factory.mktemp("pkgs")
monkeypatch.setenv("CONDA_PKGS_DIRS", str(pkgs_dir))
reset_context()
yield pkgs_dir
@pytest.fixture(
# allow CI to set the solver backends via the CONDA_TEST_SOLVERS env var
params=os.environ.get("CONDA_TEST_SOLVERS", "libmamba,classic").split(",")
)
def parametrized_solver_fixture(
request: FixtureRequest,
) -> Iterable[Literal["libmamba", "classic"]]:
"""
A parameterized fixture that sets the solver backend to (1) libmamba
and (2) classic for each test. It's using autouse=True, so only import it in
modules that actually need it.
Note that skips and xfails need to be done _inside_ the test body.
Decorators can't be used because they are evaluated before the
fixture has done its work!
So, instead of:
@pytest.mark.skipif(context.solver == "libmamba", reason="...")
def test_foo():
...
Do:
def test_foo():
if context.solver == "libmamba":
pytest.skip("...")
...
"""
yield from _solver_helper(request, request.param)
@pytest.fixture
def solver_classic(
request: FixtureRequest,
) -> Iterable[Literal["classic"]]:
yield from _solver_helper(request, "classic")
@pytest.fixture
def solver_libmamba(
request: FixtureRequest,
) -> Iterable[Literal["libmamba"]]:
yield from _solver_helper(request, "libmamba")
Solver = TypeVar("Solver", Literal["libmamba"], Literal["classic"])
def _solver_helper(
request: FixtureRequest,
solver: Solver,
) -> Iterable[Solver]:
# clear cached solver backends before & after each test
context.plugin_manager.get_cached_solver_backend.cache_clear()
request.addfinalizer(context.plugin_manager.get_cached_solver_backend.cache_clear)
mp = request.getfixturevalue("monkeypatch")
mp.setenv("CONDA_SOLVER", solver)
reset_context()
assert context.solver == solver
yield solver
@pytest.fixture(scope="session")
@deprecated("25.9", "26.3")
def session_capsys(request) -> Iterator[MultiCapture]:
# https://github.com/pytest-dev/pytest/issues/2704#issuecomment-603387680
capmanager = request.config.pluginmanager.getplugin("capturemanager")
with capmanager.global_and_fixture_disabled():
yield capmanager._global_capturing
@dataclass
class CondaCLIFixture:
capsys: CaptureFixture | None
@overload
def __call__(
self,
*argv: PathType,
raises: type[Exception] | tuple[type[Exception], ...],
) -> tuple[str, str, ExceptionInfo]: ...
@overload
def __call__(
self,
*argv: PathType,
) -> tuple[str, str, int]: ...
def __call__(
self,
*argv: PathType,
raises: type[Exception] | tuple[type[Exception], ...] | None = None,
) -> tuple[str | None, str | None, int | ExceptionInfo]:
"""Test conda CLI. Mimic what is done in `conda.cli.main.main`.
`conda ...` == `conda_cli(...)`
:param argv: Arguments to parse.
:param raises: Expected exception to intercept. If provided, the raised exception
will be returned instead of exit code (see pytest.raises and pytest.ExceptionInfo).
:return: Command results (stdout, stderr, exit code or pytest.ExceptionInfo).
"""
# clear output
if self.capsys:
self.capsys.readouterr()
# run command
code = None
with pytest.raises(raises) if raises else nullcontext() as exception:
code = main_subshell(*self._cast_args(argv))
# capture output
if self.capsys:
out, err = self.capsys.readouterr()
else:
out = err = None
# restore to prior state
reset_context()
return out, err, exception if raises else code
@staticmethod
def _cast_args(argv: tuple[PathType, ...]) -> Iterable[str]:
"""Cast args to string and inspect for `conda run`.
`conda run` is a unique case that requires `--dev` to use the src shell scripts
and not the shell scripts provided by the installer.
"""
# TODO: Refactor this so we don't expose testing infrastructure to the user
# (i.e., deprecate `conda run --dev`).
argv = map(str, argv)
for arg in argv:
yield arg
# detect if arg is the command (the first positional)
if arg[0] != "-":
# this is the first positional, return remaining arguments
# if this happens to be the `conda run` command, add --dev
if arg == "run":
yield "--dev" # use src, not installer's shell scripts
yield from argv
@pytest.fixture
def conda_cli(capsys: CaptureFixture) -> Iterator[CondaCLIFixture]:
"""A function scoped fixture returning CondaCLIFixture instance.
Use this for any commands that are local to the current test (e.g., creating a
conda environment only used in the test).
"""
yield CondaCLIFixture(capsys)
@pytest.fixture(scope="session")
def session_conda_cli() -> Iterator[CondaCLIFixture]:
"""A session scoped fixture returning CondaCLIFixture instance.
Use this for any commands that are global to the test session (e.g., creating a
conda environment shared across tests, `conda info`, etc.).
"""
yield CondaCLIFixture(None)
@dataclass
class PipCLIFixture:
"""Fixture for calling pip in specific conda environments."""
@overload
def __call__(
self,
*argv: PathType,
prefix: PathType,
raises: type[Exception] | tuple[type[Exception], ...],
) -> tuple[str, str, ExceptionInfo]: ...
@overload
def __call__(
self,
*argv: PathType,
prefix: PathType,
) -> tuple[str, str, int]: ...
def __call__(
self,
*argv: PathType,
prefix: PathType,
raises: type[Exception] | tuple[type[Exception], ...] | None = None,
) -> tuple[str | None, str | None, int | ExceptionInfo]:
"""Test pip CLI in a specific conda environment.
`pip ...` in environment == `pip_cli(..., prefix=env_path)`
:param argv: Arguments to pass to pip.
:param prefix: Path to the conda environment containing pip.
:param raises: Expected exception to intercept. If provided, the raised exception
will be returned instead of exit code (see pytest.raises and pytest.ExceptionInfo).
:return: Command results (stdout, stderr, exit code or pytest.ExceptionInfo).
"""
# build command using python -m pip (more reliable than finding pip executable)
prefix_path = Path(prefix)
python_exe = prefix_path / PYTHON_BINARY
cmd = [str(python_exe), "-m", "pip"] + [str(arg) for arg in argv]
# run command
with pytest.raises(raises) if raises else nullcontext() as exception:
try:
result = subprocess.run(
cmd,
capture_output=True,
text=True,
check=True,
)
code = result.returncode
stdout = result.stdout
stderr = result.stderr
except subprocess.CalledProcessError as e:
code = e.returncode
stdout = e.stdout
stderr = e.stderr
except FileNotFoundError:
# python executable not found
raise RuntimeError(
f"Python not found in environment {prefix_path}: {python_exe}"
)
return stdout, stderr, exception if raises else code
@pytest.fixture(scope="session")
def pip_cli() -> Iterator[PipCLIFixture]:
"""A function scoped fixture returning PipCLIFixture instance.
Use this for calling pip commands in specific conda environments during tests.
Uses `python -m pip` for reliable cross-platform execution.
Example:
def test_pip_install(tmp_env, pip_cli):
with tmp_env("python=3.10", "pip") as prefix:
stdout, stderr, code = pip_cli("install", "requests", prefix=prefix)
assert code == 0
"""
yield PipCLIFixture()
@dataclass
class PathFactoryFixture:
tmp_path: Path
def __call__(
self,
name: str | None = None,
prefix: str | None = None,
suffix: str | None = None,
) -> Path:
"""Unique, non-existent path factory.
Extends pytest's `tmp_path` fixture with a new unique, non-existent path for usage in cases
where we need a temporary path that doesn't exist yet.
:param name: Path name to append to `tmp_path`
:param prefix: Prefix to prepend to unique name generated
:param suffix: Suffix to append to unique name generated
:return: A new unique path
"""
prefix = prefix or ""
name = name or uuid.uuid4().hex[:8]
suffix = suffix or ""
return self.tmp_path / (prefix + name + suffix)
@pytest.fixture
def path_factory(tmp_path: Path) -> Iterator[PathFactoryFixture]:
"""A function scoped fixture returning PathFactoryFixture instance.
Use this to generate any number of temporary paths for the test that are unique and
do not exist yet.
"""
yield PathFactoryFixture(tmp_path)
@dataclass
class TmpEnvFixture:
path_factory: PathFactoryFixture | TempPathFactory
conda_cli: CondaCLIFixture
def get_path(self) -> Path:
if isinstance(self.path_factory, PathFactoryFixture):
# scope=function
return self.path_factory()
else:
# scope=session
return self.path_factory.mktemp("tmp_env-")
@contextmanager
def __call__(
self,
*args: str,
prefix: str | os.PathLike | None = None,
shallow: bool | None = None,
) -> Iterator[Path]:
"""Generate a conda environment with the provided packages.
:param args: The arguments to pass to conda create (e.g., packages, flags, etc.)
:param prefix: The prefix at which to install the conda environment
:param shallow: Whether the environment is created only on disk without call to `conda create`
:return: The conda environment's prefix
"""
if shallow and args:
raise ValueError("shallow=True cannot be used with any arguments")
prefix = Path(prefix or self.get_path())
if shallow or (shallow is None and not args):
# no arguments, just create an empty environment
path = prefix / PREFIX_MAGIC_FILE
path.parent.mkdir(parents=True, exist_ok=True)
path.touch()
else:
self.conda_cli(
"create",
f"--prefix={prefix}",
*args,
"--yes",
"--quiet",
)
yield prefix
# no need to remove prefix since it is in a temporary directory
@pytest.fixture
def tmp_env(
path_factory: PathFactoryFixture,
conda_cli: CondaCLIFixture,
) -> Iterator[TmpEnvFixture]:
"""A function scoped fixture returning TmpEnvFixture instance.
Use this when creating a conda environment that is local to the current test.
"""
yield TmpEnvFixture(path_factory, conda_cli)
@pytest.fixture
def empty_env(tmp_env: TmpEnvFixture) -> Path:
"""A function scoped fixture returning an empty environment.
Use this when creating a conda environment that is empty.
"""
with tmp_env(shallow=True) as prefix:
return prefix
@pytest.fixture(scope="session")
def session_tmp_env(
tmp_path_factory: TempPathFactory,
session_conda_cli: CondaCLIFixture,
) -> Iterator[TmpEnvFixture]:
"""A session scoped fixture returning TmpEnvFixture instance.
Use this when creating a conda environment that is shared across tests.
"""
yield TmpEnvFixture(tmp_path_factory, session_conda_cli)
@dataclass
class TmpChannelFixture:
path_factory: PathFactoryFixture
conda_cli: CondaCLIFixture
@contextmanager
def __call__(self, *specs: str) -> Iterator[tuple[Path, str]]:
# download packages
self.conda_cli(
"create",
f"--prefix={self.path_factory()}",
*specs,
"--yes",
"--quiet",
"--download-only",
raises=CondaExitZero,
)
pkgs_dir = Path(PackageCacheData.first_writable().pkgs_dir)
pkgs_cache = PackageCacheData(pkgs_dir)
channel = self.path_factory()
subdir = channel / context.subdir
subdir.mkdir(parents=True)
noarch = channel / "noarch"
noarch.mkdir(parents=True)
repodata = {"info": {}, "packages": {}}
iter_specs = list(specs)
seen: dict[str, set[str]] = {}
while iter_specs:
spec = iter_specs.pop(0)
for package_record in pkgs_cache.query(spec):
# track which packages have already been copied to the channel
fname = package_record["fn"]
if fname in seen:
seen[fname].add(spec)
seen[fname] = {spec}
# copy package to channel
copyfile(pkgs_dir / fname, subdir / fname)
# add package to repodata
repodata["packages"][fname] = PackageRecord(
**{
field: value
for field, value in package_record.dump().items()
if field not in ("url", "channel", "schannel", "channel_name")
}
)
iter_specs.extend(package_record.depends)
(subdir / "repodata.json").write_text(json.dumps(repodata))
(noarch / "repodata.json").write_text(json.dumps({}))
# ensure all packages were copied to the channel
for spec in chain.from_iterable(seen.values()):
assert any(PackageCacheData(pkgs_dir).query(spec))
yield channel, path_to_url(str(channel))
@pytest.fixture
def tmp_channel(
path_factory: PathFactoryFixture,
conda_cli: CondaCLIFixture,
) -> Iterator[TmpChannelFixture]:
"""A function scoped fixture returning TmpChannelFixture instance."""
yield TmpChannelFixture(path_factory, conda_cli)
@pytest.fixture(name="monkeypatch")
def context_aware_monkeypatch(monkeypatch: MonkeyPatch) -> MonkeyPatch:
"""A monkeypatch fixture that resets context after each test."""
yield monkeypatch
# reset context if any CONDA_ variables were set/unset
if conda_vars := [
name
for obj, name, _ in monkeypatch._setitem
if obj is os.environ and name.startswith("CONDA_")
]:
log.debug(f"monkeypatch cleanup: undo & reset context: {', '.join(conda_vars)}")
monkeypatch.undo()
# reload context without search paths
reset_context([])
@pytest.fixture
def tmp_pkgs_dir(
path_factory: PathFactoryFixture, mocker: MockerFixture
) -> Iterator[Path]:
"""A function scoped fixture returning a temporary package cache directory."""
pkgs_dir = path_factory() / "pkgs"
pkgs_dir.mkdir(parents=True)
(pkgs_dir / PACKAGE_CACHE_MAGIC_FILE).touch()
mocker.patch(
"conda.base.context.Context.pkgs_dirs",
new_callable=mocker.PropertyMock,
return_value=(pkgs_dir_str := str(pkgs_dir),),
)
assert context.pkgs_dirs == (pkgs_dir_str,)
yield pkgs_dir
PackageCacheData._cache_.pop(pkgs_dir_str, None)
@pytest.fixture
def tmp_envs_dir(
path_factory: PathFactoryFixture, mocker: MockerFixture
) -> Iterator[Path]:
"""A function scoped fixture returning a temporary environment directory."""
envs_dir = path_factory() / "envs"
envs_dir.mkdir(parents=True)
mocker.patch(
"conda.base.context.Context.envs_dirs",
new_callable=mocker.PropertyMock,
return_value=(envs_dir_str := str(envs_dir),),
)
assert context.envs_dirs == (envs_dir_str,)
yield envs_dir
@pytest.fixture(scope="session", autouse=True)
def PYTHONPATH():
"""
We need to set this so Python loads the dev version of 'conda', usually taken
from `conda/` in the root of the cloned repo. This root is usually the working
directory when we run `pytest`.
Otherwise, it will import the one installed in the base environment, which might
have not been overwritten with `pip install -e . --no-deps`. This doesn't happen
in other tests because they run with the equivalent of `python -m conda`. However,
some tests directly run `conda (shell function) which calls `conda` (Python entry
point). When a script is called this way, it bypasses the automatic "working directory
is first on sys.path" behavior you find in `python -m` style calls. See
https://docs.python.org/3/library/sys_path_init.html for details.
"""
if "PYTHONPATH" in os.environ:
yield
else:
with pytest.MonkeyPatch.context() as monkeypatch:
monkeypatch.setenv("PYTHONPATH", CONDA_SOURCE_ROOT)
yield
@pytest.fixture
def context_testdata() -> None:
reset_context()
context._set_raw_data(
{
"testdata": YamlRawParameter.make_raw_parameters(
"testdata", yaml.loads(TEST_CONDARC)
)
}
)
# HTTP Test Server Fixtures
@dataclass
class HttpTestServerFixture:
"""Fixture providing HTTP test server for serving local files."""
server: http.server.ThreadingHTTPServer
host: str
port: int
url: str
directory: Path
def __post_init__(self):
"""Log server startup for debugging."""
log.debug(f"HTTP test server started: {self.url}")
def get_url(self, path: str = "") -> str:
"""
Get full URL for a given path on the server.
:param path: Relative path on the server (e.g., "subdir/package.tar.bz2")
:return: Full URL
"""
path = path.lstrip("/")
return f"{self.url}/{path}" if path else self.url
@pytest.fixture
def http_test_server(
request: FixtureRequest,
path_factory: PathFactoryFixture,
) -> Iterator[HttpTestServerFixture]:
"""
Function-scoped HTTP test server for serving local files.
This fixture starts an HTTP server on a random port and serves files
from a directory. The server supports both IPv4 and IPv6.
Usage without parametrize (dynamic content):
def test_dynamic(http_test_server):
# Server uses temporary directory automatically
(http_test_server.directory / "file.txt").write_text("content")
url = http_test_server.get_url("file.txt")
response = requests.get(url)
assert response.status_code == 200
Usage with parametrize (pre-existing directory):
@pytest.mark.parametrize("http_test_server", ["tests/data/mock-channel"], indirect=True)
def test_existing(http_test_server):
url = http_test_server.get_url("file.txt")
response = requests.get(url)
assert response.status_code == 200
Use ``None`` in parametrize to mix pre-existing directories with dynamic content:
@pytest.mark.parametrize("http_test_server", ["tests/data", None], indirect=True)
:param request: pytest fixture request object
:param path_factory: path_factory fixture for creating unique temp directories
:return: HttpTestServerFixture with server, host, port, url, and directory attributes
:raises ValueError: If parametrized directory is invalid
"""
from . import http_test_server as http_server_module
if directory := getattr(request, "param", None):
# Parameter was provided via @pytest.mark.parametrize
# Validate the provided directory
directory_path = Path(directory)
if not directory_path.exists():
raise ValueError(f"Directory does not exist: {directory}")
if not directory_path.is_dir():
raise ValueError(f"Path is not a directory: {directory}")
directory = str(directory_path.resolve())
else:
# No parameter provided or explicit None - use path_factory for unique directory
server_dir = path_factory(name="http_test_server")
server_dir.mkdir()
directory = str(server_dir)
server = http_server_module.run_test_server(directory)
host, port = server.socket.getsockname()[:2]
url_host = f"[{host}]" if ":" in host else host
url = f"http://{url_host}:{port}"
fixture = HttpTestServerFixture(
server=server,
host=host,
port=port,
url=url,
directory=Path(directory),
)
yield fixture
# Cleanup: shutdown server
server.shutdown()
|