diff options
author | Jon Bernard <jbernard@jbernard.io> | 2018-10-02 21:19:47 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@jbernard.io> | 2019-03-05 10:16:06 -0500 |
commit | ac121c58aee4a606626bd387d782151eb58d6a67 (patch) | |
tree | 2462233963d11d62fe1f3e8af65959128f543913 /tests | |
parent | 2c14d3073c073957e36533d56dce59a1b1abc0b4 (diff) | |
download | dotfiles-ac121c58aee4a606626bd387d782151eb58d6a67.tar.gz dotfiles-ac121c58aee4a606626bd387d782151eb58d6a67.tar.bz2 dotfiles-ac121c58aee4a606626bd387d782151eb58d6a67.zip |
Start transition from py.path to pathlib
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_repository.py | 169 |
1 files changed, 93 insertions, 76 deletions
diff --git a/tests/test_repository.py b/tests/test_repository.py index 60ae8e3..ef78001 100644 --- a/tests/test_repository.py +++ b/tests/test_repository.py @@ -1,116 +1,133 @@ import pytest -import py.path +from pathlib import Path from dotfiles.repository import Repository, \ - DEFAULT_REMOVE_LEADING_DOT, DEFAULT_IGNORE_PATTERNS -from dotfiles.exceptions import NotRootedInHome, InRepository, TargetIgnored, \ - IsDirectory + REMOVE_LEADING_DOT, IGNORE_PATTERNS def test_repo_create(repo): - repo.path.remove() - assert repo.path.check(exists=0) + repo.path.rmdir() + assert not repo.path.exists() + Repository(repo.path, repo.homedir) - assert repo.path.check(exists=1, dir=1) + assert repo.path.exists() + assert repo.path.is_dir() + +@pytest.mark.parametrize('dot', [REMOVE_LEADING_DOT, not REMOVE_LEADING_DOT]) +@pytest.mark.parametrize('ignore', [IGNORE_PATTERNS, ['foo', 'bar', 'baz']]) +def test_params(repo, dot, ignore): -@pytest.mark.parametrize('remove_leading_dot', - [DEFAULT_REMOVE_LEADING_DOT, - not DEFAULT_REMOVE_LEADING_DOT]) -@pytest.mark.parametrize('ignore_patterns', [DEFAULT_IGNORE_PATTERNS, - ['foo', 'bar', 'baz']]) -def test_repo_params(repo, remove_leading_dot, ignore_patterns): _repo = Repository(repo.path, - remove_leading_dot=remove_leading_dot, - ignore_patterns=ignore_patterns, - homedir=repo.homedir) + homedir=repo.homedir, + remove_leading_dot=dot, + ignore_patterns=ignore) + assert _repo.path == repo.path assert _repo.homedir == repo.homedir - assert _repo.remove_leading_dot == remove_leading_dot - assert _repo.ignore_patterns == ignore_patterns + assert _repo.remove_leading_dot == dot + assert _repo.ignore_patterns == ignore + + +def test_contents(repo): + assert repo.contents() == [] + + target_a = repo.path / 'a' + target_b = repo.path / 'b/b' + target_c = repo.path / 'c/c/c' + + target_b.parent.mkdir() + target_c.parent.mkdir(parents=True) + + target_a.touch() + target_b.touch() + target_c.touch() + + contents = repo.contents() + + assert contents[0].target == target_a + assert contents[1].target == target_b + assert contents[2].target == target_c def test_str(repo): - repo.path.ensure('a') - repo.path.ensure('b') - repo.path.ensure('c') + + Path(repo.path / 'a').touch() + Path(repo.path / 'b').touch() + Path(repo.path / 'c').touch() + assert str(repo) == ( - '%s\n%s\n%s' % (repo.homedir.join('.a'), - repo.homedir.join('.b'), - repo.homedir.join('.c'))) + '%s\n%s\n%s' % (repo.homedir / '.a', + repo.homedir / '.b', + repo.homedir / '.c')) @pytest.mark.parametrize('path', ['.foo', '.foo/bar/baz']) def test_dotfile_path(repo, path): + repo.remove_leading_dot = False - assert (repo._dotfile_path(repo.path.join(path)) == - repo.homedir.join(path)) + assert (repo._dotfile_path(repo.path / path) == + repo.homedir / path) + repo.remove_leading_dot = True - assert (repo._dotfile_path(repo.path.join(path)) == - repo.homedir.join('.%s' % path)) + assert (repo._dotfile_path(repo.path / path) == + repo.homedir / ('.%s' % path)) @pytest.mark.parametrize('path', ['.foo', '.foo/bar/baz']) def test_dotfile_target(repo, path): - repo.remove_leading_dot = False - assert (repo._dotfile_target(repo.homedir.join(path)) == - repo.path.join(path)) - repo.remove_leading_dot = True - assert (repo._dotfile_target(repo.homedir.join(path)) == - repo.path.join(path[1:])) + repo.remove_leading_dot = False + assert (repo._dotfile_target(repo.homedir / path) == + repo.path / path) -def test_dotfile(repo): - with pytest.raises(NotRootedInHome): - repo._dotfile(py.path.local('/tmp/foo')) - with pytest.raises(TargetIgnored): - repo.ignore_patterns = ['.foo'] - repo.remove_leading_dot = False - repo._dotfile(py.path.local(repo.homedir.join('.foo'))) - with pytest.raises(TargetIgnored): - repo.ignore_patterns = ['foo'] - repo._dotfile(repo.homedir.join('.bar/foo')) - with pytest.raises(IsDirectory): - repo._dotfile(repo.homedir.ensure_dir('.config')) + repo.remove_leading_dot = True + assert (repo._dotfile_target(repo.homedir / path) == + repo.path / path[1:]) - # The repo fixture is parametrized, we can only expect InRepository - # exception when the repository is contained in the home directory. - if repo.path.dirname == repo.homedir.basename: - with pytest.raises(InRepository): - repo._dotfile(repo.path.join('.foo/bar')) - repo._dotfile(repo.homedir.join('.foo')) +# from dotfiles.exceptions import NotRootedInHome, InRepository, TargetIgnored, +# IsDirectory -def test_dotfiles(repo): - file = repo.homedir.join('.baz') - dir = repo.homedir.ensure_dir('.dir') - dir.ensure('foo/bat') - dir.ensure('foo/buz') - dir.ensure('bar') - dir.ensure('boo') +# def test_dotfile(repo): +# with pytest.raises(NotRootedInHome): +# repo._dotfile(py.path.local('/tmp/foo')) +# with pytest.raises(TargetIgnored): +# repo.ignore_patterns = ['.foo'] +# repo.remove_leading_dot = False +# repo._dotfile(py.path.local(repo.homedir.join('.foo'))) +# with pytest.raises(TargetIgnored): +# repo.ignore_patterns = ['foo'] +# repo._dotfile(repo.homedir.join('.bar/foo')) +# with pytest.raises(IsDirectory): +# repo._dotfile(repo.homedir.ensure_dir('.config')) - dotfiles = repo.dotfiles([str(file), str(dir)]) - assert len(dotfiles) == 5 +# # The repo fixture is parametrized, we can only expect InRepository +# # exception when the repository is contained in the home directory. +# if repo.path.dirname == repo.homedir.basename: +# with pytest.raises(InRepository): +# repo._dotfile(repo.path.join('.foo/bar')) +# repo._dotfile(repo.homedir.join('.foo')) -def test_contents(repo): - assert repo.contents() == [] - target_a = repo.path.ensure('a') - target_b = repo.path.ensure('b/b') - target_c = repo.path.ensure('c/c/c') - contents = repo.contents() +# def test_dotfiles(repo): +# file = repo.homedir.join('.baz') +# dir = repo.homedir.ensure_dir('.dir') +# dir.ensure('foo/bat') +# dir.ensure('foo/buz') +# dir.ensure('bar') +# dir.ensure('boo') - assert contents[0].target == target_a - assert contents[1].target == target_b - assert contents[2].target == target_c +# dotfiles = repo.dotfiles([str(file), str(dir)]) +# assert len(dotfiles) == 5 -def test_prune(repo): - repo.path.ensure_dir('.a/a') - repo.path.ensure_dir('.b/b/b/b') - repo.path.ensure_dir('.c/c/c/c/c/c/c/c') +# def test_prune(repo): +# repo.path.ensure_dir('.a/a') +# repo.path.ensure_dir('.b/b/b/b') +# repo.path.ensure_dir('.c/c/c/c/c/c/c/c') - repo.prune() - assert len(repo.path.listdir()) == 0 +# repo.prune() +# assert len(repo.path.listdir()) == 0 |