Skip to content

Commit

Permalink
Merge pull request #2181 from pre-commit/forbid-meta-override-entry
Browse files Browse the repository at this point in the history
forbid overriding `entry` for meta hooks
  • Loading branch information
asottile committed Jan 1, 2022
2 parents 16f6825 + d3b4f73 commit e97140e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pre_commit/clientlib.py
Expand Up @@ -251,12 +251,21 @@ def warn_unknown_keys_repo(
),
)


class NotAllowed(cfgv.OptionalNoDefault):
def check(self, dct: Dict[str, Any]) -> None:
if self.key in dct:
raise cfgv.ValidationError(f'{self.key!r} cannot be overridden')


META_HOOK_DICT = cfgv.Map(
'Hook', 'id',
cfgv.Required('id', cfgv.check_string),
cfgv.Required('id', cfgv.check_one_of(tuple(k for k, _ in _meta))),
# language must be system
cfgv.Optional('language', cfgv.check_one_of({'system'}), 'system'),
# entry cannot be overridden
NotAllowed('entry', cfgv.check_any),
*(
# default to the hook definition for the meta hooks
cfgv.ConditionalOptional(key, cfgv.check_any, value, 'id', hook_id)
Expand Down
7 changes: 7 additions & 0 deletions tests/clientlib_test.py
Expand Up @@ -423,6 +423,13 @@ def test_migrate_to_sha_ok():
{'repo': 'meta', 'hooks': [{'id': 'identity', 'language': 'python'}]},
# name override must be string
{'repo': 'meta', 'hooks': [{'id': 'identity', 'name': False}]},
pytest.param(
{
'repo': 'meta',
'hooks': [{'id': 'identity', 'entry': 'echo hi'}],
},
id='cannot override entry for meta hooks',
),
),
)
def test_meta_hook_invalid(config_repo):
Expand Down

0 comments on commit e97140e

Please sign in to comment.