parent.py 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #!/usr/bin/env python
  2. # flake8: noqa
  3. # pylint: skip-file
  4. '''
  5. Script to determine if this commit has also
  6. been merged through the stage branch
  7. '''
  8. #
  9. # Usage:
  10. # parent_check.py <branch> <commit_id>
  11. #
  12. #
  13. import sys
  14. import subprocess
  15. def run_cli_cmd(cmd, in_stdout=None, in_stderr=None):
  16. '''Run a command and return its output'''
  17. if not in_stderr:
  18. proc = subprocess.Popen(cmd, bufsize=-1, stderr=subprocess.PIPE, stdout=subprocess.PIPE, shell=False)
  19. else:
  20. proc = subprocess.check_output(cmd, bufsize=-1, stdout=in_stdout, stderr=in_stderr, shell=False)
  21. stdout, stderr = proc.communicate()
  22. if proc.returncode != 0:
  23. return {"rc": proc.returncode, "error": stderr}
  24. else:
  25. return {"rc": proc.returncode, "result": stdout}
  26. def main():
  27. '''Check to ensure that the commit that is currently
  28. being submitted is also in the stage branch.
  29. if it is, succeed
  30. else, fail
  31. '''
  32. branch = 'prod'
  33. if sys.argv[1] != branch:
  34. sys.exit(0)
  35. # git co stg
  36. results = run_cli_cmd(['/usr/bin/git', 'checkout', 'stg'])
  37. # git pull latest
  38. results = run_cli_cmd(['/usr/bin/git', 'pull'])
  39. # setup on the <prod> branch in git
  40. results = run_cli_cmd(['/usr/bin/git', 'checkout', 'prod'])
  41. results = run_cli_cmd(['/usr/bin/git', 'pull'])
  42. # merge the passed in commit into my current <branch>
  43. commit_id = sys.argv[2]
  44. results = run_cli_cmd(['/usr/bin/git', 'merge', commit_id])
  45. # get the differences from stg and <branch>
  46. results = run_cli_cmd(['/usr/bin/git', 'rev-list', '--left-right', 'stg...prod'])
  47. # exit here with error code if the result coming back is an error
  48. if results['rc'] != 0:
  49. print results['error']
  50. sys.exit(results['rc'])
  51. count = 0
  52. # Each 'result' is a commit
  53. # Walk through each commit and see if it is in stg
  54. for commit in results['result'].split('\n'):
  55. # continue if it is already in stg
  56. if not commit or commit.startswith('<'):
  57. continue
  58. # remove the first char '>'
  59. commit = commit[1:]
  60. # check if any remote branches contain $commit
  61. results = run_cli_cmd(['/usr/bin/git', 'branch', '-q', '-r', '--contains', commit], in_stderr=None)
  62. # if this comes back empty, nothing contains it, we can skip it as
  63. # we have probably created the merge commit here locally
  64. if results['rc'] == 0 and len(results['result']) == 0:
  65. continue
  66. # The results generally contain origin/pr/246/merge and origin/pr/246/head
  67. # this is the pull request which would contain the commit in question.
  68. #
  69. # If the results do not contain origin/stg then stage does not contain
  70. # the commit in question. Therefore we need to alert!
  71. if 'origin/stg' not in results['result']:
  72. print "\nFAILED: (These commits are not in stage.)\n"
  73. print "\t%s" % commit
  74. count += 1
  75. # Exit with count of commits in #{branch} but not stg
  76. sys.exit(count)
  77. if __name__ == '__main__':
  78. main()