brew/Library/Homebrew/dev-cmd/update-test.rb

130 lines
4.3 KiB
Ruby
Raw Normal View History

#: * `update-test` [`--commit=`<commit>] [`--before=`<date>] [`--to-tag`] [`--keep-tmp`]:
#: Runs a test of `brew update` with a new repository clone.
#:
#: If no arguments are passed, use `origin/master` as the start commit.
#:
#: If `--commit=`<commit> is passed, use <commit> as the start commit.
#:
#: If `--before=`<date> is passed, use the commit at <date> as the
#: start commit.
#:
#: If `--to-tag` is passed, set `HOMEBREW_UPDATE_TO_TAG` to test updating
#: between tags.
#:
#: If `--keep-tmp` is passed, retain the temporary directory containing
#: the new repository clone.
2018-03-25 21:39:02 +05:30
require "cli_parser"
2015-09-06 23:08:04 +08:00
module Homebrew
2016-09-26 01:44:51 +02:00
module_function
def update_test_args
Homebrew::CLI::Parser.new do
2018-09-28 21:39:52 +05:30
usage_banner <<~EOS
2018-10-01 10:54:49 +05:30
### update-test [options]:
2018-09-28 21:39:52 +05:30
Runs a test of `brew update` with a new repository clone.
If no arguments are passed, use `origin/master` as the start commit.
EOS
switch "--to-tag",
description: "Set `HOMEBREW_UPDATE_TO_TAG` to test updating between tags."
switch "--keep-tmp",
description: "Retain the temporary directory containing the new repository clone."
flag "--commit=",
description: "Use provided <commit> as the start commit."
flag "--before=",
description: "Use the commit at provided <date> as the start commit."
switch :verbose
switch :debug
2018-03-25 21:39:02 +05:30
end
end
def update_test
update_test_args.parse
2018-03-25 21:39:02 +05:30
ENV["HOMEBREW_UPDATE_TEST"] = "1"
branch = if args.to_tag?
ENV["HOMEBREW_UPDATE_TO_TAG"] = "1"
"stable"
else
"master"
end
start_commit, end_commit = nil
cd HOMEBREW_REPOSITORY do
start_commit = if commit = args.commit
commit
elsif date = args.before
Utils.popen_read("git", "rev-list", "-n1", "--before=#{date}", "origin/master").chomp
elsif args.to_tag?
tags = Utils.popen_read("git", "tag", "--list", "--sort=-version:refname")
previous_tag = tags.lines[1]
previous_tag ||= begin
if (HOMEBREW_REPOSITORY/".git/shallow").exist?
safe_system "git", "fetch", "--tags", "--depth=1"
tags = Utils.popen_read("git", "tag", "--list", "--sort=-version:refname")
elsif OS.linux?
tags = Utils.popen_read("git tag --list | sort -rV")
end
tags.lines[1]
end
previous_tag = previous_tag.to_s.chomp
odie "Could not find previous tag in:\n#{tags}" if previous_tag.empty?
previous_tag
else
Utils.popen_read("git", "rev-parse", "origin/master").chomp
end
odie "Could not find start commit!" if start_commit.empty?
start_commit = Utils.popen_read("git", "rev-parse", start_commit).chomp
odie "Could not find start commit!" if start_commit.empty?
end_commit = Utils.popen_read("git", "rev-parse", "HEAD").chomp
odie "Could not find end commit!" if end_commit.empty?
end
puts "Start commit: #{start_commit}"
puts "End commit: #{end_commit}"
mkdir "update-test" do
2015-09-06 23:08:04 +08:00
curdir = Pathname.new(Dir.pwd)
oh1 "Setup test environment..."
2015-09-06 23:08:04 +08:00
# copy Homebrew installation
safe_system "git", "clone", "--local", "#{HOMEBREW_REPOSITORY}/.git", "."
# set git origin to another copy
safe_system "git", "clone", "--local", "--bare", "#{HOMEBREW_REPOSITORY}/.git", "remote.git"
safe_system "git", "config", "remote.origin.url", "#{curdir}/remote.git"
# force push origin to end_commit
safe_system "git", "checkout", "-B", "master", end_commit
safe_system "git", "push", "--force", "origin", "master"
2015-09-06 23:08:04 +08:00
# set test copy to start_commit
safe_system "git", "reset", "--hard", start_commit
2015-09-06 23:08:04 +08:00
# update ENV["PATH"]
2017-09-29 22:10:44 +02:00
ENV["PATH"] = PATH.new(ENV["PATH"]).prepend(curdir/"bin")
2015-09-06 23:08:04 +08:00
# run brew update
oh1 "Running brew update..."
2015-09-14 08:00:50 +01:00
safe_system "brew", "update", "--verbose"
actual_end_commit = Utils.popen_read("git", "rev-parse", branch).chomp
if start_commit != end_commit && start_commit == actual_end_commit
2017-10-15 02:28:32 +02:00
raise <<~EOS
brew update didn't update #{branch}!
Start commit: #{start_commit}
Expected end commit: #{end_commit}
Actual end commit: #{actual_end_commit}
EOS
end
2015-09-06 23:08:04 +08:00
end
ensure
FileUtils.rm_r "update-test" unless args.keep_tmp?
2015-09-06 23:08:04 +08:00
end
end