2015-08-03 13:09:07 +01:00
|
|
|
require "testing_env"
|
2015-08-14 23:23:52 +02:00
|
|
|
require "tempfile"
|
2010-03-08 22:10:12 -08:00
|
|
|
|
2014-06-18 20:32:51 -05:00
|
|
|
class UtilTests < Homebrew::TestCase
|
2015-08-14 23:23:52 +02:00
|
|
|
def setup
|
|
|
|
@dir = Pathname.new(mktmpdir)
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
@dir.rmtree
|
|
|
|
end
|
|
|
|
|
2010-03-08 22:10:12 -08:00
|
|
|
def test_put_columns_empty
|
2014-04-15 15:38:31 -05:00
|
|
|
# Issue #217 put columns with new results fails.
|
2014-06-12 22:05:45 -05:00
|
|
|
assert_silent { puts_columns [] }
|
2010-03-08 22:10:12 -08:00
|
|
|
end
|
2014-07-05 13:50:54 -05:00
|
|
|
|
2015-08-14 23:23:52 +02:00
|
|
|
def test_which
|
|
|
|
cmd = @dir/"foo"
|
|
|
|
FileUtils.touch cmd
|
|
|
|
cmd.chmod 0744
|
|
|
|
assert_equal Pathname.new(cmd),
|
|
|
|
which(File.basename(cmd), File.dirname(cmd))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_which_skip_non_executables
|
|
|
|
cmd = @dir/"foo"
|
|
|
|
FileUtils.touch cmd
|
|
|
|
assert_nil which(File.basename(cmd), File.dirname(cmd))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_which_skip_malformed_path
|
|
|
|
# 'which' should not fail if a path is malformed
|
|
|
|
# see https://github.com/Homebrew/homebrew/issues/32789 for an example
|
|
|
|
cmd = @dir/"foo"
|
|
|
|
FileUtils.touch cmd
|
|
|
|
cmd.chmod 0744
|
|
|
|
|
|
|
|
# ~~ will fail because ~foo resolves to foo's home and there is no '~' user
|
|
|
|
# here
|
|
|
|
assert_equal Pathname.new(cmd),
|
|
|
|
which(File.basename(cmd), "~~#{File::PATH_SEPARATOR}#{File.dirname(cmd)}")
|
|
|
|
end
|
|
|
|
|
2016-01-02 23:16:08 +08:00
|
|
|
def test_which_all
|
|
|
|
(@dir/"bar/baz").mkpath
|
|
|
|
cmd1 = @dir/"foo"
|
|
|
|
cmd2 = @dir/"bar/foo"
|
|
|
|
cmd3 = @dir/"bar/baz/foo"
|
|
|
|
FileUtils.touch cmd2
|
|
|
|
[cmd1, cmd3].each do |cmd|
|
|
|
|
FileUtils.touch cmd
|
|
|
|
cmd.chmod 0744
|
|
|
|
end
|
|
|
|
assert_equal [cmd3, cmd1],
|
|
|
|
which_all("foo", "#{@dir}/bar/baz:#{@dir}/baz:#{@dir}:~baduserpath")
|
|
|
|
end
|
|
|
|
|
2014-07-05 13:50:54 -05:00
|
|
|
def test_popen_read
|
2014-12-16 15:27:36 -05:00
|
|
|
out = Utils.popen_read("/bin/sh", "-c", "echo success").chomp
|
2014-07-05 13:50:54 -05:00
|
|
|
assert_equal "success", out
|
|
|
|
assert_predicate $?, :success?
|
2016-01-04 15:15:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_read_with_block
|
|
|
|
out = Utils.popen_read("/bin/sh", "-c", "echo success") do |pipe|
|
|
|
|
pipe.read.chomp
|
|
|
|
end
|
|
|
|
assert_equal "success", out
|
|
|
|
assert_predicate $?, :success?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_popen_write_with_block
|
|
|
|
Utils.popen_write("/usr/bin/grep", "-q", "success") do |pipe|
|
|
|
|
pipe.write("success\n")
|
|
|
|
end
|
|
|
|
assert_predicate $?, :success?
|
2014-07-05 13:50:54 -05:00
|
|
|
end
|
2015-12-14 15:01:31 +01:00
|
|
|
|
2015-12-14 14:57:17 +01:00
|
|
|
def test_pretty_duration
|
2015-10-07 22:48:42 +02:00
|
|
|
assert_equal "1 second", pretty_duration(1)
|
2015-12-14 14:57:17 +01:00
|
|
|
assert_equal "2 seconds", pretty_duration(2.5)
|
|
|
|
assert_equal "42 seconds", pretty_duration(42)
|
2015-10-07 22:48:42 +02:00
|
|
|
assert_equal "4 minutes", pretty_duration(240)
|
|
|
|
assert_equal "4 minutes 12 seconds", pretty_duration(252.45)
|
2015-12-14 14:57:17 +01:00
|
|
|
end
|
|
|
|
|
2015-12-14 15:01:31 +01:00
|
|
|
def test_plural
|
|
|
|
assert_equal "", plural(1)
|
|
|
|
assert_equal "s", plural(0)
|
|
|
|
assert_equal "s", plural(42)
|
|
|
|
assert_equal "", plural(42, "")
|
|
|
|
end
|
2015-12-30 17:05:52 +08:00
|
|
|
|
|
|
|
def test_disk_usage_readable
|
|
|
|
assert_equal "1B", disk_usage_readable(1)
|
|
|
|
assert_equal "1000B", disk_usage_readable(1000)
|
|
|
|
assert_equal "1K", disk_usage_readable(1024)
|
|
|
|
assert_equal "1K", disk_usage_readable(1025)
|
|
|
|
assert_equal "4.2M", disk_usage_readable(4_404_020)
|
|
|
|
assert_equal "4.2G", disk_usage_readable(4_509_715_660)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_number_readable
|
|
|
|
assert_equal "1", number_readable(1)
|
|
|
|
assert_equal "1,000", number_readable(1_000)
|
|
|
|
assert_equal "1,000,000", number_readable(1_000_000)
|
|
|
|
end
|
2010-03-08 22:10:12 -08:00
|
|
|
end
|