mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 12:30:08 -06:00
84 lines
2.0 KiB
Python
84 lines
2.0 KiB
Python
|
|
import os
|
|
import pytest
|
|
import stat
|
|
from plumbum import local
|
|
|
|
from pre_commit import git
|
|
|
|
|
|
def test_get_root(empty_git_dir):
|
|
assert git.get_root() == empty_git_dir
|
|
|
|
foo = local.path('foo')
|
|
foo.mkdir()
|
|
|
|
with local.cwd(foo):
|
|
assert git.get_root() == empty_git_dir
|
|
|
|
|
|
def test_get_pre_commit_path(empty_git_dir):
|
|
assert git.get_pre_commit_path() == '{0}/.git/hooks/pre-commit'.format(
|
|
empty_git_dir,
|
|
)
|
|
|
|
|
|
def test_create_pre_commit(empty_git_dir):
|
|
git.create_pre_commit()
|
|
assert len(open(git.get_pre_commit_path(), 'r').read()) > 0
|
|
stat_result = os.stat(git.get_pre_commit_path())
|
|
assert stat_result.st_mode & stat.S_IXUSR
|
|
assert stat_result.st_mode & stat.S_IXGRP
|
|
assert stat_result.st_mode & stat.S_IXOTH
|
|
|
|
|
|
def test_remove_pre_commit(empty_git_dir):
|
|
git.remove_pre_commit()
|
|
|
|
assert not os.path.exists(git.get_pre_commit_path())
|
|
|
|
git.create_pre_commit()
|
|
git.remove_pre_commit()
|
|
|
|
assert not os.path.exists(git.get_pre_commit_path())
|
|
|
|
|
|
@pytest.fixture
|
|
def get_files_matching_func():
|
|
def get_filenames():
|
|
return (
|
|
'pre_commit/run.py',
|
|
'pre_commit/git.py',
|
|
'im_a_file_that_doesnt_exist.py',
|
|
'manifest.yaml',
|
|
)
|
|
|
|
return git.get_files_matching(get_filenames)
|
|
|
|
|
|
def test_get_files_matching_base(get_files_matching_func):
|
|
ret = get_files_matching_func('')
|
|
assert ret == set([
|
|
'pre_commit/run.py',
|
|
'pre_commit/git.py',
|
|
'manifest.yaml',
|
|
])
|
|
|
|
|
|
def test_get_files_matching_total_match(get_files_matching_func):
|
|
ret = get_files_matching_func('^.*\.py$')
|
|
assert ret == set([
|
|
'pre_commit/run.py',
|
|
'pre_commit/git.py',
|
|
])
|
|
|
|
|
|
def test_does_search_instead_of_match(get_files_matching_func):
|
|
ret = get_files_matching_func('\.yaml$')
|
|
assert ret == set(['manifest.yaml'])
|
|
|
|
|
|
def test_does_not_include_deleted_fileS(get_files_matching_func):
|
|
ret = get_files_matching_func('exist.py')
|
|
assert ret == set()
|