2016-10-24 22:53:25 +02:00
|
|
|
require "testing_env"
|
2016-09-26 19:55:50 +02:00
|
|
|
|
2016-09-27 00:03:40 +02:00
|
|
|
class IntegrationCommandTestInstall < IntegrationCommandTestCase
|
2016-09-26 19:55:50 +02:00
|
|
|
def test_install
|
|
|
|
setup_test_formula "testball1"
|
|
|
|
assert_match "Specify `--HEAD`", cmd_fail("install", "testball1", "--head")
|
|
|
|
assert_match "No head is defined", cmd_fail("install", "testball1", "--HEAD")
|
|
|
|
assert_match "No devel block", cmd_fail("install", "testball1", "--devel")
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/0.1", cmd("install", "testball1")
|
|
|
|
assert_match "testball1-0.1 already installed", cmd("install", "testball1")
|
|
|
|
assert_match "MacRuby is not packaged", cmd_fail("install", "macruby")
|
|
|
|
assert_match "No available formula", cmd_fail("install", "formula")
|
|
|
|
assert_match "This similarly named formula was found",
|
|
|
|
cmd_fail("install", "testball")
|
|
|
|
|
|
|
|
setup_test_formula "testball2"
|
|
|
|
assert_match "These similarly named formulae were found",
|
|
|
|
cmd_fail("install", "testball")
|
|
|
|
|
|
|
|
install_and_rename_coretap_formula "testball1", "testball2"
|
|
|
|
assert_match "testball1 already installed, it's just not migrated",
|
|
|
|
cmd("install", "testball2")
|
|
|
|
end
|
2016-10-03 09:42:53 +01:00
|
|
|
|
2016-11-27 05:14:28 +03:00
|
|
|
def test_install_failures
|
|
|
|
path = setup_test_formula "testball1", "version \"1.0\""
|
|
|
|
devel_content = <<-EOS.undent
|
|
|
|
version "3.0"
|
|
|
|
devel do
|
|
|
|
url "#{Formulary.factory("testball1").stable.url}"
|
|
|
|
sha256 "#{TESTBALL_SHA256}"
|
|
|
|
version "2.0"
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/1.0", cmd("install", "testball1")
|
|
|
|
|
|
|
|
FileUtils.rm path
|
|
|
|
setup_test_formula "testball1", devel_content
|
|
|
|
|
|
|
|
assert_match "first `brew unlink testball1`", cmd_fail("install", "testball1")
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/1.0", cmd("unlink", "testball1")
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/2.0", cmd("install", "testball1", "--devel")
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/2.0", cmd("unlink", "testball1")
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/3.0", cmd("install", "testball1")
|
|
|
|
|
|
|
|
cmd("switch", "testball1", "2.0")
|
|
|
|
assert_match "already installed, however linked version is",
|
|
|
|
cmd("install", "testball1")
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/2.0", cmd("unlink", "testball1")
|
|
|
|
assert_match "just not linked", cmd("install", "testball1")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_install_keg_only_outdated
|
|
|
|
path_keg_only = setup_test_formula "testball1", <<-EOS.undent
|
|
|
|
version "1.0"
|
|
|
|
keg_only "test reason"
|
|
|
|
EOS
|
|
|
|
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/1.0", cmd("install", "testball1")
|
|
|
|
|
|
|
|
FileUtils.rm path_keg_only
|
|
|
|
setup_test_formula "testball1", <<-EOS.undent
|
|
|
|
version "2.0"
|
|
|
|
keg_only "test reason"
|
|
|
|
EOS
|
|
|
|
|
|
|
|
assert_match "keg-only and another version is linked to opt",
|
|
|
|
cmd("install", "testball1")
|
|
|
|
|
|
|
|
assert_match "#{HOMEBREW_CELLAR}/testball1/2.0",
|
|
|
|
cmd("install", "testball1", "--force")
|
|
|
|
end
|
|
|
|
|
2016-10-03 09:42:53 +01:00
|
|
|
def test_install_with_invalid_option
|
|
|
|
setup_test_formula "testball1"
|
2016-11-12 12:13:27 +00:00
|
|
|
assert_match "testball1: this formula has no --with-fo option so it will be ignored!",
|
2016-10-03 09:42:53 +01:00
|
|
|
cmd("install", "testball1", "--with-fo")
|
|
|
|
end
|
2016-11-18 20:47:46 +09:00
|
|
|
|
|
|
|
def test_install_with_nonfatal_requirement
|
|
|
|
setup_test_formula "testball1", <<-EOS.undent
|
|
|
|
class NonFatalRequirement < Requirement
|
|
|
|
satisfy { false }
|
|
|
|
end
|
|
|
|
depends_on NonFatalRequirement
|
|
|
|
EOS
|
|
|
|
message = "NonFatalRequirement unsatisfied!"
|
|
|
|
assert_equal 1, cmd("install", "testball1").scan(message).size
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_install_with_fatal_requirement
|
|
|
|
setup_test_formula "testball1", <<-EOS.undent
|
|
|
|
class FatalRequirement < Requirement
|
|
|
|
fatal true
|
|
|
|
satisfy { false }
|
|
|
|
end
|
|
|
|
depends_on FatalRequirement
|
|
|
|
EOS
|
|
|
|
message = "FatalRequirement unsatisfied!"
|
|
|
|
assert_equal 1, cmd_fail("install", "testball1").scan(message).size
|
|
|
|
end
|
2016-09-26 19:55:50 +02:00
|
|
|
end
|