yaml_validation.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #!/usr/bin/env python
  2. # flake8: noqa
  3. #
  4. # python yaml validator for a git commit
  5. #
  6. '''
  7. python yaml validator for a git commit
  8. '''
  9. import shutil
  10. import sys
  11. import os
  12. import tempfile
  13. import subprocess
  14. import yaml
  15. def get_changes(oldrev, newrev, tempdir):
  16. '''Get a list of git changes from oldrev to newrev'''
  17. proc = subprocess.Popen(['/usr/bin/git', 'diff', '--name-only', oldrev,
  18. newrev, '--diff-filter=ACM'], stdout=subprocess.PIPE)
  19. stdout, _ = proc.communicate()
  20. files = stdout.split('\n')
  21. # No file changes
  22. if not files:
  23. return []
  24. cmd = '/usr/bin/git archive %s %s | /bin/tar x -C %s' % (newrev, " ".join(files), tempdir)
  25. proc = subprocess.Popen(cmd, shell=True)
  26. _, _ = proc.communicate()
  27. rfiles = []
  28. for dirpath, _, fnames in os.walk(tempdir):
  29. for fname in fnames:
  30. rfiles.append(os.path.join(dirpath, fname))
  31. return rfiles
  32. def main():
  33. '''
  34. Perform yaml validation
  35. '''
  36. results = []
  37. try:
  38. tmpdir = tempfile.mkdtemp(prefix='jenkins-git-')
  39. old, new, _ = sys.argv[1:]
  40. for file_mod in get_changes(old, new, tmpdir):
  41. print "+++++++ Received: %s" % file_mod
  42. # if the file extensions is not yml or yaml, move along.
  43. if not file_mod.endswith('.yml') and not file_mod.endswith('.yaml'):
  44. continue
  45. # We use symlinks in our repositories, ignore them.
  46. if os.path.islink(file_mod):
  47. continue
  48. try:
  49. yaml.load(open(file_mod))
  50. results.append(True)
  51. except yaml.scanner.ScannerError as yerr:
  52. print yerr
  53. results.append(False)
  54. finally:
  55. shutil.rmtree(tmpdir)
  56. if not all(results):
  57. sys.exit(1)
  58. if __name__ == "__main__":
  59. main()