Example #1
0
def test_types(cli: click.testing.CliRunner) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write(
                """
from riot import Venv

venv = Venv(
    venvs=[
        Venv(
            pys=[3],
            name="success",
            command="exit 0",
        ),
        Venv(
            pys=[3],
            name="success2",
            command="exit 0",
        ),
    ],
)
            """
            )

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "success"], catch_exceptions=False
        )
        assert result.exit_code == 0
        assert re.search(r"✓ success: \[[0-9a-f]{7}\]", result.stdout)

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "success2"], catch_exceptions=False
        )
        assert result.exit_code == 0
        assert re.search(r"✓ success2: \[[0-9a-f]{7}\]", result.stdout)
Example #2
0
def test_list_with_python(cli: click.testing.CliRunner) -> None:
    """Running list with a python passes through the python."""
    with mock.patch("riot.cli.Session.list_venvs") as list_venvs:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(riot.cli.main, ["list", "--python", "3.6"])
            # Success, but no output because we don't have a matching pattern
            assert result.exit_code == 0
            assert result.stdout == ""

            list_venvs.assert_called_once()
            assert list_venvs.call_args.kwargs["pythons"] == (Interpreter("3.6"),)

    # multiple pythons
    with mock.patch("riot.cli.Session.list_venvs") as list_venvs:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(
                riot.cli.main,
                ["list", "--python", "3.6", "-p", "3.8", "--python", "2.7"],
            )
            # Success, but no output because we don't have a matching pattern
            assert result.exit_code == 0
            assert result.stdout == ""

            list_venvs.assert_called_once()
            assert list_venvs.call_args.kwargs["pythons"] == (
                Interpreter("3.6"),
                Interpreter("3.8"),
                Interpreter("2.7"),
            )
Example #3
0
def test_nested_venv(cli: click.testing.CliRunner) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write(
                """
from riot import Venv

venv = Venv(
    pys=[3],
    pkgs={
        "pytest": [""],
    },
    venvs=[
        Venv(
            name="success",
            command="pytest test_success.py",
        ),
        Venv(
            name="failure",
            command="pytest test_failure.py",
        ),
    ],
)
            """
            )

        with open("test_success.py", "w") as f:
            f.write(
                """
def test_success():
    assert 1 == 1
            """
            )

        with open("test_failure.py", "w") as f:
            f.write(
                """
def test_failure():
    assert 1 == 0
            """
            )

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "success"], catch_exceptions=False
        )
        assert result.exit_code == 0
        assert re.search(r"✓ success: \[[0-9a-f]{7}\]", result.stdout)
        assert "1 passed with 0 warnings, 0 failed" in result.stdout

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "failure"], catch_exceptions=False
        )
        assert result.exit_code == 1
        assert re.search(r"x failure: \[[0-9a-f]{7}\]", result.stdout)
        assert "0 passed with 0 warnings, 1 failed" in result.stdout
Example #4
0
def test_nested_venv(cli: click.testing.CliRunner):
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write(
                """
from riot import Venv

venv = Venv(
    pys=[3],
    pkgs={
        "pytest": [""],
    },
    venvs=[
        Venv(
            name="success",
            command="pytest test_success.py",
        ),
        Venv(
            name="failure",
            command="pytest test_failure.py",
        ),
    ],
)
            """
            )

        with open("test_success.py", "w") as f:
            f.write(
                """
def test_success():
    assert 1 == 1
            """
            )

        with open("test_failure.py", "w") as f:
            f.write(
                """
def test_failure():
    assert 1 == 0
            """
            )

        result = cli.invoke(riot.cli.main, ["run", "-s", "success"])
        assert result.exit_code == 0
        assert result.stdout == ""

        result = cli.invoke(riot.cli.main, ["run", "-s", "failure"])
        assert result.exit_code == 1
        assert result.stdout == ""
