brew/Library/Homebrew/formula_assertions.rb

79 lines
2.2 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: false
# frozen_string_literal: true
2014-07-27 10:34:22 -07:00
module Homebrew
2020-08-17 05:15:22 +02:00
# Helper functions available in formula `test` blocks.
#
# @api private
2014-07-27 10:34:22 -07:00
module Assertions
include Context
require "minitest"
require "minitest/assertions"
include ::Minitest::Assertions
attr_writer :assertions
def assertions
@assertions ||= 0
end
# Test::Unit backwards compatibility methods
{
assert_raise: :assert_raises,
assert_not_empty: :refute_empty,
assert_not_equal: :refute_equal,
assert_not_in_delta: :refute_in_delta,
assert_not_in_epsilon: :refute_in_epsilon,
assert_not_includes: :refute_includes,
assert_not_instance_of: :refute_instance_of,
assert_not_kind_of: :refute_kind_of,
assert_no_match: :refute_match,
assert_not_nil: :refute_nil,
assert_not_operator: :refute_operator,
assert_not_predicate: :refute_predicate,
assert_not_respond_to: :refute_respond_to,
assert_not_same: :refute_same,
}.each do |old_method, new_method|
define_method(old_method) do |*args|
# odeprecated old_method, new_method
send(new_method, *args)
end
end
2014-07-27 10:34:22 -07:00
def assert_true(act, msg = nil)
# odeprecated "assert_true", "assert(...) or assert_equal(true, ...)"
assert_equal(true, act, msg)
end
# Returns the output of running cmd, and asserts the exit status.
2020-08-17 05:15:22 +02:00
# @api public
def shell_output(cmd, result = 0)
2014-07-29 21:59:49 -07:00
ohai cmd
2014-07-27 10:34:22 -07:00
output = `#{cmd}`
assert_equal result, $CHILD_STATUS.exitstatus
2014-07-27 10:34:22 -07:00
output
rescue Minitest::Assertion
puts output if verbose?
raise
2014-07-27 10:34:22 -07:00
end
# Returns the output of running the cmd with the optional input, and
2020-08-17 05:15:22 +02:00
# optionally asserts the exit status.
# @api public
def pipe_output(cmd, input = nil, result = nil)
2014-07-29 21:59:49 -07:00
ohai cmd
output = IO.popen(cmd, "w+") do |pipe|
2014-07-27 10:34:22 -07:00
pipe.write(input) unless input.nil?
pipe.close_write
pipe.read
end
assert_equal result, $CHILD_STATUS.exitstatus unless result.nil?
output
rescue Minitest::Assertion
puts output if verbose?
raise
2014-07-27 10:34:22 -07:00
end
end
end