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
|
from __future__ import annotations
from pathlib import Path
from typing import TYPE_CHECKING
import pytest
import pyproject_api.__main__
from pyproject_api._frontend import EditableResult, SdistResult, WheelResult
if TYPE_CHECKING:
import pytest_mock
@pytest.mark.parametrize(
("cli_args", "srcdir", "outdir", "hooks"),
[
(
[],
Path.cwd(),
Path.cwd() / "dist",
["build_sdist", "build_wheel"],
),
(
["src"],
Path("src"),
Path("src") / "dist",
["build_sdist", "build_wheel"],
),
(
["-o", "out"],
Path.cwd(),
Path("out"),
["build_sdist", "build_wheel"],
),
(
["-s"],
Path.cwd(),
Path.cwd() / "dist",
["build_sdist"],
),
(
["-w"],
Path.cwd(),
Path.cwd() / "dist",
["build_wheel"],
),
(
["-e"],
Path.cwd(),
Path.cwd() / "dist",
["build_editable"],
),
(
["-s", "-w"],
Path.cwd(),
Path.cwd() / "dist",
["build_sdist", "build_wheel"],
),
],
)
def test_parse_args(
mocker: pytest_mock.MockerFixture,
capsys: pytest.CaptureFixture[str],
cli_args: list[str],
srcdir: Path,
outdir: Path,
hooks: list[str],
) -> None:
subprocess_frontend = mocker.patch("pyproject_api.__main__.SubprocessFrontend", autospec=True)
subprocess_frontend.create_args_from_folder.return_value = (srcdir, (), "foo.bar", "baz", (), True)
subprocess_frontend.return_value.build_sdist.return_value = SdistResult(
sdist=outdir / "foo.whl",
out="sdist out",
err="sdist err",
)
subprocess_frontend.return_value.build_wheel.return_value = WheelResult(
wheel=outdir / "foo.whl",
out="wheel out",
err="wheel err",
)
subprocess_frontend.return_value.build_editable.return_value = EditableResult(
wheel=outdir / "foo.whl",
out="editable wheel out",
err="editable wheel err",
)
pyproject_api.__main__.main(cli_args)
subprocess_frontend.create_args_from_folder.assert_called_once_with(srcdir)
captured = capsys.readouterr()
if "build_sdist" in hooks:
assert "Building sdist..." in captured.out
subprocess_frontend.return_value.build_sdist.assert_called_once_with(outdir)
assert "sdist out" in captured.out
assert "sdist err" in captured.err
if "build_wheel" in hooks:
assert "Building wheel..." in captured.out
subprocess_frontend.return_value.build_wheel.assert_called_once_with(outdir)
assert "wheel out" in captured.out
assert "wheel err" in captured.err
if "build_editable" in hooks:
assert "Building editable wheel..." in captured.out
subprocess_frontend.return_value.build_editable.assert_called_once_with(outdir)
assert "editable wheel out" in captured.out
assert "editable wheel err" in captured.err
|