mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Consolidated file validation
This commit is contained in:
parent
9fa237fbe0
commit
28857c9a74
5 changed files with 149 additions and 74 deletions
63
tests/clientlib/validate_base_test.py
Normal file
63
tests/clientlib/validate_base_test.py
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
|
||||
import __builtin__
|
||||
|
||||
import os.path
|
||||
import mock
|
||||
import pytest
|
||||
|
||||
from pre_commit import git
|
||||
from pre_commit.clientlib.validate_base import get_validator
|
||||
|
||||
|
||||
class AdditionalValidatorError(ValueError): pass
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def noop_validator():
|
||||
return get_validator('example_manifest.yaml', {}, ValueError)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def array_validator():
|
||||
return get_validator('', {'type': 'array'}, ValueError)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def additional_validator():
|
||||
def raises_always(obj):
|
||||
raise AdditionalValidatorError
|
||||
|
||||
return get_validator(
|
||||
'example_manifest.yaml',
|
||||
{},
|
||||
ValueError,
|
||||
additional_validation_strategy=raises_always,
|
||||
)
|
||||
|
||||
|
||||
def test_raises_for_non_existent_file(noop_validator):
|
||||
with pytest.raises(ValueError):
|
||||
noop_validator('file_that_does_not_exist.yaml')
|
||||
|
||||
|
||||
def test_raises_for_invalid_yaml_file(noop_validator):
|
||||
with pytest.raises(ValueError):
|
||||
noop_validator('tests/data/non_parseable_yaml_file.yaml')
|
||||
|
||||
|
||||
def test_defaults_to_backup_filename(noop_validator):
|
||||
with mock.patch.object(__builtin__, 'open', side_effect=open) as mock_open:
|
||||
noop_validator()
|
||||
mock_open.assert_called_once_with(
|
||||
os.path.join(git.get_root(), 'example_manifest.yaml'), 'r',
|
||||
)
|
||||
|
||||
|
||||
def test_raises_for_failing_schema(array_validator):
|
||||
with pytest.raises(ValueError):
|
||||
array_validator('tests/data/non_parseable_yaml_file.yaml')
|
||||
|
||||
|
||||
def test_raises_when_additional_validation_fails(additional_validator):
|
||||
with pytest.raises(AdditionalValidatorError):
|
||||
additional_validator()
|
||||
|
|
@ -1,14 +1,12 @@
|
|||
|
||||
import __builtin__
|
||||
import jsonschema
|
||||
import pytest
|
||||
import mock
|
||||
from plumbum import local
|
||||
|
||||
import pre_commit.constants as C
|
||||
from pre_commit.clientlib.validate_manifest import check_is_valid_manifest
|
||||
from pre_commit.clientlib.validate_manifest import InvalidManifestError
|
||||
from pre_commit.clientlib.validate_manifest import run
|
||||
from pre_commit.clientlib.validate_manifest import run, InvalidManifestError, \
|
||||
additional_manifest_check
|
||||
|
||||
|
||||
@pytest.yield_fixture
|
||||
|
|
@ -40,7 +38,7 @@ def test_returns_1_for_valid_yaml_file_but_invalid_manifest(print_mock):
|
|||
ret = run(['--filename', invalid_manifest])
|
||||
assert ret == 1
|
||||
print_mock.assert_any_call(
|
||||
'File {0} is not a valid manifest file'.format(invalid_manifest)
|
||||
'File {0} is not a valid file'.format(invalid_manifest)
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -62,39 +60,17 @@ hooks:
|
|||
assert ret == 0
|
||||
|
||||
|
||||
@pytest.mark.parametrize(('manifest', 'expected_exception_type'), (
|
||||
(
|
||||
"""
|
||||
hooks:
|
||||
-
|
||||
id: foo
|
||||
entry: foo
|
||||
""",
|
||||
jsonschema.exceptions.ValidationError,
|
||||
),
|
||||
(
|
||||
"""
|
||||
hooks:
|
||||
-
|
||||
id: foo
|
||||
name: Foo
|
||||
language: Not a Language lol
|
||||
entry: foo
|
||||
""",
|
||||
InvalidManifestError,
|
||||
),
|
||||
def test_additional_manifest_check_raises_for_bad_language():
|
||||
with pytest.raises(InvalidManifestError):
|
||||
additional_manifest_check(
|
||||
{'hooks': [{'id': 'foo', 'language': 'not valid'}]}
|
||||
)
|
||||
|
||||
|
||||
@pytest.mark.parametrize(('obj'), (
|
||||
{'hooks': [{}]},
|
||||
{'hooks': [{'language': 'python'}]},
|
||||
{'hooks': [{'language': 'python>2.6'}]},
|
||||
))
|
||||
def test_check_invalid_manifests(manifest, expected_exception_type):
|
||||
with pytest.raises(expected_exception_type):
|
||||
check_is_valid_manifest(manifest)
|
||||
|
||||
|
||||
def test_valid_manifest_is_valid():
|
||||
check_is_valid_manifest("""
|
||||
hooks:
|
||||
-
|
||||
id: foo
|
||||
name: Foo
|
||||
entry: foo
|
||||
language: python>2.6
|
||||
""")
|
||||
def test_additional_manifest_check_is_ok_with_missing_language(obj):
|
||||
additional_manifest_check(obj)
|
||||
Loading…
Add table
Add a link
Reference in a new issue