Separate store from runner

This commit is contained in:
Anthony Sottile 2018-06-29 22:35:53 -07:00
parent 6d683a5fac
commit c01ffc83f8
15 changed files with 228 additions and 347 deletions

View file

@ -7,6 +7,7 @@ import os.path
import sys import sys
from pre_commit import output from pre_commit import output
from pre_commit.repository import repositories
from pre_commit.util import cmd_output from pre_commit.util import cmd_output
from pre_commit.util import make_executable from pre_commit.util import make_executable
from pre_commit.util import mkdirp from pre_commit.util import mkdirp
@ -36,7 +37,7 @@ def is_our_script(filename):
def install( def install(
runner, overwrite=False, hooks=False, hook_type='pre-commit', runner, store, overwrite=False, hooks=False, hook_type='pre-commit',
skip_on_missing_conf=False, skip_on_missing_conf=False,
): ):
"""Install the pre-commit hooks.""" """Install the pre-commit hooks."""
@ -89,13 +90,13 @@ def install(
# If they requested we install all of the hooks, do so. # If they requested we install all of the hooks, do so.
if hooks: if hooks:
install_hooks(runner) install_hooks(runner, store)
return 0 return 0
def install_hooks(runner): def install_hooks(runner, store):
for repository in runner.repositories: for repository in repositories(runner.config, store):
repository.require_installed() repository.require_installed()

View file

@ -13,6 +13,7 @@ from pre_commit import color
from pre_commit import git from pre_commit import git
from pre_commit import output from pre_commit import output
from pre_commit.output import get_hook_message from pre_commit.output import get_hook_message
from pre_commit.repository import repositories
from pre_commit.staged_files_only import staged_files_only from pre_commit.staged_files_only import staged_files_only
from pre_commit.util import cmd_output from pre_commit.util import cmd_output
from pre_commit.util import memoize_by_cwd from pre_commit.util import memoize_by_cwd
@ -223,7 +224,7 @@ def _has_unstaged_config(runner):
return retcode == 1 return retcode == 1
def run(runner, args, environ=os.environ): def run(runner, store, args, environ=os.environ):
no_stash = args.all_files or bool(args.files) no_stash = args.all_files or bool(args.files)
# Check if we have unresolved merge conflict files and fail fast. # Check if we have unresolved merge conflict files and fail fast.
@ -248,11 +249,11 @@ def run(runner, args, environ=os.environ):
if no_stash: if no_stash:
ctx = noop_context() ctx = noop_context()
else: else:
ctx = staged_files_only(runner.store.directory) ctx = staged_files_only(store.directory)
with ctx: with ctx:
repo_hooks = [] repo_hooks = []
for repo in runner.repositories: for repo in repositories(runner.config, store):
for _, hook in repo.hooks: for _, hook in repo.hooks:
if ( if (
(not args.hook or hook['id'] == args.hook) and (not args.hook or hook['id'] == args.hook) and

View file

@ -20,10 +20,11 @@ def try_repo(args):
ref = args.ref or git.head_rev(args.repo) ref = args.ref or git.head_rev(args.repo)
with tmpdir() as tempdir: with tmpdir() as tempdir:
store = Store(tempdir)
if args.hook: if args.hook:
hooks = [{'id': args.hook}] hooks = [{'id': args.hook}]
else: else:
repo_path = Store(tempdir).clone(args.repo, ref) repo_path = store.clone(args.repo, ref)
manifest = load_manifest(os.path.join(repo_path, C.MANIFEST_FILE)) manifest = load_manifest(os.path.join(repo_path, C.MANIFEST_FILE))
manifest = sorted(manifest, key=lambda hook: hook['id']) manifest = sorted(manifest, key=lambda hook: hook['id'])
hooks = [{'id': hook['id']} for hook in manifest] hooks = [{'id': hook['id']} for hook in manifest]
@ -42,5 +43,4 @@ def try_repo(args):
output.write(config_s) output.write(config_s)
output.write_line('=' * 79) output.write_line('=' * 79)
runner = Runner('.', config_filename, store_dir=tempdir) return run(Runner('.', config_filename), store, args)
return run(runner, args)

View file

@ -21,6 +21,7 @@ from pre_commit.commands.try_repo import try_repo
from pre_commit.error_handler import error_handler from pre_commit.error_handler import error_handler
from pre_commit.logging_handler import add_logging_handler from pre_commit.logging_handler import add_logging_handler
from pre_commit.runner import Runner from pre_commit.runner import Runner
from pre_commit.store import Store
logger = logging.getLogger('pre_commit') logger = logging.getLogger('pre_commit')
@ -230,32 +231,34 @@ def main(argv=None):
with error_handler(): with error_handler():
add_logging_handler(args.color) add_logging_handler(args.color)
runner = Runner.create(args.config) runner = Runner.create(args.config)
store = Store()
git.check_for_cygwin_mismatch() git.check_for_cygwin_mismatch()
if args.command == 'install': if args.command == 'install':
return install( return install(
runner, overwrite=args.overwrite, hooks=args.install_hooks, runner, store,
overwrite=args.overwrite, hooks=args.install_hooks,
hook_type=args.hook_type, hook_type=args.hook_type,
skip_on_missing_conf=args.allow_missing_config, skip_on_missing_conf=args.allow_missing_config,
) )
elif args.command == 'install-hooks': elif args.command == 'install-hooks':
return install_hooks(runner) return install_hooks(runner, store)
elif args.command == 'uninstall': elif args.command == 'uninstall':
return uninstall(runner, hook_type=args.hook_type) return uninstall(runner, hook_type=args.hook_type)
elif args.command == 'clean': elif args.command == 'clean':
return clean(runner.store) return clean(store)
elif args.command == 'autoupdate': elif args.command == 'autoupdate':
if args.tags_only: if args.tags_only:
logger.warning('--tags-only is the default') logger.warning('--tags-only is the default')
return autoupdate( return autoupdate(
runner, runner.store, runner, store,
tags_only=not args.bleeding_edge, tags_only=not args.bleeding_edge,
repos=args.repos, repos=args.repos,
) )
elif args.command == 'migrate-config': elif args.command == 'migrate-config':
return migrate_config(runner) return migrate_config(runner)
elif args.command == 'run': elif args.command == 'run':
return run(runner, args) return run(runner, store, args)
elif args.command == 'sample-config': elif args.command == 'sample-config':
return sample_config() return sample_config()
elif args.command == 'try-repo': elif args.command == 'try-repo':

View file

@ -2,17 +2,18 @@ import argparse
import pre_commit.constants as C import pre_commit.constants as C
from pre_commit import git from pre_commit import git
from pre_commit.clientlib import load_config
from pre_commit.commands.run import _filter_by_include_exclude from pre_commit.commands.run import _filter_by_include_exclude
from pre_commit.commands.run import _filter_by_types from pre_commit.commands.run import _filter_by_types
from pre_commit.runner import Runner from pre_commit.repository import repositories
from pre_commit.store import Store
def check_all_hooks_match_files(config_file): def check_all_hooks_match_files(config_file):
runner = Runner.create(config_file)
files = git.get_all_files() files = git.get_all_files()
retv = 0 retv = 0
for repo in runner.repositories: for repo in repositories(load_config(config_file), Store()):
for hook_id, hook in repo.hooks: for hook_id, hook in repo.hooks:
if hook['always_run']: if hook['always_run']:
continue continue

View file

@ -282,3 +282,7 @@ class MetaRepository(LocalRepository):
(hook['id'], _hook(self.manifest_hooks[hook['id']], hook)) (hook['id'], _hook(self.manifest_hooks[hook['id']], hook))
for hook in self.repo_config['hooks'] for hook in self.repo_config['hooks']
) )
def repositories(config, store):
return tuple(Repository.create(x, store) for x in config['repos'])

View file

@ -6,8 +6,6 @@ from cached_property import cached_property
from pre_commit import git from pre_commit import git
from pre_commit.clientlib import load_config from pre_commit.clientlib import load_config
from pre_commit.repository import Repository
from pre_commit.store import Store
class Runner(object): class Runner(object):
@ -15,10 +13,9 @@ class Runner(object):
repository under test. repository under test.
""" """
def __init__(self, git_root, config_file, store_dir=None): def __init__(self, git_root, config_file):
self.git_root = git_root self.git_root = git_root
self.config_file = config_file self.config_file = config_file
self._store_dir = store_dir
@classmethod @classmethod
def create(cls, config_file): def create(cls, config_file):
@ -42,12 +39,6 @@ class Runner(object):
def config(self): def config(self):
return load_config(self.config_file_path) return load_config(self.config_file_path)
@cached_property
def repositories(self):
"""Returns a tuple of the configured repositories."""
repos = self.config['repos']
return tuple(Repository.create(x, self.store) for x in repos)
def get_hook_path(self, hook_type): def get_hook_path(self, hook_type):
return os.path.join(self.git_dir, 'hooks', hook_type) return os.path.join(self.git_dir, 'hooks', hook_type)
@ -58,7 +49,3 @@ class Runner(object):
@cached_property @cached_property
def pre_push_path(self): def pre_push_path(self):
return self.get_hook_path('pre-push') return self.get_hook_path('pre-push')
@cached_property
def store(self):
return Store(self._store_dir)

View file

@ -39,10 +39,7 @@ class Store(object):
__created = False __created = False
def __init__(self, directory=None): def __init__(self, directory=None):
if directory is None: self.directory = directory or Store.get_default_directory()
directory = self.get_default_directory()
self.directory = directory
@contextlib.contextmanager @contextlib.contextmanager
def exclusive_lock(self): def exclusive_lock(self):

View file

@ -45,44 +45,44 @@ def test_is_previous_pre_commit(tmpdir):
assert is_our_script(f.strpath) assert is_our_script(f.strpath)
def test_install_pre_commit(tempdir_factory): def test_install_pre_commit(tempdir_factory, store):
path = git_dir(tempdir_factory) path = git_dir(tempdir_factory)
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
assert not install(runner) assert not install(runner, store)
assert os.access(runner.pre_commit_path, os.X_OK) assert os.access(runner.pre_commit_path, os.X_OK)
assert not install(runner, hook_type='pre-push') assert not install(runner, store, hook_type='pre-push')
assert os.access(runner.pre_push_path, os.X_OK) assert os.access(runner.pre_push_path, os.X_OK)
def test_install_hooks_directory_not_present(tempdir_factory): def test_install_hooks_directory_not_present(tempdir_factory, store):
path = git_dir(tempdir_factory) path = git_dir(tempdir_factory)
# Simulate some git clients which don't make .git/hooks #234 # Simulate some git clients which don't make .git/hooks #234
hooks = os.path.join(path, '.git', 'hooks') hooks = os.path.join(path, '.git', 'hooks')
if os.path.exists(hooks): # pragma: no cover (latest git) if os.path.exists(hooks): # pragma: no cover (latest git)
shutil.rmtree(hooks) shutil.rmtree(hooks)
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
install(runner) install(runner, store)
assert os.path.exists(runner.pre_commit_path) assert os.path.exists(runner.pre_commit_path)
def test_install_refuses_core_hookspath(tempdir_factory): def test_install_refuses_core_hookspath(tempdir_factory, store):
path = git_dir(tempdir_factory) path = git_dir(tempdir_factory)
with cwd(path): with cwd(path):
cmd_output('git', 'config', '--local', 'core.hooksPath', 'hooks') cmd_output('git', 'config', '--local', 'core.hooksPath', 'hooks')
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
assert install(runner) assert install(runner, store)
@xfailif_no_symlink @xfailif_no_symlink
def test_install_hooks_dead_symlink( def test_install_hooks_dead_symlink(
tempdir_factory, tempdir_factory, store,
): # pragma: no cover (non-windows) ): # pragma: no cover (non-windows)
path = git_dir(tempdir_factory) path = git_dir(tempdir_factory)
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
mkdirp(os.path.dirname(runner.pre_commit_path)) mkdirp(os.path.dirname(runner.pre_commit_path))
os.symlink('/fake/baz', os.path.join(path, '.git', 'hooks', 'pre-commit')) os.symlink('/fake/baz', os.path.join(path, '.git', 'hooks', 'pre-commit'))
install(runner) install(runner, store)
assert os.path.exists(runner.pre_commit_path) assert os.path.exists(runner.pre_commit_path)
@ -93,11 +93,11 @@ def test_uninstall_does_not_blow_up_when_not_there(tempdir_factory):
assert ret == 0 assert ret == 0
def test_uninstall(tempdir_factory): def test_uninstall(tempdir_factory, store):
path = git_dir(tempdir_factory) path = git_dir(tempdir_factory)
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
assert not os.path.exists(runner.pre_commit_path) assert not os.path.exists(runner.pre_commit_path)
install(runner) install(runner, store)
assert os.path.exists(runner.pre_commit_path) assert os.path.exists(runner.pre_commit_path)
uninstall(runner) uninstall(runner)
assert not os.path.exists(runner.pre_commit_path) assert not os.path.exists(runner.pre_commit_path)
@ -136,29 +136,29 @@ NORMAL_PRE_COMMIT_RUN = re.compile(
) )
def test_install_pre_commit_and_run(tempdir_factory): def test_install_pre_commit_and_run(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
assert NORMAL_PRE_COMMIT_RUN.match(output) assert NORMAL_PRE_COMMIT_RUN.match(output)
def test_install_pre_commit_and_run_custom_path(tempdir_factory): def test_install_pre_commit_and_run_custom_path(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
cmd_output('git', 'mv', C.CONFIG_FILE, 'custom-config.yaml') cmd_output('git', 'mv', C.CONFIG_FILE, 'custom-config.yaml')
cmd_output('git', 'commit', '-m', 'move pre-commit config') cmd_output('git', 'commit', '-m', 'move pre-commit config')
assert install(Runner(path, 'custom-config.yaml')) == 0 assert install(Runner(path, 'custom-config.yaml'), store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
assert NORMAL_PRE_COMMIT_RUN.match(output) assert NORMAL_PRE_COMMIT_RUN.match(output)
def test_install_in_submodule_and_run(tempdir_factory): def test_install_in_submodule_and_run(tempdir_factory, store):
src_path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') src_path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
parent_path = git_dir(tempdir_factory) parent_path = git_dir(tempdir_factory)
cmd_output('git', 'submodule', 'add', src_path, 'sub', cwd=parent_path) cmd_output('git', 'submodule', 'add', src_path, 'sub', cwd=parent_path)
@ -166,13 +166,13 @@ def test_install_in_submodule_and_run(tempdir_factory):
sub_pth = os.path.join(parent_path, 'sub') sub_pth = os.path.join(parent_path, 'sub')
with cwd(sub_pth): with cwd(sub_pth):
assert install(Runner(sub_pth, C.CONFIG_FILE)) == 0 assert install(Runner(sub_pth, C.CONFIG_FILE), store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
assert NORMAL_PRE_COMMIT_RUN.match(output) assert NORMAL_PRE_COMMIT_RUN.match(output)
def test_commit_am(tempdir_factory): def test_commit_am(tempdir_factory, store):
"""Regression test for #322.""" """Regression test for #322."""
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
@ -183,16 +183,16 @@ def test_commit_am(tempdir_factory):
with io.open('unstaged', 'w') as foo_file: with io.open('unstaged', 'w') as foo_file:
foo_file.write('Oh hai') foo_file.write('Oh hai')
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
def test_unicode_merge_commit_message(tempdir_factory): def test_unicode_merge_commit_message(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
cmd_output('git', 'checkout', 'master', '-b', 'foo') cmd_output('git', 'checkout', 'master', '-b', 'foo')
cmd_output('git', 'commit', '--allow-empty', '-n', '-m', 'branch2') cmd_output('git', 'commit', '--allow-empty', '-n', '-m', 'branch2')
cmd_output('git', 'checkout', 'master') cmd_output('git', 'checkout', 'master')
@ -204,11 +204,11 @@ def test_unicode_merge_commit_message(tempdir_factory):
) )
def test_install_idempotent(tempdir_factory): def test_install_idempotent(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
@ -223,12 +223,12 @@ def _path_without_us():
]) ])
def test_environment_not_sourced(tempdir_factory): def test_environment_not_sourced(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
# Patch the executable to simulate rming virtualenv # Patch the executable to simulate rming virtualenv
with mock.patch.object(sys, 'executable', '/does-not-exist'): with mock.patch.object(sys, 'executable', '/does-not-exist'):
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
# Use a specific homedir to ignore --user installs # Use a specific homedir to ignore --user installs
homedir = tempdir_factory.get() homedir = tempdir_factory.get()
@ -264,10 +264,10 @@ FAILING_PRE_COMMIT_RUN = re.compile(
) )
def test_failing_hooks_returns_nonzero(tempdir_factory): def test_failing_hooks_returns_nonzero(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'failing_hook_repo') path = make_consuming_repo(tempdir_factory, 'failing_hook_repo')
with cwd(path): with cwd(path):
assert install(Runner(path, C.CONFIG_FILE)) == 0 assert install(Runner(path, C.CONFIG_FILE), store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 1 assert ret == 1
@ -282,7 +282,7 @@ EXISTING_COMMIT_RUN = re.compile(
) )
def test_install_existing_hooks_no_overwrite(tempdir_factory): def test_install_existing_hooks_no_overwrite(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
@ -299,7 +299,7 @@ def test_install_existing_hooks_no_overwrite(tempdir_factory):
assert EXISTING_COMMIT_RUN.match(output) assert EXISTING_COMMIT_RUN.match(output)
# Now install pre-commit (no-overwrite) # Now install pre-commit (no-overwrite)
assert install(runner) == 0 assert install(runner, store) == 0
# We should run both the legacy and pre-commit hooks # We should run both the legacy and pre-commit hooks
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
@ -308,7 +308,7 @@ def test_install_existing_hooks_no_overwrite(tempdir_factory):
assert NORMAL_PRE_COMMIT_RUN.match(output[len('legacy hook\n'):]) assert NORMAL_PRE_COMMIT_RUN.match(output[len('legacy hook\n'):])
def test_install_existing_hook_no_overwrite_idempotent(tempdir_factory): def test_install_existing_hook_no_overwrite_idempotent(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
@ -320,8 +320,8 @@ def test_install_existing_hook_no_overwrite_idempotent(tempdir_factory):
make_executable(runner.pre_commit_path) make_executable(runner.pre_commit_path)
# Install twice # Install twice
assert install(runner) == 0 assert install(runner, store) == 0
assert install(runner) == 0 assert install(runner, store) == 0
# We should run both the legacy and pre-commit hooks # We should run both the legacy and pre-commit hooks
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
@ -337,7 +337,7 @@ FAIL_OLD_HOOK = re.compile(
) )
def test_failing_existing_hook_returns_1(tempdir_factory): def test_failing_existing_hook_returns_1(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
@ -348,7 +348,7 @@ def test_failing_existing_hook_returns_1(tempdir_factory):
hook_file.write('#!/usr/bin/env bash\necho "fail!"\nexit 1\n') hook_file.write('#!/usr/bin/env bash\necho "fail!"\nexit 1\n')
make_executable(runner.pre_commit_path) make_executable(runner.pre_commit_path)
assert install(runner) == 0 assert install(runner, store) == 0
# We should get a failure from the legacy hook # We should get a failure from the legacy hook
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
@ -356,17 +356,18 @@ def test_failing_existing_hook_returns_1(tempdir_factory):
assert FAIL_OLD_HOOK.match(output) assert FAIL_OLD_HOOK.match(output)
def test_install_overwrite_no_existing_hooks(tempdir_factory): def test_install_overwrite_no_existing_hooks(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
assert install(Runner(path, C.CONFIG_FILE), overwrite=True) == 0 runner = Runner(path, C.CONFIG_FILE)
assert install(runner, store, overwrite=True) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
assert NORMAL_PRE_COMMIT_RUN.match(output) assert NORMAL_PRE_COMMIT_RUN.match(output)
def test_install_overwrite(tempdir_factory): def test_install_overwrite(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
@ -377,14 +378,14 @@ def test_install_overwrite(tempdir_factory):
hook_file.write('#!/usr/bin/env bash\necho "legacy hook"\n') hook_file.write('#!/usr/bin/env bash\necho "legacy hook"\n')
make_executable(runner.pre_commit_path) make_executable(runner.pre_commit_path)
assert install(runner, overwrite=True) == 0 assert install(runner, store, overwrite=True) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
assert NORMAL_PRE_COMMIT_RUN.match(output) assert NORMAL_PRE_COMMIT_RUN.match(output)
def test_uninstall_restores_legacy_hooks(tempdir_factory): def test_uninstall_restores_legacy_hooks(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
@ -396,7 +397,7 @@ def test_uninstall_restores_legacy_hooks(tempdir_factory):
make_executable(runner.pre_commit_path) make_executable(runner.pre_commit_path)
# Now install and uninstall pre-commit # Now install and uninstall pre-commit
assert install(runner) == 0 assert install(runner, store) == 0
assert uninstall(runner) == 0 assert uninstall(runner) == 0
# Make sure we installed the "old" hook correctly # Make sure we installed the "old" hook correctly
@ -405,7 +406,7 @@ def test_uninstall_restores_legacy_hooks(tempdir_factory):
assert EXISTING_COMMIT_RUN.match(output) assert EXISTING_COMMIT_RUN.match(output)
def test_replace_old_commit_script(tempdir_factory): def test_replace_old_commit_script(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
@ -424,7 +425,7 @@ def test_replace_old_commit_script(tempdir_factory):
make_executable(runner.pre_commit_path) make_executable(runner.pre_commit_path)
# Install normally # Install normally
assert install(runner) == 0 assert install(runner, store) == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
@ -453,39 +454,36 @@ PRE_INSTALLED = re.compile(
) )
def test_installs_hooks_with_hooks_True( def test_installs_hooks_with_hooks_True(tempdir_factory, store):
tempdir_factory,
mock_out_store_directory,
):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
install(Runner(path, C.CONFIG_FILE), hooks=True) install(Runner(path, C.CONFIG_FILE), store, hooks=True)
ret, output = _get_commit_output( ret, output = _get_commit_output(
tempdir_factory, pre_commit_home=mock_out_store_directory, tempdir_factory, pre_commit_home=store.directory,
) )
assert ret == 0 assert ret == 0
assert PRE_INSTALLED.match(output) assert PRE_INSTALLED.match(output)
def test_install_hooks_command(tempdir_factory, mock_out_store_directory): def test_install_hooks_command(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
install(runner) install(runner, store)
install_hooks(runner) install_hooks(runner, store)
ret, output = _get_commit_output( ret, output = _get_commit_output(
tempdir_factory, pre_commit_home=mock_out_store_directory, tempdir_factory, pre_commit_home=store.directory,
) )
assert ret == 0 assert ret == 0
assert PRE_INSTALLED.match(output) assert PRE_INSTALLED.match(output)
def test_installed_from_venv(tempdir_factory): def test_installed_from_venv(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
install(Runner(path, C.CONFIG_FILE)) install(Runner(path, C.CONFIG_FILE), store)
# No environment so pre-commit is not on the path when running! # No environment so pre-commit is not on the path when running!
# Should still pick up the python from when we installed # Should still pick up the python from when we installed
ret, output = _get_commit_output( ret, output = _get_commit_output(
@ -519,12 +517,12 @@ def _get_push_output(tempdir_factory):
)[:2] )[:2]
def test_pre_push_integration_failing(tempdir_factory): def test_pre_push_integration_failing(tempdir_factory, store):
upstream = make_consuming_repo(tempdir_factory, 'failing_hook_repo') upstream = make_consuming_repo(tempdir_factory, 'failing_hook_repo')
path = tempdir_factory.get() path = tempdir_factory.get()
cmd_output('git', 'clone', upstream, path) cmd_output('git', 'clone', upstream, path)
with cwd(path): with cwd(path):
install(Runner(path, C.CONFIG_FILE), hook_type='pre-push') install(Runner(path, C.CONFIG_FILE), store, hook_type='pre-push')
# commit succeeds because pre-commit is only installed for pre-push # commit succeeds because pre-commit is only installed for pre-push
assert _get_commit_output(tempdir_factory)[0] == 0 assert _get_commit_output(tempdir_factory)[0] == 0
@ -535,12 +533,12 @@ def test_pre_push_integration_failing(tempdir_factory):
assert 'hookid: failing_hook' in output assert 'hookid: failing_hook' in output
def test_pre_push_integration_accepted(tempdir_factory): def test_pre_push_integration_accepted(tempdir_factory, store):
upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo') upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
path = tempdir_factory.get() path = tempdir_factory.get()
cmd_output('git', 'clone', upstream, path) cmd_output('git', 'clone', upstream, path)
with cwd(path): with cwd(path):
install(Runner(path, C.CONFIG_FILE), hook_type='pre-push') install(Runner(path, C.CONFIG_FILE), store, hook_type='pre-push')
assert _get_commit_output(tempdir_factory)[0] == 0 assert _get_commit_output(tempdir_factory)[0] == 0
retc, output = _get_push_output(tempdir_factory) retc, output = _get_push_output(tempdir_factory)
@ -549,13 +547,13 @@ def test_pre_push_integration_accepted(tempdir_factory):
assert 'Passed' in output assert 'Passed' in output
def test_pre_push_new_upstream(tempdir_factory): def test_pre_push_new_upstream(tempdir_factory, store):
upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo') upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
upstream2 = git_dir(tempdir_factory) upstream2 = git_dir(tempdir_factory)
path = tempdir_factory.get() path = tempdir_factory.get()
cmd_output('git', 'clone', upstream, path) cmd_output('git', 'clone', upstream, path)
with cwd(path): with cwd(path):
install(Runner(path, C.CONFIG_FILE), hook_type='pre-push') install(Runner(path, C.CONFIG_FILE), store, hook_type='pre-push')
assert _get_commit_output(tempdir_factory)[0] == 0 assert _get_commit_output(tempdir_factory)[0] == 0
cmd_output('git', 'remote', 'rename', 'origin', 'upstream') cmd_output('git', 'remote', 'rename', 'origin', 'upstream')
@ -566,19 +564,19 @@ def test_pre_push_new_upstream(tempdir_factory):
assert 'Passed' in output assert 'Passed' in output
def test_pre_push_integration_empty_push(tempdir_factory): def test_pre_push_integration_empty_push(tempdir_factory, store):
upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo') upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
path = tempdir_factory.get() path = tempdir_factory.get()
cmd_output('git', 'clone', upstream, path) cmd_output('git', 'clone', upstream, path)
with cwd(path): with cwd(path):
install(Runner(path, C.CONFIG_FILE), hook_type='pre-push') install(Runner(path, C.CONFIG_FILE), store, hook_type='pre-push')
_get_push_output(tempdir_factory) _get_push_output(tempdir_factory)
retc, output = _get_push_output(tempdir_factory) retc, output = _get_push_output(tempdir_factory)
assert output == 'Everything up-to-date\n' assert output == 'Everything up-to-date\n'
assert retc == 0 assert retc == 0
def test_pre_push_legacy(tempdir_factory): def test_pre_push_legacy(tempdir_factory, store):
upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo') upstream = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
path = tempdir_factory.get() path = tempdir_factory.get()
cmd_output('git', 'clone', upstream, path) cmd_output('git', 'clone', upstream, path)
@ -597,7 +595,7 @@ def test_pre_push_legacy(tempdir_factory):
) )
make_executable(hook_path) make_executable(hook_path)
install(runner, hook_type='pre-push') install(runner, store, hook_type='pre-push')
assert _get_commit_output(tempdir_factory)[0] == 0 assert _get_commit_output(tempdir_factory)[0] == 0
retc, output = _get_push_output(tempdir_factory) retc, output = _get_push_output(tempdir_factory)
@ -608,16 +606,22 @@ def test_pre_push_legacy(tempdir_factory):
assert third_line.endswith('Passed') assert third_line.endswith('Passed')
def test_commit_msg_integration_failing(commit_msg_repo, tempdir_factory): def test_commit_msg_integration_failing(
install(Runner(commit_msg_repo, C.CONFIG_FILE), hook_type='commit-msg') commit_msg_repo, tempdir_factory, store,
):
runner = Runner(commit_msg_repo, C.CONFIG_FILE)
install(runner, store, hook_type='commit-msg')
retc, out = _get_commit_output(tempdir_factory) retc, out = _get_commit_output(tempdir_factory)
assert retc == 1 assert retc == 1
assert out.startswith('Must have "Signed off by:"...') assert out.startswith('Must have "Signed off by:"...')
assert out.strip().endswith('...Failed') assert out.strip().endswith('...Failed')
def test_commit_msg_integration_passing(commit_msg_repo, tempdir_factory): def test_commit_msg_integration_passing(
install(Runner(commit_msg_repo, C.CONFIG_FILE), hook_type='commit-msg') commit_msg_repo, tempdir_factory, store,
):
runner = Runner(commit_msg_repo, C.CONFIG_FILE)
install(runner, store, hook_type='commit-msg')
msg = 'Hi\nSigned off by: me, lol' msg = 'Hi\nSigned off by: me, lol'
retc, out = _get_commit_output(tempdir_factory, commit_msg=msg) retc, out = _get_commit_output(tempdir_factory, commit_msg=msg)
assert retc == 0 assert retc == 0
@ -626,7 +630,7 @@ def test_commit_msg_integration_passing(commit_msg_repo, tempdir_factory):
assert first_line.endswith('...Passed') assert first_line.endswith('...Passed')
def test_commit_msg_legacy(commit_msg_repo, tempdir_factory): def test_commit_msg_legacy(commit_msg_repo, tempdir_factory, store):
runner = Runner(commit_msg_repo, C.CONFIG_FILE) runner = Runner(commit_msg_repo, C.CONFIG_FILE)
hook_path = runner.get_hook_path('commit-msg') hook_path = runner.get_hook_path('commit-msg')
@ -640,7 +644,7 @@ def test_commit_msg_legacy(commit_msg_repo, tempdir_factory):
) )
make_executable(hook_path) make_executable(hook_path)
install(runner, hook_type='commit-msg') install(runner, store, hook_type='commit-msg')
msg = 'Hi\nSigned off by: asottile' msg = 'Hi\nSigned off by: asottile'
retc, out = _get_commit_output(tempdir_factory, commit_msg=msg) retc, out = _get_commit_output(tempdir_factory, commit_msg=msg)
@ -650,25 +654,31 @@ def test_commit_msg_legacy(commit_msg_repo, tempdir_factory):
assert second_line.startswith('Must have "Signed off by:"...') assert second_line.startswith('Must have "Signed off by:"...')
def test_install_disallow_mising_config(tempdir_factory): def test_install_disallow_mising_config(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
remove_config_from_repo(path) remove_config_from_repo(path)
assert install(runner, overwrite=True, skip_on_missing_conf=False) == 0 ret = install(
runner, store, overwrite=True, skip_on_missing_conf=False,
)
assert ret == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 1 assert ret == 1
def test_install_allow_mising_config(tempdir_factory): def test_install_allow_mising_config(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
remove_config_from_repo(path) remove_config_from_repo(path)
assert install(runner, overwrite=True, skip_on_missing_conf=True) == 0 ret = install(
runner, store, overwrite=True, skip_on_missing_conf=True,
)
assert ret == 0
ret, output = _get_commit_output(tempdir_factory) ret, output = _get_commit_output(tempdir_factory)
assert ret == 0 assert ret == 0
@ -679,13 +689,16 @@ def test_install_allow_mising_config(tempdir_factory):
assert expected in output assert expected in output
def test_install_temporarily_allow_mising_config(tempdir_factory): def test_install_temporarily_allow_mising_config(tempdir_factory, store):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(path): with cwd(path):
runner = Runner(path, C.CONFIG_FILE) runner = Runner(path, C.CONFIG_FILE)
remove_config_from_repo(path) remove_config_from_repo(path)
assert install(runner, overwrite=True, skip_on_missing_conf=False) == 0 ret = install(
runner, store, overwrite=True, skip_on_missing_conf=False,
)
assert ret == 0
env = dict(os.environ, PRE_COMMIT_ALLOW_NO_CONFIG='1') env = dict(os.environ, PRE_COMMIT_ALLOW_NO_CONFIG='1')
ret, output = _get_commit_output(tempdir_factory, env=env) ret, output = _get_commit_output(tempdir_factory, env=env)

View file

@ -48,33 +48,32 @@ def stage_a_file(filename='foo.py'):
cmd_output('git', 'add', filename) cmd_output('git', 'add', filename)
def _do_run(cap_out, repo, args, environ={}, config_file=C.CONFIG_FILE): def _do_run(cap_out, store, repo, args, environ={}, config_file=C.CONFIG_FILE):
runner = Runner(repo, config_file) runner = Runner(repo, config_file)
with cwd(runner.git_root): # replicates Runner.create behaviour with cwd(runner.git_root): # replicates Runner.create behaviour
ret = run(runner, args, environ=environ) ret = run(runner, store, args, environ=environ)
printed = cap_out.get_bytes() printed = cap_out.get_bytes()
return ret, printed return ret, printed
def _test_run( def _test_run(
cap_out, repo, opts, expected_outputs, expected_ret, stage, cap_out, store, repo, opts, expected_outputs, expected_ret, stage,
config_file=C.CONFIG_FILE, config_file=C.CONFIG_FILE,
): ):
if stage: if stage:
stage_a_file() stage_a_file()
args = run_opts(**opts) args = run_opts(**opts)
ret, printed = _do_run(cap_out, repo, args, config_file=config_file) ret, printed = _do_run(cap_out, store, repo, args, config_file=config_file)
assert ret == expected_ret, (ret, expected_ret, printed) assert ret == expected_ret, (ret, expected_ret, printed)
for expected_output_part in expected_outputs: for expected_output_part in expected_outputs:
assert expected_output_part in printed assert expected_output_part in printed
def test_run_all_hooks_failing( def test_run_all_hooks_failing(cap_out, store, repo_with_failing_hook):
cap_out, repo_with_failing_hook, mock_out_store_directory,
):
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_failing_hook, repo_with_failing_hook,
{}, {},
( (
@ -88,17 +87,15 @@ def test_run_all_hooks_failing(
) )
def test_arbitrary_bytes_hook( def test_arbitrary_bytes_hook(cap_out, store, tempdir_factory):
cap_out, tempdir_factory, mock_out_store_directory,
):
git_path = make_consuming_repo(tempdir_factory, 'arbitrary_bytes_repo') git_path = make_consuming_repo(tempdir_factory, 'arbitrary_bytes_repo')
with cwd(git_path): with cwd(git_path):
_test_run(cap_out, git_path, {}, (b'\xe2\x98\x83\xb2\n',), 1, True) _test_run(
cap_out, store, git_path, {}, (b'\xe2\x98\x83\xb2\n',), 1, True,
)
def test_hook_that_modifies_but_returns_zero( def test_hook_that_modifies_but_returns_zero(cap_out, store, tempdir_factory):
cap_out, tempdir_factory, mock_out_store_directory,
):
git_path = make_consuming_repo( git_path = make_consuming_repo(
tempdir_factory, 'modified_file_returns_zero_repo', tempdir_factory, 'modified_file_returns_zero_repo',
) )
@ -106,6 +103,7 @@ def test_hook_that_modifies_but_returns_zero(
stage_a_file('bar.py') stage_a_file('bar.py')
_test_run( _test_run(
cap_out, cap_out,
store,
git_path, git_path,
{}, {},
( (
@ -126,22 +124,18 @@ def test_hook_that_modifies_but_returns_zero(
) )
def test_types_hook_repository( def test_types_hook_repository(cap_out, store, tempdir_factory):
cap_out, tempdir_factory, mock_out_store_directory,
):
git_path = make_consuming_repo(tempdir_factory, 'types_repo') git_path = make_consuming_repo(tempdir_factory, 'types_repo')
with cwd(git_path): with cwd(git_path):
stage_a_file('bar.py') stage_a_file('bar.py')
stage_a_file('bar.notpy') stage_a_file('bar.notpy')
ret, printed = _do_run(cap_out, git_path, run_opts()) ret, printed = _do_run(cap_out, store, git_path, run_opts())
assert ret == 1 assert ret == 1
assert b'bar.py' in printed assert b'bar.py' in printed
assert b'bar.notpy' not in printed assert b'bar.notpy' not in printed
def test_exclude_types_hook_repository( def test_exclude_types_hook_repository(cap_out, store, tempdir_factory):
cap_out, tempdir_factory, mock_out_store_directory,
):
git_path = make_consuming_repo(tempdir_factory, 'exclude_types_repo') git_path = make_consuming_repo(tempdir_factory, 'exclude_types_repo')
with cwd(git_path): with cwd(git_path):
with io.open('exe', 'w') as exe: with io.open('exe', 'w') as exe:
@ -149,13 +143,13 @@ def test_exclude_types_hook_repository(
make_executable('exe') make_executable('exe')
cmd_output('git', 'add', 'exe') cmd_output('git', 'add', 'exe')
stage_a_file('bar.py') stage_a_file('bar.py')
ret, printed = _do_run(cap_out, git_path, run_opts()) ret, printed = _do_run(cap_out, store, git_path, run_opts())
assert ret == 1 assert ret == 1
assert b'bar.py' in printed assert b'bar.py' in printed
assert b'exe' not in printed assert b'exe' not in printed
def test_global_exclude(cap_out, tempdir_factory, mock_out_store_directory): def test_global_exclude(cap_out, store, tempdir_factory):
git_path = make_consuming_repo(tempdir_factory, 'script_hooks_repo') git_path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
with cwd(git_path): with cwd(git_path):
with modify_config() as config: with modify_config() as config:
@ -163,23 +157,22 @@ def test_global_exclude(cap_out, tempdir_factory, mock_out_store_directory):
open('foo.py', 'a').close() open('foo.py', 'a').close()
open('bar.py', 'a').close() open('bar.py', 'a').close()
cmd_output('git', 'add', '.') cmd_output('git', 'add', '.')
ret, printed = _do_run(cap_out, git_path, run_opts(verbose=True)) opts = run_opts(verbose=True)
ret, printed = _do_run(cap_out, store, git_path, opts)
assert ret == 0 assert ret == 0
# Does not contain foo.py since it was excluded # Does not contain foo.py since it was excluded
expected = b'hookid: bash_hook\n\nbar.py\nHello World\n\n' expected = b'hookid: bash_hook\n\nbar.py\nHello World\n\n'
assert printed.endswith(expected) assert printed.endswith(expected)
def test_show_diff_on_failure( def test_show_diff_on_failure(capfd, cap_out, store, tempdir_factory):
capfd, cap_out, tempdir_factory, mock_out_store_directory,
):
git_path = make_consuming_repo( git_path = make_consuming_repo(
tempdir_factory, 'modified_file_returns_zero_repo', tempdir_factory, 'modified_file_returns_zero_repo',
) )
with cwd(git_path): with cwd(git_path):
stage_a_file('bar.py') stage_a_file('bar.py')
_test_run( _test_run(
cap_out, git_path, {'show_diff_on_failure': True}, cap_out, store, git_path, {'show_diff_on_failure': True},
# we're only testing the output after running # we're only testing the output after running
(), 1, True, (), 1, True,
) )
@ -211,15 +204,16 @@ def test_show_diff_on_failure(
) )
def test_run( def test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
options, options,
outputs, outputs,
expected_ret, expected_ret,
stage, stage,
mock_out_store_directory,
): ):
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
options, options,
outputs, outputs,
@ -228,12 +222,7 @@ def test_run(
) )
def test_run_output_logfile( def test_run_output_logfile(cap_out, store, tempdir_factory):
cap_out,
tempdir_factory,
mock_out_store_directory,
):
expected_output = ( expected_output = (
b'This is STDOUT output\n', b'This is STDOUT output\n',
b'This is STDERR output\n', b'This is STDERR output\n',
@ -243,6 +232,7 @@ def test_run_output_logfile(
with cwd(git_path): with cwd(git_path):
_test_run( _test_run(
cap_out, cap_out,
store,
git_path, {}, git_path, {},
expected_output, expected_output,
expected_ret=1, expected_ret=1,
@ -257,13 +247,12 @@ def test_run_output_logfile(
assert expected_output_part in logfile_content assert expected_output_part in logfile_content
def test_always_run( def test_always_run(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
with modify_config() as config: with modify_config() as config:
config['repos'][0]['hooks'][0]['always_run'] = True config['repos'][0]['hooks'][0]['always_run'] = True
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
{}, {},
(b'Bash hook', b'Passed'), (b'Bash hook', b'Passed'),
@ -272,9 +261,7 @@ def test_always_run(
) )
def test_always_run_alt_config( def test_always_run_alt_config(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
repo_root = '.' repo_root = '.'
config = read_config(repo_root) config = read_config(repo_root)
config['repos'][0]['hooks'][0]['always_run'] = True config['repos'][0]['hooks'][0]['always_run'] = True
@ -283,6 +270,7 @@ def test_always_run_alt_config(
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
{}, {},
(b'Bash hook', b'Passed'), (b'Bash hook', b'Passed'),
@ -292,15 +280,14 @@ def test_always_run_alt_config(
) )
def test_hook_verbose_enabled( def test_hook_verbose_enabled(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
with modify_config() as config: with modify_config() as config:
config['repos'][0]['hooks'][0]['always_run'] = True config['repos'][0]['hooks'][0]['always_run'] = True
config['repos'][0]['hooks'][0]['verbose'] = True config['repos'][0]['hooks'][0]['verbose'] = True
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
{}, {},
(b'Hello World',), (b'Hello World',),
@ -310,26 +297,22 @@ def test_hook_verbose_enabled(
@pytest.mark.parametrize( @pytest.mark.parametrize(
('origin', 'source', 'expect_failure'), ('origin', 'source'), (('master', ''), ('', 'master')),
(
('master', 'master', False),
('master', '', True),
('', 'master', True),
),
) )
def test_origin_source_error_msg( def test_origin_source_error_msg_error(
repo_with_passing_hook, origin, source, expect_failure, cap_out, store, repo_with_passing_hook, origin, source,
mock_out_store_directory, cap_out,
): ):
args = run_opts(origin=origin, source=source) args = run_opts(origin=origin, source=source)
ret, printed = _do_run(cap_out, repo_with_passing_hook, args) ret, printed = _do_run(cap_out, store, repo_with_passing_hook, args)
warning_msg = b'Specify both --origin and --source.' assert ret == 1
if expect_failure: assert b'Specify both --origin and --source.' in printed
assert ret == 1
assert warning_msg in printed
else: def test_origin_source_both_ok(cap_out, store, repo_with_passing_hook):
assert ret == 0 args = run_opts(origin='master', source='master')
assert warning_msg not in printed ret, printed = _do_run(cap_out, store, repo_with_passing_hook, args)
assert ret == 0
assert b'Specify both --origin and --source.' not in printed
def test_has_unmerged_paths(in_merge_conflict): def test_has_unmerged_paths(in_merge_conflict):
@ -338,30 +321,26 @@ def test_has_unmerged_paths(in_merge_conflict):
assert _has_unmerged_paths() is False assert _has_unmerged_paths() is False
def test_merge_conflict(cap_out, in_merge_conflict, mock_out_store_directory): def test_merge_conflict(cap_out, store, in_merge_conflict):
ret, printed = _do_run(cap_out, in_merge_conflict, run_opts()) ret, printed = _do_run(cap_out, store, in_merge_conflict, run_opts())
assert ret == 1 assert ret == 1
assert b'Unmerged files. Resolve before committing.' in printed assert b'Unmerged files. Resolve before committing.' in printed
def test_merge_conflict_modified( def test_merge_conflict_modified(cap_out, store, in_merge_conflict):
cap_out, in_merge_conflict, mock_out_store_directory,
):
# Touch another file so we have unstaged non-conflicting things # Touch another file so we have unstaged non-conflicting things
assert os.path.exists('dummy') assert os.path.exists('dummy')
with open('dummy', 'w') as dummy_file: with open('dummy', 'w') as dummy_file:
dummy_file.write('bar\nbaz\n') dummy_file.write('bar\nbaz\n')
ret, printed = _do_run(cap_out, in_merge_conflict, run_opts()) ret, printed = _do_run(cap_out, store, in_merge_conflict, run_opts())
assert ret == 1 assert ret == 1
assert b'Unmerged files. Resolve before committing.' in printed assert b'Unmerged files. Resolve before committing.' in printed
def test_merge_conflict_resolved( def test_merge_conflict_resolved(cap_out, store, in_merge_conflict):
cap_out, in_merge_conflict, mock_out_store_directory,
):
cmd_output('git', 'add', '.') cmd_output('git', 'add', '.')
ret, printed = _do_run(cap_out, in_merge_conflict, run_opts()) ret, printed = _do_run(cap_out, store, in_merge_conflict, run_opts())
for msg in ( for msg in (
b'Checking merge-conflict files only.', b'Bash hook', b'Passed', b'Checking merge-conflict files only.', b'Bash hook', b'Passed',
): ):
@ -402,51 +381,45 @@ def test_get_skips(environ, expected_output):
assert ret == expected_output assert ret == expected_output
def test_skip_hook(cap_out, repo_with_passing_hook, mock_out_store_directory): def test_skip_hook(cap_out, store, repo_with_passing_hook):
ret, printed = _do_run( ret, printed = _do_run(
cap_out, repo_with_passing_hook, run_opts(), {'SKIP': 'bash_hook'}, cap_out, store, repo_with_passing_hook, run_opts(),
{'SKIP': 'bash_hook'},
) )
for msg in (b'Bash hook', b'Skipped'): for msg in (b'Bash hook', b'Skipped'):
assert msg in printed assert msg in printed
def test_hook_id_not_in_non_verbose_output( def test_hook_id_not_in_non_verbose_output(
cap_out, repo_with_passing_hook, mock_out_store_directory, cap_out, store, repo_with_passing_hook,
): ):
ret, printed = _do_run( ret, printed = _do_run(
cap_out, repo_with_passing_hook, run_opts(verbose=False), cap_out, store, repo_with_passing_hook, run_opts(verbose=False),
) )
assert b'[bash_hook]' not in printed assert b'[bash_hook]' not in printed
def test_hook_id_in_verbose_output( def test_hook_id_in_verbose_output(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
ret, printed = _do_run( ret, printed = _do_run(
cap_out, repo_with_passing_hook, run_opts(verbose=True), cap_out, store, repo_with_passing_hook, run_opts(verbose=True),
) )
assert b'[bash_hook] Bash hook' in printed assert b'[bash_hook] Bash hook' in printed
def test_multiple_hooks_same_id( def test_multiple_hooks_same_id(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
with cwd(repo_with_passing_hook): with cwd(repo_with_passing_hook):
# Add bash hook on there again # Add bash hook on there again
with modify_config() as config: with modify_config() as config:
config['repos'][0]['hooks'].append({'id': 'bash_hook'}) config['repos'][0]['hooks'].append({'id': 'bash_hook'})
stage_a_file() stage_a_file()
ret, output = _do_run(cap_out, repo_with_passing_hook, run_opts()) ret, output = _do_run(cap_out, store, repo_with_passing_hook, run_opts())
assert ret == 0 assert ret == 0
assert output.count(b'Bash hook') == 2 assert output.count(b'Bash hook') == 2
def test_non_ascii_hook_id( def test_non_ascii_hook_id(repo_with_passing_hook, tempdir_factory):
repo_with_passing_hook, mock_out_store_directory, tempdir_factory,
):
with cwd(repo_with_passing_hook): with cwd(repo_with_passing_hook):
install(Runner(repo_with_passing_hook, C.CONFIG_FILE))
_, stdout, _ = cmd_output_mocked_pre_commit_home( _, stdout, _ = cmd_output_mocked_pre_commit_home(
sys.executable, '-m', 'pre_commit.main', 'run', '', sys.executable, '-m', 'pre_commit.main', 'run', '',
retcode=None, tempdir_factory=tempdir_factory, retcode=None, tempdir_factory=tempdir_factory,
@ -456,15 +429,13 @@ def test_non_ascii_hook_id(
assert 'UnicodeEncodeError' not in stdout assert 'UnicodeEncodeError' not in stdout
def test_stdout_write_bug_py26( def test_stdout_write_bug_py26(repo_with_failing_hook, store, tempdir_factory):
repo_with_failing_hook, mock_out_store_directory, tempdir_factory,
):
with cwd(repo_with_failing_hook): with cwd(repo_with_failing_hook):
with modify_config() as config: with modify_config() as config:
config['repos'][0]['hooks'][0]['args'] = [''] config['repos'][0]['hooks'][0]['args'] = ['']
stage_a_file() stage_a_file()
install(Runner(repo_with_failing_hook, C.CONFIG_FILE)) install(Runner(repo_with_failing_hook, C.CONFIG_FILE), store)
# Have to use subprocess because pytest monkeypatches sys.stdout # Have to use subprocess because pytest monkeypatches sys.stdout
_, stdout, _ = cmd_output_mocked_pre_commit_home( _, stdout, _ = cmd_output_mocked_pre_commit_home(
@ -479,7 +450,7 @@ def test_stdout_write_bug_py26(
assert 'UnicodeDecodeError' not in stdout assert 'UnicodeDecodeError' not in stdout
def test_lots_of_files(mock_out_store_directory, tempdir_factory): def test_lots_of_files(store, tempdir_factory):
# windows xargs seems to have a bug, here's a regression test for # windows xargs seems to have a bug, here's a regression test for
# our workaround # our workaround
git_path = make_consuming_repo(tempdir_factory, 'python_hooks_repo') git_path = make_consuming_repo(tempdir_factory, 'python_hooks_repo')
@ -494,7 +465,7 @@ def test_lots_of_files(mock_out_store_directory, tempdir_factory):
open(filename, 'w').close() open(filename, 'w').close()
cmd_output('git', 'add', '.') cmd_output('git', 'add', '.')
install(Runner(git_path, C.CONFIG_FILE)) install(Runner(git_path, C.CONFIG_FILE), store)
cmd_output_mocked_pre_commit_home( cmd_output_mocked_pre_commit_home(
'git', 'commit', '-m', 'Commit!', 'git', 'commit', '-m', 'Commit!',
@ -504,7 +475,7 @@ def test_lots_of_files(mock_out_store_directory, tempdir_factory):
) )
def test_stages(cap_out, repo_with_passing_hook, mock_out_store_directory): def test_stages(cap_out, store, repo_with_passing_hook):
config = OrderedDict(( config = OrderedDict((
('repo', 'local'), ('repo', 'local'),
( (
@ -526,7 +497,7 @@ def test_stages(cap_out, repo_with_passing_hook, mock_out_store_directory):
def _run_for_stage(stage): def _run_for_stage(stage):
args = run_opts(hook_stage=stage) args = run_opts(hook_stage=stage)
ret, printed = _do_run(cap_out, repo_with_passing_hook, args) ret, printed = _do_run(cap_out, store, repo_with_passing_hook, args)
assert not ret, (ret, printed) assert not ret, (ret, printed)
# this test should only run one hook # this test should only run one hook
assert printed.count(b'hook ') == 1 assert printed.count(b'hook ') == 1
@ -537,13 +508,14 @@ def test_stages(cap_out, repo_with_passing_hook, mock_out_store_directory):
assert _run_for_stage('manual').startswith(b'hook 3...') assert _run_for_stage('manual').startswith(b'hook 3...')
def test_commit_msg_hook(cap_out, commit_msg_repo, mock_out_store_directory): def test_commit_msg_hook(cap_out, store, commit_msg_repo):
filename = '.git/COMMIT_EDITMSG' filename = '.git/COMMIT_EDITMSG'
with io.open(filename, 'w') as f: with io.open(filename, 'w') as f:
f.write('This is the commit message') f.write('This is the commit message')
_test_run( _test_run(
cap_out, cap_out,
store,
commit_msg_repo, commit_msg_repo,
{'hook_stage': 'commit-msg', 'commit_msg_filename': filename}, {'hook_stage': 'commit-msg', 'commit_msg_filename': filename},
expected_outputs=[b'Must have "Signed off by:"', b'Failed'], expected_outputs=[b'Must have "Signed off by:"', b'Failed'],
@ -552,9 +524,7 @@ def test_commit_msg_hook(cap_out, commit_msg_repo, mock_out_store_directory):
) )
def test_local_hook_passes( def test_local_hook_passes(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'local'), ('repo', 'local'),
( (
@ -583,6 +553,7 @@ def test_local_hook_passes(
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
opts={}, opts={},
expected_outputs=[b''], expected_outputs=[b''],
@ -591,9 +562,7 @@ def test_local_hook_passes(
) )
def test_local_hook_fails( def test_local_hook_fails(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'local'), ('repo', 'local'),
( (
@ -614,6 +583,7 @@ def test_local_hook_fails(
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
opts={}, opts={},
expected_outputs=[b''], expected_outputs=[b''],
@ -622,9 +592,7 @@ def test_local_hook_fails(
) )
def test_pcre_deprecation_warning( def test_pcre_deprecation_warning(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'local'), ('repo', 'local'),
( (
@ -640,6 +608,7 @@ def test_pcre_deprecation_warning(
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
opts={}, opts={},
expected_outputs=[ expected_outputs=[
@ -651,9 +620,7 @@ def test_pcre_deprecation_warning(
) )
def test_meta_hook_passes( def test_meta_hook_passes(cap_out, store, repo_with_passing_hook):
cap_out, repo_with_passing_hook, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'meta'), ('repo', 'meta'),
( (
@ -668,6 +635,7 @@ def test_meta_hook_passes(
_test_run( _test_run(
cap_out, cap_out,
store,
repo_with_passing_hook, repo_with_passing_hook,
opts={}, opts={},
expected_outputs=[b'Check for useless excludes'], expected_outputs=[b'Check for useless excludes'],
@ -684,32 +652,25 @@ def modified_config_repo(repo_with_passing_hook):
yield repo_with_passing_hook yield repo_with_passing_hook
def test_error_with_unstaged_config( def test_error_with_unstaged_config(cap_out, store, modified_config_repo):
cap_out, modified_config_repo, mock_out_store_directory,
):
args = run_opts() args = run_opts()
ret, printed = _do_run(cap_out, modified_config_repo, args) ret, printed = _do_run(cap_out, store, modified_config_repo, args)
assert b'Your pre-commit configuration is unstaged.' in printed assert b'Your pre-commit configuration is unstaged.' in printed
assert ret == 1 assert ret == 1
@pytest.mark.parametrize( @pytest.mark.parametrize(
'opts', ({'all_files': True}, {'files': [C.CONFIG_FILE]}), 'opts', (run_opts(all_files=True), run_opts(files=[C.CONFIG_FILE])),
) )
def test_no_unstaged_error_with_all_files_or_files( def test_no_unstaged_error_with_all_files_or_files(
cap_out, modified_config_repo, mock_out_store_directory, opts, cap_out, store, modified_config_repo, opts,
): ):
args = run_opts(**opts) ret, printed = _do_run(cap_out, store, modified_config_repo, opts)
ret, printed = _do_run(cap_out, modified_config_repo, args)
assert b'Your pre-commit configuration is unstaged.' not in printed assert b'Your pre-commit configuration is unstaged.' not in printed
def test_files_running_subdir( def test_files_running_subdir(repo_with_passing_hook, tempdir_factory):
repo_with_passing_hook, mock_out_store_directory, tempdir_factory,
):
with cwd(repo_with_passing_hook): with cwd(repo_with_passing_hook):
install(Runner(repo_with_passing_hook, C.CONFIG_FILE))
os.mkdir('subdir') os.mkdir('subdir')
open('subdir/foo.py', 'w').close() open('subdir/foo.py', 'w').close()
cmd_output('git', 'add', 'subdir/foo.py') cmd_output('git', 'add', 'subdir/foo.py')
@ -735,35 +696,30 @@ def test_files_running_subdir(
), ),
) )
def test_pass_filenames( def test_pass_filenames(
cap_out, repo_with_passing_hook, mock_out_store_directory, cap_out, store, repo_with_passing_hook,
pass_filenames, pass_filenames, hook_args, expected_out,
hook_args,
expected_out,
): ):
with modify_config() as config: with modify_config() as config:
config['repos'][0]['hooks'][0]['pass_filenames'] = pass_filenames config['repos'][0]['hooks'][0]['pass_filenames'] = pass_filenames
config['repos'][0]['hooks'][0]['args'] = hook_args config['repos'][0]['hooks'][0]['args'] = hook_args
stage_a_file() stage_a_file()
ret, printed = _do_run( ret, printed = _do_run(
cap_out, repo_with_passing_hook, run_opts(verbose=True), cap_out, store, repo_with_passing_hook, run_opts(verbose=True),
) )
assert expected_out + b'\nHello World' in printed assert expected_out + b'\nHello World' in printed
assert (b'foo.py' in printed) == pass_filenames assert (b'foo.py' in printed) == pass_filenames
def test_fail_fast( def test_fail_fast(cap_out, store, repo_with_failing_hook):
cap_out, repo_with_failing_hook, mock_out_store_directory, with modify_config() as config:
): # More than one hook
with cwd(repo_with_failing_hook): config['fail_fast'] = True
with modify_config() as config: config['repos'][0]['hooks'] *= 2
# More than one hook stage_a_file()
config['fail_fast'] = True
config['repos'][0]['hooks'] *= 2
stage_a_file()
ret, printed = _do_run(cap_out, repo_with_failing_hook, run_opts()) ret, printed = _do_run(cap_out, store, repo_with_failing_hook, run_opts())
# it should have only run one hook # it should have only run one hook
assert printed.count(b'Failing hook') == 1 assert printed.count(b'Failing hook') == 1
@pytest.fixture @pytest.fixture

View file

@ -134,7 +134,7 @@ def configure_logging():
@pytest.fixture @pytest.fixture
def mock_out_store_directory(tempdir_factory): def mock_store_dir(tempdir_factory):
tmpdir = tempdir_factory.get() tmpdir = tempdir_factory.get()
with mock.patch.object( with mock.patch.object(
Store, Store,

View file

@ -73,14 +73,14 @@ def test_error_handler_uncaught_error(mocked_log_and_exit):
) )
def test_log_and_exit(cap_out, mock_out_store_directory): def test_log_and_exit(cap_out, mock_store_dir):
with pytest.raises(SystemExit): with pytest.raises(SystemExit):
error_handler._log_and_exit( error_handler._log_and_exit(
'msg', error_handler.FatalError('hai'), "I'm a stacktrace", 'msg', error_handler.FatalError('hai'), "I'm a stacktrace",
) )
printed = cap_out.get() printed = cap_out.get()
log_file = os.path.join(mock_out_store_directory, 'pre-commit.log') log_file = os.path.join(mock_store_dir, 'pre-commit.log')
assert printed == ( assert printed == (
'msg: FatalError: hai\n' 'msg: FatalError: hai\n'
'Check the log at {}\n'.format(log_file) 'Check the log at {}\n'.format(log_file)
@ -94,7 +94,7 @@ def test_log_and_exit(cap_out, mock_out_store_directory):
) )
def test_error_handler_non_ascii_exception(mock_out_store_directory): def test_error_handler_non_ascii_exception(mock_store_dir):
with pytest.raises(SystemExit): with pytest.raises(SystemExit):
with error_handler.error_handler(): with error_handler.error_handler():
raise ValueError('') raise ValueError('')

View file

@ -92,13 +92,13 @@ def test_help_other_command(
@pytest.mark.parametrize('command', CMDS) @pytest.mark.parametrize('command', CMDS)
def test_all_cmds(command, mock_commands): def test_all_cmds(command, mock_commands, mock_store_dir):
main.main((command,)) main.main((command,))
assert getattr(mock_commands, command.replace('-', '_')).call_count == 1 assert getattr(mock_commands, command.replace('-', '_')).call_count == 1
assert_only_one_mock_called(mock_commands) assert_only_one_mock_called(mock_commands)
def test_try_repo(): def test_try_repo(mock_store_dir):
with mock.patch.object(main, 'try_repo') as patch: with mock.patch.object(main, 'try_repo') as patch:
main.main(('try-repo', '.')) main.main(('try-repo', '.'))
assert patch.call_count == 1 assert patch.call_count == 1
@ -123,12 +123,12 @@ def test_help_cmd_in_empty_directory(
def test_expected_fatal_error_no_git_repo( def test_expected_fatal_error_no_git_repo(
tempdir_factory, cap_out, mock_out_store_directory, tempdir_factory, cap_out, mock_store_dir,
): ):
with cwd(tempdir_factory.get()): with cwd(tempdir_factory.get()):
with pytest.raises(SystemExit): with pytest.raises(SystemExit):
main.main([]) main.main([])
log_file = os.path.join(mock_out_store_directory, 'pre-commit.log') log_file = os.path.join(mock_store_dir, 'pre-commit.log')
assert cap_out.get() == ( assert cap_out.get() == (
'An error has occurred: FatalError: git failed. ' 'An error has occurred: FatalError: git failed. '
'Is it installed, and are you in a Git repository directory?\n' 'Is it installed, and are you in a Git repository directory?\n'
@ -136,6 +136,6 @@ def test_expected_fatal_error_no_git_repo(
) )
def test_warning_on_tags_only(mock_commands, cap_out): def test_warning_on_tags_only(mock_commands, cap_out, mock_store_dir):
main.main(('autoupdate', '--tags-only')) main.main(('autoupdate', '--tags-only'))
assert '--tags-only is the default' in cap_out.get() assert '--tags-only is the default' in cap_out.get()

View file

@ -6,9 +6,7 @@ from testing.fixtures import git_dir
from testing.util import cwd from testing.util import cwd
def test_hook_excludes_everything( def test_hook_excludes_everything(capsys, tempdir_factory, mock_store_dir):
capsys, tempdir_factory, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'meta'), ('repo', 'meta'),
( (
@ -31,9 +29,7 @@ def test_hook_excludes_everything(
assert 'check-useless-excludes does not apply to this repository' in out assert 'check-useless-excludes does not apply to this repository' in out
def test_hook_includes_nothing( def test_hook_includes_nothing(capsys, tempdir_factory, mock_store_dir):
capsys, tempdir_factory, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'meta'), ('repo', 'meta'),
( (
@ -56,9 +52,7 @@ def test_hook_includes_nothing(
assert 'check-useless-excludes does not apply to this repository' in out assert 'check-useless-excludes does not apply to this repository' in out
def test_hook_types_not_matched( def test_hook_types_not_matched(capsys, tempdir_factory, mock_store_dir):
capsys, tempdir_factory, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'meta'), ('repo', 'meta'),
( (
@ -82,7 +76,7 @@ def test_hook_types_not_matched(
def test_hook_types_excludes_everything( def test_hook_types_excludes_everything(
capsys, tempdir_factory, mock_out_store_directory, capsys, tempdir_factory, mock_store_dir,
): ):
config = OrderedDict(( config = OrderedDict((
('repo', 'meta'), ('repo', 'meta'),
@ -106,9 +100,7 @@ def test_hook_types_excludes_everything(
assert 'check-useless-excludes does not apply to this repository' in out assert 'check-useless-excludes does not apply to this repository' in out
def test_valid_includes( def test_valid_includes(capsys, tempdir_factory, mock_store_dir):
capsys, tempdir_factory, mock_out_store_directory,
):
config = OrderedDict(( config = OrderedDict((
('repo', 'meta'), ('repo', 'meta'),
( (

View file

@ -2,14 +2,11 @@ from __future__ import absolute_import
from __future__ import unicode_literals from __future__ import unicode_literals
import os.path import os.path
from collections import OrderedDict
import pre_commit.constants as C import pre_commit.constants as C
from pre_commit.runner import Runner from pre_commit.runner import Runner
from pre_commit.util import cmd_output from pre_commit.util import cmd_output
from testing.fixtures import add_config_to_repo
from testing.fixtures import git_dir from testing.fixtures import git_dir
from testing.fixtures import make_consuming_repo
from testing.util import cwd from testing.util import cwd
@ -48,77 +45,6 @@ def test_config_file_path():
assert runner.config_file_path == expected_path assert runner.config_file_path == expected_path
def test_repositories(tempdir_factory, mock_out_store_directory):
path = make_consuming_repo(tempdir_factory, 'script_hooks_repo')
runner = Runner(path, C.CONFIG_FILE)
assert len(runner.repositories) == 1
def test_local_hooks(tempdir_factory, mock_out_store_directory):
config = OrderedDict((
('repo', 'local'),
(
'hooks', (
OrderedDict((
('id', 'arg-per-line'),
('name', 'Args per line hook'),
('entry', 'bin/hook.sh'),
('language', 'script'),
('files', ''),
('args', ['hello', 'world']),
)), OrderedDict((
('id', 'do_not_commit'),
('name', 'Block if "DO NOT COMMIT" is found'),
('entry', 'DO NOT COMMIT'),
('language', 'pygrep'),
('files', '^(.*)$'),
)),
),
),
))
git_path = git_dir(tempdir_factory)
add_config_to_repo(git_path, config)
runner = Runner(git_path, C.CONFIG_FILE)
assert len(runner.repositories) == 1
assert len(runner.repositories[0].hooks) == 2
def test_local_hooks_alt_config(tempdir_factory, mock_out_store_directory):
config = OrderedDict((
('repo', 'local'),
(
'hooks', (
OrderedDict((
('id', 'arg-per-line'),
('name', 'Args per line hook'),
('entry', 'bin/hook.sh'),
('language', 'script'),
('files', ''),
('args', ['hello', 'world']),
)), OrderedDict((
('id', 'ugly-format-json'),
('name', 'Ugly format json'),
('entry', 'ugly-format-json'),
('language', 'python'),
('files', ''),
)), OrderedDict((
('id', 'do_not_commit'),
('name', 'Block if "DO NOT COMMIT" is found'),
('entry', 'DO NOT COMMIT'),
('language', 'pygrep'),
('files', '^(.*)$'),
)),
),
),
))
git_path = git_dir(tempdir_factory)
alt_config_file = 'alternate_config.yaml'
add_config_to_repo(git_path, config, config_file=alt_config_file)
runner = Runner(git_path, alt_config_file)
assert len(runner.repositories) == 1
assert len(runner.repositories[0].hooks) == 3
def test_pre_commit_path(in_tmpdir): def test_pre_commit_path(in_tmpdir):
path = os.path.join('foo', 'bar') path = os.path.join('foo', 'bar')
cmd_output('git', 'init', path) cmd_output('git', 'init', path)