Example #5
0
def test_bad_riotfile_name(cli: click.testing.CliRunner) -> None:
    with cli.isolated_filesystem():
        with open("riotfile", "w") as f:
            f.write(
                """
from riot import Venv

venv = Venv(
    venvs=[
        Venv(
            pys=[3],
            name="success",
            command="echo hello",
        ),
    ],
)
            """
            )

        result = cli.invoke(
            riot.cli.main, ["-f", "riotfile", "list"], catch_exceptions=False
        )
        assert result.exit_code == 1
        assert (
            result.stdout
            == "Failed to construct config file:\nInvalid file format for riotfile. Expected file with .py extension got 'riotfile'.\n"
        )
Example #6
0
def test_run_with_long_args(cli: click.testing.CliRunner) -> None:
    """Running run with long option names uses those options."""
    with mock.patch("riot.cli.Session.run") as run:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(
                riot.cli.main,
                [
                    "run",
                    "--recreate-venvs",
                    "--skip-base-install",
                    "--pass-env",
                    "--exitfirst",
                ],
            )
            # Success, but no output because we mock run
            assert result.exit_code == 0
            assert result.stdout == ""

            run.assert_called_once()
            kwargs = run.call_args.kwargs
            assert_args(kwargs)
            assert kwargs["pattern"].pattern == ".*"
            assert kwargs["venv_pattern"].pattern == ".*"
            assert kwargs["recreate_venvs"] is True
            assert kwargs["skip_base_install"] is True
            assert kwargs["pass_env"] is True
            assert kwargs["exit_first"] is True
Example #7
0
def test_pass_env_always(cli: click.testing.CliRunner,
                         monkeypatch: _pytest.monkeypatch.MonkeyPatch) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write("""
from riot import Venv

venv = Venv(
    pkgs={
        "pytest": [""],
    },
    venvs=[
        Venv(
            pys=[3],
            name="envtest",
            command="pytest",
        ),
    ],
)
            """)

        with open("test_success.py", "w") as f:
            f.write("""
import os

def test_success():
    assert os.environ["NO_PROXY"] == "baz"
            """)

        monkeypatch.setenv("NO_PROXY", "baz")
        result = cli.invoke(riot.cli.main, ["run", "-s", "envtest"],
                            catch_exceptions=False)
        assert result.exit_code == 0
        assert "✓ envtest" in result.stdout
Example #8
0
def test_env(cli: click.testing.CliRunner) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write("""
from riot import Venv, latest

venv = Venv(
    pkgs={
        "pytest": latest,
    },
    venvs=[
        Venv(
            env={"foobar": "baz"},
            pys=[3],
            name="envtest",
            command="pytest",
        ),
    ],
)
            """)

        with open("test_success.py", "w") as f:
            f.write("""
import os

def test_success():
    assert os.environ["foobar"] == "baz"
            """)

        result = cli.invoke(riot.cli.main, ["run", "-s", "envtest"],
                            catch_exceptions=False)
        assert result.exit_code == 0
        assert "✓ envtest" in result.stdout
Example #9
0
def test_run_venv_pattern(cli: click.testing.CliRunner) -> None:
    """Running run with pattern passes in that pattern."""
    with mock.patch("riot.riot.logger.debug") as mock_debug:
        with with_riotfile(cli, "simple_riotfile.py"):
            result = cli.invoke(
                riot.cli.main,
                [
                    "run",
                    "test",
                    "-d",
                    "--skip-base-install",
                    "--venv-pattern",
                    "pytest543$",
                ],
            )
            assert result.exit_code == 0
            assert result.stdout == ""

            mock_debug.assert_called()
            assert any(
                [
                    call_args
                    for call_args in mock_debug.call_args_list
                    if call_args.args[0]
                    == "Skipping venv instance '%s' due to pattern mismatch"
                    and call_args.args[1].endswith("pytest")
                ]
            )
