yaml_validation.py 1.8 KB

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