dev-cmd/pr-pull: refactor and test autosquash!
This commit is contained in:
parent
99a5aa07ad
commit
4b4510d22d
@ -150,17 +150,17 @@ module Homebrew
|
|||||||
|
|
||||||
# Cherry picks a single commit that modifies a single file.
|
# Cherry picks a single commit that modifies a single file.
|
||||||
# Potentially rewords this commit using `determine_bump_subject`.
|
# Potentially rewords this commit using `determine_bump_subject`.
|
||||||
def reword_formula_commit(commit, file, args:, path: ".")
|
def reword_formula_commit(commit, file, reason: "", verbose: false, resolve: false, path: ".")
|
||||||
formula_file = Pathname.new(path) / file
|
formula_file = Pathname.new(path) / file
|
||||||
formula_name = formula_file.basename.to_s.chomp(".rb")
|
formula_name = formula_file.basename.to_s.chomp(".rb")
|
||||||
|
|
||||||
odebug "Cherry-picking #{formula_file}: #{commit}"
|
odebug "Cherry-picking #{formula_file}: #{commit}"
|
||||||
Utils::Git.cherry_pick!(path, commit, verbose: args.verbose?, resolve: args.resolve?)
|
Utils::Git.cherry_pick!(path, commit, verbose: verbose, resolve: resolve)
|
||||||
|
|
||||||
old_formula = Utils::Git.file_at_commit(path, file, "HEAD^")
|
old_formula = Utils::Git.file_at_commit(path, file, "HEAD^")
|
||||||
new_formula = Utils::Git.file_at_commit(path, file, "HEAD")
|
new_formula = Utils::Git.file_at_commit(path, file, "HEAD")
|
||||||
|
|
||||||
bump_subject = determine_bump_subject(old_formula, new_formula, formula_file, reason: args.message)
|
bump_subject = determine_bump_subject(old_formula, new_formula, formula_file, reason: reason).strip
|
||||||
subject, body, trailers = separate_commit_message(Utils::Git.commit_message(path))
|
subject, body, trailers = separate_commit_message(Utils::Git.commit_message(path))
|
||||||
|
|
||||||
if subject != bump_subject && !subject.start_with?("#{formula_name}:")
|
if subject != bump_subject && !subject.start_with?("#{formula_name}:")
|
||||||
@ -175,7 +175,7 @@ module Homebrew
|
|||||||
# Cherry picks multiple commits that each modify a single file.
|
# Cherry picks multiple commits that each modify a single file.
|
||||||
# Words the commit according to `determine_bump_subject` with the body
|
# Words the commit according to `determine_bump_subject` with the body
|
||||||
# corresponding to all the original commit messages combined.
|
# corresponding to all the original commit messages combined.
|
||||||
def squash_formula_commits(commits, file, args:, path: ".")
|
def squash_formula_commits(commits, file, reason: "", verbose: false, resolve: false, path: ".")
|
||||||
odebug "Squashing #{file}: #{commits.join " "}"
|
odebug "Squashing #{file}: #{commits.join " "}"
|
||||||
|
|
||||||
# Format commit messages into something similar to `git fmt-merge-message`.
|
# Format commit messages into something similar to `git fmt-merge-message`.
|
||||||
@ -205,7 +205,7 @@ module Homebrew
|
|||||||
trailers = [trailers + co_author_trailers].flatten.uniq.compact
|
trailers = [trailers + co_author_trailers].flatten.uniq.compact
|
||||||
|
|
||||||
# Apply the patch series but don't commit anything yet.
|
# Apply the patch series but don't commit anything yet.
|
||||||
Utils::Git.cherry_pick!(path, "--no-commit", *commits, verbose: args.verbose?, resolve: args.resolve?)
|
Utils::Git.cherry_pick!(path, "--no-commit", *commits, verbose: verbose, resolve: resolve)
|
||||||
|
|
||||||
# Determine the bump subject by comparing the original state of the tree to its current state.
|
# Determine the bump subject by comparing the original state of the tree to its current state.
|
||||||
formula_file = Pathname.new(path) / file
|
formula_file = Pathname.new(path) / file
|
||||||
@ -220,11 +220,7 @@ module Homebrew
|
|||||||
ohai bump_subject
|
ohai bump_subject
|
||||||
end
|
end
|
||||||
|
|
||||||
def autosquash!(original_commit, path: ".", args: nil)
|
def autosquash!(original_commit, path: ".", reason: "", verbose: false, resolve: false)
|
||||||
# Autosquash assumes we've already modified the current state of the git repository,
|
|
||||||
# so just exit early if we're in a dry run.
|
|
||||||
return if args.dry_run?
|
|
||||||
|
|
||||||
original_head = Utils.safe_popen_read("git", "-C", path, "rev-parse", "HEAD").strip
|
original_head = Utils.safe_popen_read("git", "-C", path, "rev-parse", "HEAD").strip
|
||||||
|
|
||||||
commits = Utils.safe_popen_read("git", "-C", path, "rev-list",
|
commits = Utils.safe_popen_read("git", "-C", path, "rev-list",
|
||||||
@ -261,13 +257,13 @@ module Homebrew
|
|||||||
files = commits_to_files[commit]
|
files = commits_to_files[commit]
|
||||||
if files.length == 1 && files_to_commits[files.first].length == 1
|
if files.length == 1 && files_to_commits[files.first].length == 1
|
||||||
# If there's a 1:1 mapping of commits to files, just cherry pick and (maybe) reword.
|
# If there's a 1:1 mapping of commits to files, just cherry pick and (maybe) reword.
|
||||||
reword_formula_commit(commit, files.first, path: path, args: args)
|
reword_formula_commit(commit, files.first, path: path, reason: reason, verbose: verbose, resolve: resolve)
|
||||||
processed_commits << commit
|
processed_commits << commit
|
||||||
elsif files.length == 1 && files_to_commits[files.first].length > 1
|
elsif files.length == 1 && files_to_commits[files.first].length > 1
|
||||||
# If multiple commits modify a single file, squash them down into a single commit.
|
# If multiple commits modify a single file, squash them down into a single commit.
|
||||||
file = files.first
|
file = files.first
|
||||||
commits = files_to_commits[file]
|
commits = files_to_commits[file]
|
||||||
squash_formula_commits(commits, file, path: path, args: args)
|
squash_formula_commits(commits, file, path: path, reason: reason, verbose: verbose, resolve: resolve)
|
||||||
processed_commits += commits
|
processed_commits += commits
|
||||||
else
|
else
|
||||||
# We can't split commits (yet) so just raise an error.
|
# We can't split commits (yet) so just raise an error.
|
||||||
@ -397,7 +393,10 @@ module Homebrew
|
|||||||
cd dir do
|
cd dir do
|
||||||
original_commit = Utils.popen_read("git", "-C", tap.path, "rev-parse", "HEAD").chomp
|
original_commit = Utils.popen_read("git", "-C", tap.path, "rev-parse", "HEAD").chomp
|
||||||
cherry_pick_pr!(user, repo, pr, path: tap.path, args: args)
|
cherry_pick_pr!(user, repo, pr, path: tap.path, args: args)
|
||||||
autosquash!(original_commit, path: tap.path, args: args) if args.autosquash?
|
if args.autosquash? && !args.dry_run?
|
||||||
|
autosquash!(original_commit, path: tap.path,
|
||||||
|
verbose: args.verbose?, resolve: args.resolve?, reason: args.message)
|
||||||
|
end
|
||||||
signoff!(tap.path, pr: pr, dry_run: args.dry_run?) unless args.clean?
|
signoff!(tap.path, pr: pr, dry_run: args.dry_run?) unless args.clean?
|
||||||
|
|
||||||
unless args.no_upload?
|
unless args.no_upload?
|
||||||
|
|||||||
@ -43,6 +43,27 @@ describe Homebrew do
|
|||||||
it_behaves_like "parseable arguments"
|
it_behaves_like "parseable arguments"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "#autosquash!" do
|
||||||
|
it "squashes a formula correctly" do
|
||||||
|
secondary_author = "Someone Else <me@example.com>"
|
||||||
|
(path/"Formula").mkpath
|
||||||
|
formula_file.write(formula)
|
||||||
|
cd path do
|
||||||
|
safe_system Utils::Git.git, "init"
|
||||||
|
safe_system Utils::Git.git, "add", formula_file
|
||||||
|
safe_system Utils::Git.git, "commit", "-m", "foo 1.0 (new formula)"
|
||||||
|
original_hash = `git rev-parse HEAD`.chomp
|
||||||
|
File.open(formula_file, "w") { |f| f.write(formula_revision) }
|
||||||
|
safe_system Utils::Git.git, "commit", formula_file, "-m", "revision"
|
||||||
|
File.open(formula_file, "w") { |f| f.write(formula_version) }
|
||||||
|
safe_system Utils::Git.git, "commit", formula_file, "-m", "version", "--author=#{secondary_author}"
|
||||||
|
described_class.autosquash!(original_hash, path: ".")
|
||||||
|
expect(Utils::Git.commit_message(path)).to include("foo 2.0")
|
||||||
|
expect(Utils::Git.commit_message(path)).to include("Co-authored-by: #{secondary_author}")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "#signoff!" do
|
describe "#signoff!" do
|
||||||
it "signs off a formula" do
|
it "signs off a formula" do
|
||||||
(path/"Formula").mkpath
|
(path/"Formula").mkpath
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user