Example #10
0
def test_run_with_pattern(cli: click.testing.CliRunner) -> None:
    """Running run with pattern passes in that pattern."""
    with mock.patch("riot.cli.Session.run") as run:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(riot.cli.main, ["run", "^pattern.*"])
            # Success, but no output because we mock run
            assert result.exit_code == 0
            assert result.stdout == ""

            run.assert_called_once()
            kwargs = run.call_args.kwargs
            assert set(kwargs.keys()) == set(
                [
                    "pattern",
                    "venv_pattern",
                    "recreate_venvs",
                    "skip_base_install",
                    "pass_env",
                    "cmdargs",
                    "pythons",
                ]
            )
            assert kwargs["pattern"].pattern == "^pattern.*"
            assert kwargs["venv_pattern"].pattern == ".*"
            assert kwargs["recreate_venvs"] is False
            assert kwargs["skip_base_install"] is False
            assert kwargs["pass_env"] is False
Example #11
0
File: test_cli.py Project: p7g/riot
def test_run_suites_with_long_args(cli: click.testing.CliRunner):
    """Running run with long option names uses those options"""
    with mock.patch("riot.cli.Session.run_suites") as run_suites:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(
                riot.cli.main,
                [
                    "run", "--recreate-venvs", "--skip-base-install",
                    "--pass-env"
                ],
            )
            # Success, but no output because we mock run_suites
            assert result.exit_code == 0
            assert result.stdout == ""

            run_suites.assert_called_once()
            kwargs = run_suites.call_args.kwargs
            assert set(kwargs.keys()) == set([
                "pattern",
                "recreate_venvs",
                "skip_base_install",
                "pass_env",
                "pythons",
            ])
            assert kwargs["pattern"].pattern == ".*"
            assert kwargs["recreate_venvs"] == True
            assert kwargs["skip_base_install"] == True
            assert kwargs["pass_env"] == True
Example #12
0
File: test_cli.py Project: p7g/riot
def test_list_no_riotfile(cli: click.testing.CliRunner):
    """Running list with no riotfile fails with an error"""
    with without_riotfile(cli):
        result = cli.invoke(riot.cli.main, ["list"])
        assert result.exit_code == 2
        assert result.stdout.startswith("Usage: main")
        assert result.stdout.endswith(
            "Error: Invalid value for '-f' / '--file': Path 'riotfile.py' does not exist.\n"
        )
Example #13
0
def test_riotfile_execute_error(cli: click.testing.CliRunner) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write("""
this is invalid syntax
            """)

        result = cli.invoke(riot.cli.main, ["list"], catch_exceptions=False)
        assert result.exit_code == 1
        assert "Failed to parse" in result.stdout
        assert "SyntaxError: invalid syntax" in result.stdout
Example #14
0
File: test_cli.py Project: p7g/riot
def test_list_with_pattern(cli: click.testing.CliRunner):
    """Running list with a pattern passes through the pattern"""
    with mock.patch("riot.cli.Session.list_suites") as list_suites:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(riot.cli.main, ["list", "^pattern.*"])
            # Success, but no output because we don't have a matching pattern
            assert result.exit_code == 0
            assert result.stdout == ""

            list_suites.assert_called_once()
            assert list_suites.call_args.args[0].pattern == "^pattern.*"
Example #15
0
def test_list_with_venv_pattern(cli: click.testing.CliRunner) -> None:
    """Running list with a venv pattern passes."""
    with with_riotfile(cli, "simple_riotfile.py"):
        result = cli.invoke(
            riot.cli.main,
            [
                "list",
                "test",
                "--venv-pattern",
                "pytest543$",
            ],
        )
        assert result.exit_code == 0
        assert result.stdout == ""
Example #16
0
def test_list_with_venv_pattern(cli: click.testing.CliRunner) -> None:
    """Running list with a venv pattern passes."""
    with with_riotfile(cli, "simple_riotfile.py"):
        result = cli.invoke(
            riot.cli.main,
            [
                "list",
                "test",
                "--venv-pattern",
                "pytest543$",
            ],
        )
        if result.exception:
            raise result.exception
        assert result.exit_code == 0, result.stdout
        assert result.stdout == "test  Python Interpreter(_hint='3') 'pytest==5.4.3'\n"
