parent.py 3.0 KB

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