2022-01-16 08:24:05 +08:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2021-03-19 07:59:31 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2015-01-08 06:07:32 +08:00
|
|
|
from pre_commit_hooks.check_case_conflict import find_conflicting_filenames
|
|
|
|
from pre_commit_hooks.check_case_conflict import main
|
2021-03-19 07:59:31 +08:00
|
|
|
from pre_commit_hooks.check_case_conflict import parents
|
2015-03-21 04:52:21 +08:00
|
|
|
from pre_commit_hooks.util import cmd_output
|
2021-06-23 08:10:13 +08:00
|
|
|
from testing.util import git_commit
|
2015-01-08 06:07:32 +08:00
|
|
|
|
2021-03-19 07:59:31 +08:00
|
|
|
skip_win32 = pytest.mark.skipif(
|
|
|
|
sys.platform == 'win32',
|
|
|
|
reason='case conflicts between directories and files',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_parents():
|
|
|
|
assert set(parents('a')) == set()
|
|
|
|
assert set(parents('a/b')) == {'a'}
|
|
|
|
assert set(parents('a/b/c')) == {'a/b', 'a'}
|
|
|
|
assert set(parents('a/b/c/d')) == {'a/b/c', 'a/b', 'a'}
|
|
|
|
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
def test_nothing_added(temp_git_dir):
|
2016-05-28 05:09:50 +08:00
|
|
|
with temp_git_dir.as_cwd():
|
2015-01-08 06:07:32 +08:00
|
|
|
assert find_conflicting_filenames(['f.py']) == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_adding_something(temp_git_dir):
|
2016-05-28 05:09:50 +08:00
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.join('f.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'f.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
assert find_conflicting_filenames(['f.py']) == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_adding_something_with_conflict(temp_git_dir):
|
2016-05-28 05:09:50 +08:00
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.join('f.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'f.py')
|
2016-05-28 05:09:50 +08:00
|
|
|
temp_git_dir.join('F.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'F.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
assert find_conflicting_filenames(['f.py', 'F.py']) == 1
|
|
|
|
|
|
|
|
|
2021-03-19 07:59:31 +08:00
|
|
|
@skip_win32 # pragma: win32 no cover
|
|
|
|
def test_adding_files_with_conflicting_directories(temp_git_dir):
|
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.mkdir('dir').join('x').write('foo')
|
|
|
|
temp_git_dir.mkdir('DIR').join('y').write('foo')
|
|
|
|
cmd_output('git', 'add', '-A')
|
|
|
|
|
|
|
|
assert find_conflicting_filenames([]) == 1
|
|
|
|
|
|
|
|
|
|
|
|
@skip_win32 # pragma: win32 no cover
|
|
|
|
def test_adding_files_with_conflicting_deep_directories(temp_git_dir):
|
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.mkdir('x').mkdir('y').join('z').write('foo')
|
|
|
|
temp_git_dir.join('X').write('foo')
|
|
|
|
cmd_output('git', 'add', '-A')
|
|
|
|
|
|
|
|
assert find_conflicting_filenames([]) == 1
|
|
|
|
|
|
|
|
|
|
|
|
@skip_win32 # pragma: win32 no cover
|
|
|
|
def test_adding_file_with_conflicting_directory(temp_git_dir):
|
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.mkdir('dir').join('x').write('foo')
|
|
|
|
temp_git_dir.join('DIR').write('foo')
|
|
|
|
cmd_output('git', 'add', '-A')
|
|
|
|
|
|
|
|
assert find_conflicting_filenames([]) == 1
|
|
|
|
|
|
|
|
|
2015-01-08 06:07:32 +08:00
|
|
|
def test_added_file_not_in_pre_commits_list(temp_git_dir):
|
2016-05-28 05:09:50 +08:00
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.join('f.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'f.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
assert find_conflicting_filenames(['g.py']) == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_file_conflicts_with_committed_file(temp_git_dir):
|
2016-05-28 05:09:50 +08:00
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.join('f.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'f.py')
|
2021-06-23 08:10:13 +08:00
|
|
|
git_commit('-m', 'Add f.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
2016-05-28 05:09:50 +08:00
|
|
|
temp_git_dir.join('F.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'F.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
assert find_conflicting_filenames(['F.py']) == 1
|
|
|
|
|
|
|
|
|
2021-03-19 07:59:31 +08:00
|
|
|
@skip_win32 # pragma: win32 no cover
|
|
|
|
def test_file_conflicts_with_committed_dir(temp_git_dir):
|
|
|
|
with temp_git_dir.as_cwd():
|
|
|
|
temp_git_dir.mkdir('dir').join('x').write('foo')
|
|
|
|
cmd_output('git', 'add', '-A')
|
2021-06-23 08:10:13 +08:00
|
|
|
git_commit('-m', 'Add f.py')
|
2021-03-19 07:59:31 +08:00
|
|
|
|
|
|
|
temp_git_dir.join('DIR').write('foo')
|
|
|
|
cmd_output('git', 'add', '-A')
|
|
|
|
|
|
|
|
assert find_conflicting_filenames([]) == 1
|
|
|
|
|
|
|
|
|
2015-01-08 06:07:32 +08:00
|
|
|
def test_integration(temp_git_dir):
|
2016-05-28 05:09:50 +08:00
|
|
|
with temp_git_dir.as_cwd():
|
2015-01-08 06:07:32 +08:00
|
|
|
assert main(argv=[]) == 0
|
|
|
|
|
2016-05-28 05:09:50 +08:00
|
|
|
temp_git_dir.join('f.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'f.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
assert main(argv=['f.py']) == 0
|
|
|
|
|
2016-05-28 05:09:50 +08:00
|
|
|
temp_git_dir.join('F.py').write("print('hello world')")
|
2015-03-21 04:52:21 +08:00
|
|
|
cmd_output('git', 'add', 'F.py')
|
2015-01-08 06:07:32 +08:00
|
|
|
|
|
|
|
assert main(argv=['F.py']) == 1
|