Example #17
0
def test_run_no_venv_pattern(cli: click.testing.CliRunner) -> None:
    """Running run with pattern passes in that pattern."""
    with with_riotfile(cli, "simple_riotfile.py"):
        result = cli.invoke(
            riot.cli.main,
            [
                "run",
                "test",
                "-d",
                "--skip-base-install",
            ],
        )
        assert result.exit_code == 0
        assert "✓ test:  pythonInterpreter(_hint='3') 'pytest==5.4.3'" in result.stdout
        assert "✓ test:  pythonInterpreter(_hint='3') 'pytest'" in result.stdout
        assert "2 passed with 0 warnings, 0 failed" in result.stdout
Example #18
0
def test_run_suites_cmdargs_not_set(
    cli: click.testing.CliRunner, name: str, cmdargs: str, cmdrun: str
):
    """Running command with optional infix cmdargs"""
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write(
                """
from riot import Venv

venv = Venv(
    venvs=[
        Venv(
            name="test_nocmdargs",
            command="echo no cmdargs",
            venvs=[
                Venv(
                    pys=[3.8],
                ),
            ],
        ),
        Venv(
            name="test_cmdargs",
            command="echo cmdargs={cmdargs}",
            venvs=[
                Venv(
                    pys=[3.8],
                ),
            ],
        ),
    ]
)
            """
            )
        with mock.patch("subprocess.run") as subprocess_run:
            subprocess_run.return_value.returncode = 0
            args = ["run", name]
            if cmdargs:
                args += ["--cmdargs", cmdargs]
            result = cli.invoke(riot.cli.main, args, catch_exceptions=False)
            assert result.exit_code == 0
            assert result.stdout == ""

            subprocess_run.assert_called()

            cmd = subprocess_run.call_args_list[-1].args[0]
            assert cmd.endswith(cmdrun)
Example #19
0
File: test_cli.py Project: p7g/riot
def test_generate_base_venvs_with_pattern(cli: click.testing.CliRunner):
    """Generatening generate with pattern passes in that pattern"""
    with mock.patch(
            "riot.cli.Session.generate_base_venvs") as generate_base_venvs:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(riot.cli.main, ["generate", "^pattern.*"])
            # Success, but no output because we mock generate_base_venvs
            assert result.exit_code == 0
            assert result.stdout == ""

            generate_base_venvs.assert_called_once()
            kwargs = generate_base_venvs.call_args.kwargs
            assert set(kwargs.keys()) == set(
                ["pattern", "recreate", "skip_deps", "pythons"])
            assert kwargs["pattern"].pattern == "^pattern.*"
            assert kwargs["recreate"] == False
            assert kwargs["skip_deps"] == False
Example #20
0
def test_generate_base_venvs_with_short_args(cli: click.testing.CliRunner) -> None:
    """Generatening generate with short option names uses those options."""
    with mock.patch("riot.cli.Session.generate_base_venvs") as generate_base_venvs:
        with with_riotfile(cli, "empty_riotfile.py"):
            result = cli.invoke(riot.cli.main, ["generate", "-r", "-s"])
            # Success, but no output because we mock generate_base_venvs
            assert result.exit_code == 0
            assert result.stdout == ""

            generate_base_venvs.assert_called_once()
            kwargs = generate_base_venvs.call_args.kwargs
            assert set(kwargs.keys()) == set(
                ["pattern", "recreate", "skip_deps", "pythons"]
            )
            assert kwargs["pattern"].pattern == ".*"
            assert kwargs["recreate"] is True
            assert kwargs["skip_deps"] is True
