summaryrefslogtreecommitdiff
path: root/testing/test_cli.py
blob: 2cfdfb674781abcad87f257cea53f5b7d2d89a2b (plain)
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
from __future__ import annotations

import io
from contextlib import redirect_stdout

import pytest

from .conftest import DebugMode
from .test_git import wd as wd_fixture  # NOQA evil fixture reuse
from .wd_wrapper import WorkDir
from setuptools_scm._cli import main


PYPROJECT_TOML = "pyproject.toml"
PYPROJECT_SIMPLE = "[tool.setuptools_scm]"
PYPROJECT_ROOT = '[tool.setuptools_scm]\nroot=".."'


def get_output(args: list[str]) -> str:

    with redirect_stdout(io.StringIO()) as out:
        main(args)
    return out.getvalue()


def test_cli_find_pyproject(
    wd: WorkDir, monkeypatch: pytest.MonkeyPatch, debug_mode: DebugMode
) -> None:
    debug_mode.disable()
    wd.commit_testfile()
    wd.write(PYPROJECT_TOML, PYPROJECT_SIMPLE)
    monkeypatch.chdir(wd.cwd)

    out = get_output([])
    assert out.startswith("0.1.dev1+")

    with pytest.warns(
        UserWarning, match="absolute root path '%s' overrides relative_to '%s'"
    ):
        with pytest.raises(SystemExit, match="no version found for"):
            get_output(["--root=.."])

    wd.write(PYPROJECT_TOML, PYPROJECT_ROOT)
    with pytest.raises(SystemExit, match="no version found for"):
        print(get_output(["-c", PYPROJECT_TOML]))

    with pytest.raises(SystemExit, match="no version found for"):

        get_output(["-c", PYPROJECT_TOML, "--root=.."])

    with pytest.warns(UserWarning, match="root .. is overridden by the cli arg ."):
        out = get_output(["-c", PYPROJECT_TOML, "--root=."])
    assert out.startswith("0.1.dev1+")