2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-06-19 17:57:36 -05:00
|
|
|
require "extend/ENV"
|
2015-04-13 18:05:41 +08:00
|
|
|
require "sandbox"
|
2015-04-21 16:59:23 +08:00
|
|
|
require "timeout"
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2012-03-12 21:21:33 -07:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2018-10-08 22:48:52 -04:00
|
|
|
def test_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
2019-01-30 21:33:03 +00:00
|
|
|
`test` [<options>] <formula>
|
2018-10-08 22:48:52 -04:00
|
|
|
|
|
|
|
Run the test method provided by an installed formula.
|
|
|
|
There is no standard output or return code, but generally it should notify the
|
|
|
|
user if something is wrong with the installed formula.
|
|
|
|
|
|
|
|
*Example:* `brew install jruby && brew test jruby`
|
|
|
|
EOS
|
|
|
|
switch "--devel",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Test the development version of a formula."
|
2018-10-08 22:48:52 -04:00
|
|
|
switch "--HEAD",
|
2019-04-30 08:44:35 +01:00
|
|
|
description: "Test the head version of a formula."
|
2018-10-08 22:48:52 -04:00
|
|
|
switch "--keep-tmp",
|
2019-08-20 00:04:14 -04:00
|
|
|
description: "Retain the temporary files created for the test."
|
2018-10-08 22:48:52 -04:00
|
|
|
switch :verbose
|
|
|
|
switch :debug
|
2019-01-29 19:39:41 +00:00
|
|
|
conflicts "--devel", "--HEAD"
|
2018-10-08 22:48:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-10 21:28:49 -08:00
|
|
|
def test
|
2019-03-27 11:49:56 +00:00
|
|
|
test_args.parse
|
|
|
|
|
2012-04-20 13:56:51 -05:00
|
|
|
raise FormulaUnspecifiedError if ARGV.named.empty?
|
2012-02-04 00:01:29 -06:00
|
|
|
|
2019-03-27 11:49:56 +00:00
|
|
|
require "formula_assertions"
|
|
|
|
|
2015-05-17 21:13:09 +08:00
|
|
|
ARGV.resolved_formulae.each do |f|
|
2011-03-10 21:28:49 -08:00
|
|
|
# Cannot test uninstalled formulae
|
|
|
|
unless f.installed?
|
2015-05-27 21:14:35 +08:00
|
|
|
ofail "Testing requires the latest version of #{f.full_name}"
|
2011-03-10 21:28:49 -08:00
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
# Cannot test formulae without a test method
|
2013-01-07 17:34:56 -06:00
|
|
|
unless f.test_defined?
|
2015-05-27 21:14:35 +08:00
|
|
|
ofail "#{f.full_name} defines no test"
|
2011-03-10 21:28:49 -08:00
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2017-06-23 17:42:09 +01:00
|
|
|
# Don't test unlinked formulae
|
|
|
|
if !ARGV.force? && !f.keg_only? && !f.linked?
|
|
|
|
ofail "#{f.full_name} is not linked"
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2018-03-05 10:36:39 +00:00
|
|
|
# Don't test formulae missing test dependencies
|
|
|
|
missing_test_deps = f.recursive_dependencies do |_, dependency|
|
2018-03-08 08:56:31 +00:00
|
|
|
Dependency.prune if dependency.installed?
|
|
|
|
next if dependency.test?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2018-03-08 08:56:31 +00:00
|
|
|
Dependency.prune if dependency.optional?
|
|
|
|
Dependency.prune if dependency.build?
|
2018-03-05 10:36:39 +00:00
|
|
|
end.map(&:to_s)
|
|
|
|
unless missing_test_deps.empty?
|
|
|
|
ofail "#{f.full_name} is missing test dependencies: #{missing_test_deps.join(" ")}"
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
2015-05-27 21:14:35 +08:00
|
|
|
puts "Testing #{f.full_name}"
|
2014-06-18 23:17:49 -05:00
|
|
|
|
2015-01-13 12:19:56 -05:00
|
|
|
env = ENV.to_hash
|
|
|
|
|
2011-03-10 21:28:49 -08:00
|
|
|
begin
|
2015-04-13 18:05:41 +08:00
|
|
|
args = %W[
|
|
|
|
#{RUBY_PATH}
|
|
|
|
-W0
|
2018-07-17 14:23:33 +02:00
|
|
|
-I #{$LOAD_PATH.join(File::PATH_SEPARATOR)}
|
2015-04-13 18:05:41 +08:00
|
|
|
--
|
|
|
|
#{HOMEBREW_LIBRARY_PATH}/test.rb
|
|
|
|
#{f.path}
|
2019-09-23 12:36:45 +05:30
|
|
|
].concat(Homebrew.args.options_only)
|
2015-04-13 18:05:41 +08:00
|
|
|
|
2015-10-09 20:26:39 +08:00
|
|
|
if f.head?
|
|
|
|
args << "--HEAD"
|
|
|
|
elsif f.devel?
|
|
|
|
args << "--devel"
|
|
|
|
end
|
|
|
|
|
2015-04-13 18:05:41 +08:00
|
|
|
Utils.safe_fork do
|
2016-08-14 17:33:17 +01:00
|
|
|
if Sandbox.test?
|
2015-04-13 18:05:41 +08:00
|
|
|
sandbox = Sandbox.new
|
2015-04-26 21:59:47 -04:00
|
|
|
f.logs.mkpath
|
2016-05-27 01:53:08 -04:00
|
|
|
sandbox.record_log(f.logs/"test.sandbox.log")
|
2015-04-13 18:05:41 +08:00
|
|
|
sandbox.allow_write_temp_and_cache
|
|
|
|
sandbox.allow_write_log(f)
|
2015-08-25 17:34:52 +01:00
|
|
|
sandbox.allow_write_xcode
|
2015-10-09 17:42:21 +08:00
|
|
|
sandbox.allow_write_path(HOMEBREW_PREFIX/"var/cache")
|
2018-10-17 14:23:02 +02:00
|
|
|
sandbox.allow_write_path(HOMEBREW_PREFIX/"var/homebrew/locks")
|
2015-10-09 17:42:21 +08:00
|
|
|
sandbox.allow_write_path(HOMEBREW_PREFIX/"var/log")
|
|
|
|
sandbox.allow_write_path(HOMEBREW_PREFIX/"var/run")
|
2015-04-13 18:05:41 +08:00
|
|
|
sandbox.exec(*args)
|
|
|
|
else
|
|
|
|
exec(*args)
|
|
|
|
end
|
2013-06-04 20:34:34 +01:00
|
|
|
end
|
2018-08-18 08:20:13 +01:00
|
|
|
rescue Exception => e # rubocop:disable Lint/RescueException
|
|
|
|
ofail "#{f.full_name}: failed"
|
|
|
|
puts e, e.backtrace
|
2015-01-13 12:19:56 -05:00
|
|
|
ensure
|
|
|
|
ENV.replace(env)
|
2011-03-10 21:28:49 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|