Example #21
0
def test_default_env(cli: click.testing.CliRunner) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write(
                """
from riot import Venv, latest

venv = Venv(
    pkgs={
        "pytest": latest,
    },
    venvs=[
        Venv(
            pys=[3],
            pkgs={"packaging": ">=21.3"},
            name="envtest",
            command="pytest",
        ),
    ],
)
            """
            )

        with open("test_success.py", "w") as f:
            f.write(
                """
import os

def test_success():
    assert os.environ["RIOT"] == "1"
    assert os.environ["RIOT_PYTHON_HINT"] == "Interpreter(_hint='3')"
    assert os.environ["RIOT_PYTHON_VERSION"].startswith("3.")
    assert os.environ["RIOT_VENV_HASH"] == "f8691e0"
    assert os.environ["RIOT_VENV_IDENT"] == "packaging213"
    assert os.environ["RIOT_VENV_NAME"] == "envtest"
    assert os.environ["RIOT_VENV_PKGS"] == "'packaging>=21.3'"
    assert os.environ["RIOT_VENV_FULL_PKGS"] == "'pytest' 'packaging>=21.3'"
            """
            )

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "envtest"], catch_exceptions=False
        )
        assert result.exit_code == 0
        assert "✓ envtest" in result.stdout
Example #22
0
File: test_cli.py Project: p7g/riot
def test_list_empty(cli: click.testing.CliRunner):
    """Running list with an empty riotfile prints nothing"""
    with with_riotfile(cli, "empty_riotfile.py"):
        result = cli.invoke(riot.cli.main, ["list"])
        assert result.exit_code == 0
        assert result.stdout == ""
Example #23
0
File: test_cli.py Project: p7g/riot
def test_main_version(cli: click.testing.CliRunner):
    """Running main with --version returns version string"""
    result = cli.invoke(riot.cli.main, ["--version"])
    assert result.exit_code == 0
    assert result.stdout.startswith("main, version ")
Example #24
0
File: test_cli.py Project: p7g/riot
def test_main_help(cli: click.testing.CliRunner):
    """Running main with --help returns usage"""
    result = cli.invoke(riot.cli.main, ["--help"])
    assert result.exit_code == 0
    assert result.stdout.startswith("Usage: main")
Example #25
0
File: test_cli.py Project: p7g/riot
def test_main(cli: click.testing.CliRunner):
    """Running main with no command returns usage"""
    result = cli.invoke(riot.cli.main)
    assert result.exit_code == 0
    assert result.stdout.startswith("Usage: main")
Example #26
0
def test_run_pass_env(
    cli: click.testing.CliRunner, monkeypatch: _pytest.monkeypatch.MonkeyPatch
) -> None:
    with cli.isolated_filesystem():
        with open("riotfile.py", "w") as f:
            f.write(
                """
from riot import Venv


venv = Venv(
    pys=[3],
    pkgs={
        "pytest": [""],
    },
    venvs=[
        Venv(
            name="no_env",
            command="pytest test_no_env.py",
        ),
        Venv(
            name="env",
            command="pytest test_env.py",
        ),
    ],
)
                """
            )

        with open("test_no_env.py", "w") as f:
            f.write(
                """
import os


def test_no_env():
    assert os.environ.get("TEST_ENV_VAR") is None
            """
            )

        with open("test_env.py", "w") as f:
            f.write(
                """
import os


def test_env():
    assert os.environ.get("TEST_ENV_VAR") == "1"
            """
            )

        # set environment variables to check in test execution
        monkeypatch.setenv("TEST_ENV_VAR", "1")

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "no_env"], catch_exceptions=False
        )
        assert result.exit_code == 0
        assert "1 passed with 0 warnings, 0 failed" in result.stdout

        result = cli.invoke(riot.cli.main, ["run", "-s", "env"], catch_exceptions=False)
        assert result.exit_code == 1
        assert "0 passed with 0 warnings, 1 failed" in result.stdout

        result = cli.invoke(
            riot.cli.main, ["run", "-s", "--pass-env", "env"], catch_exceptions=False
        )
        assert result.exit_code == 0
        assert "1 passed with 0 warnings, 0 failed" in result.stdout