6ec0b4ec86
* Run no-unwanted-files sanity test only on Ansible. Since collections should be able to use binary modules there is not really any limit on what could exist in a collection `plugins` directory. * Add support for symlinks in sanity target lists: - Sanity tests that need to analyze symlinks can do so using the supplied target list. - Tests that analyze directories will now only look at symlinks if requested. - Directory symlinks will now be seen as directories instead of files. * Enable symlinks on filename based sanity tests. Sanity tests that evalulate filenames instead of content should include symlinks. * Update symlinks sanity test. Use the sanity test target list now that it can include symlinks.
40 lines
1,005 B
Python
Executable file
40 lines
1,005 B
Python
Executable file
#!/usr/bin/env python
|
|
"""Prevent unwanted files from being added to the source tree."""
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main():
|
|
"""Main entry point."""
|
|
paths = sys.argv[1:] or sys.stdin.read().splitlines()
|
|
|
|
allowed_extensions = (
|
|
'.cs',
|
|
'.ps1',
|
|
'.psm1',
|
|
'.py',
|
|
)
|
|
|
|
skip_directories = (
|
|
'lib/ansible/galaxy/data/',
|
|
)
|
|
|
|
for path in paths:
|
|
if any(path.startswith(skip_directory) for skip_directory in skip_directories):
|
|
continue
|
|
|
|
if path.startswith('lib/') and not path.startswith('lib/ansible/'):
|
|
print('%s: all "lib" content must reside in the "lib/ansible" directory' % path)
|
|
continue
|
|
|
|
ext = os.path.splitext(path)[1]
|
|
|
|
if ext not in allowed_extensions:
|
|
print('%s: extension must be one of: %s' % (path, ', '.join(allowed_extensions)))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|