mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Add utility for pr test
This commit is contained in:
parent
9a8779bdd7
commit
39d81bac3f
1 changed files with 95 additions and 0 deletions
95
dev/test.py
Executable file
95
dev/test.py
Executable file
|
|
@ -0,0 +1,95 @@
|
|||
#!/usr/bin/python
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed with
|
||||
# this work for additional information regarding copyright ownership.
|
||||
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
# (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
import sys, os, subprocess
|
||||
import json, urllib
|
||||
|
||||
if len(sys.argv) == 1:
|
||||
print "usage) " + sys.argv[0] + " [#PR]"
|
||||
print " eg) " + sys.argv[0] + " 122"
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
pr=sys.argv[1]
|
||||
githubApi="https://api.github.com/repos/apache/incubator-zeppelin"
|
||||
|
||||
prInfo = json.load(urllib.urlopen(githubApi + "/pulls/" + pr))
|
||||
if "message" in prInfo and prInfo["message"] == "Not Found":
|
||||
sys.stderr.write("PullRequest #" + pr + " not found\n")
|
||||
sys.exit(1)
|
||||
|
||||
prUser=prInfo['user']['login']
|
||||
prRepoUrl=prInfo['head']['repo']['clone_url']
|
||||
prBranch=prInfo['head']['label'].replace(":", "/")
|
||||
|
||||
# create local branch
|
||||
exitCode = os.system("git checkout -b pr" + pr)
|
||||
if exitCode != 0:
|
||||
sys.exit(1)
|
||||
|
||||
# add remote repository and fetch
|
||||
exitCode = os.system("git remote remove " + prUser)
|
||||
exitCode = os.system("git remote add " + prUser + " " + prRepoUrl)
|
||||
if exitCode != 0:
|
||||
sys.stderr.write("Can not add remote repository.\n")
|
||||
sys.exit(1)
|
||||
|
||||
exitCode = os.system("git fetch " + prUser)
|
||||
if exitCode != 0:
|
||||
sys.stderr.write("Can't fetch remote repository.\n")
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
currentBranch = subprocess.check_output(["git rev-parse --abbrev-ref HEAD"], shell=True).rstrip()
|
||||
|
||||
print "Merge branch " + prBranch + " into " + currentBranch
|
||||
|
||||
rev = subprocess.check_output(["git rev-parse " + prBranch], shell=True).rstrip()
|
||||
prAuthor = subprocess.check_output(["git --no-pager show -s --format='%an <%ae>' " + rev], shell=True).rstrip()
|
||||
prAuthorDate = subprocess.check_output(["git --no-pager show -s --format='%ad' " + rev], shell=True).rstrip()
|
||||
|
||||
prTitle = prInfo['title']
|
||||
prBody = prInfo['body']
|
||||
|
||||
commitList = subprocess.check_output(["git log --pretty=format:'%h' " + currentBranch + ".." + prBranch], shell=True).rstrip()
|
||||
authorList = []
|
||||
for commitHash in commitList.split("\n"):
|
||||
a = subprocess.check_output(["git show -s --pretty=format:'%an <%ae>' "+commitHash], shell=True).rstrip()
|
||||
if a not in authorList:
|
||||
authorList.append(a)
|
||||
|
||||
commitMsg = prTitle + "\n"
|
||||
if prBody :
|
||||
commitMsg += prBody + "\n\n"
|
||||
for author in authorList:
|
||||
commitMsg += "Author: " + author+"\n"
|
||||
commitMsg += "\n"
|
||||
commitMsg += "Closes #" + pr + " from " + prBranch + " and squashes the following commits:\n\n"
|
||||
commitMsg += subprocess.check_output(["git log --pretty=format:'%h [%an] %s' " + currentBranch + ".." + prBranch], shell=True).rstrip()
|
||||
|
||||
exitCode = os.system("git merge --no-commit --squash " + prBranch)
|
||||
if exitCode != 0:
|
||||
sys.stderr.write("Can not merge\n")
|
||||
sys.exit(1)
|
||||
|
||||
exitCode = os.system('git commit -a --author "' + prAuthor + '" --date "' + prAuthorDate + '" -m"' + commitMsg + '"')
|
||||
if exitCode != 0:
|
||||
sys.stderr.write("Commit failed\n")
|
||||
sys.exit(1)
|
||||
|
||||
os.system("git remote remove " + prUser)
|
||||
print "Branch " + prBranch + " is merged into " + currentBranch
|
||||
Loading…
Reference in a new issue