8000 Tests for pytest plugin by tony · Pull Request #413 · vcs-python/libvcs · GitHub
[go: up one dir, main page]

Skip to content

Tests for pytest plugin #413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from libvcs.conftest import * # NOQA: F4

pytest_plugins = ["pytester"]
30 changes: 0 additions & 30 deletions tests/sync/test_pytest_plugin.py

This file was deleted.

109 changes: 109 additions & 0 deletions tests/test_pytest_plugin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
import pathlib
import shutil
import textwrap

import pytest

import _pytest.pytester

from libvcs.pytest_plugin import CreateProjectCallbackFixtureProtocol


@pytest.mark.skipif(not shutil.which("git"), reason="git is not available")
def test_create_git_remote_repo(
create_git_remote_repo: CreateProjectCallbackFixtureProtocol,
tmp_path: pathlib.Path,
projects_path: pathlib.Path,
) -> None:
git_remote_1 = create_git_remote_repo()
git_remote_2 = create_git_remote_repo()

assert git_remote_1 != git_remote_2


@pytest.mark.skipif(not shutil.which("svn"), reason="svn is not available")
def test_create_svn_remote_repo(
create_svn_remote_repo: CreateProjectCallbackFixtureProtocol,
tmp_path: pathlib.Path,
projects_path: pathlib.Path,
) -> None:
svn_remote_1 = create_svn_remote_repo()
svn_remote_2 = create_svn_remote_repo()

assert svn_remote_1 != svn_remote_2


def test_plugin(
pytester: _pytest.pytester.Pytester,
monkeypatch: pytest.MonkeyPatch,
) -> None:
# Initialize variables
pytester.plugins = ["pytest_plugin"]
pytester.makefile(
".ini",
pytest=textwrap.dedent(
"""
[pytest]
addopts=-vv
""".strip()
),
)
pytester.makeconftest(
textwrap.dedent(
r"""
import pathlib
import pytest

@pytest.fixture(autouse=True)
def setup(
request: pytest.FixtureRequest,
gitconfig: pathlib.Path,
set_home: pathlib.Path,
) -> None:
pass
"""
)
)
tests_path = pytester.path / "tests"
files = {
"example.py": textwrap.dedent(
"""
import pathlib

from libvcs.sync.git import GitSync
from libvcs.pytest_plugin import CreateProjectCallbackFixtureProtocol

def test_repo_git_remote_checkout(
create_git_remote_repo: CreateProjectCallbackFixtureProtocol,
tmp_path: pathlib.Path,
projects_path: pathlib.Path,
) -> None:
git_server = create_git_remote_repo()
git_repo_checkout_dir = projects_path / "my_git_checkout"
git_repo = GitSync(dir=str(git_repo_checkout_dir), url=f"file://{git_server!s}")

git_repo.obtain()
git_repo.update_repo()

assert git_repo.get_revision() == "initial"

assert git_repo_checkout_dir.exists()
assert pathlib.Path(git_repo_checkout_dir / ".git").exists()
"""
)
}
first_test_key = list(files.keys())[0]
first_test_filename = str(tests_path / first_test_key)

# Setup: Files
tests_path.mkdir()
for file_name, text in files.items():
rst_file = tests_path / file_name
rst_file.write_text(
text,
encoding="utf-8",
)

# Test
result = pytester.runpytest(str(first_test_filename))
result.assert_outcomes(passed=1)
0