Skip to content
Snippets Groups Projects
Commit c66b840f authored by Markus Reiter's avatar Markus Reiter Committed by GitHub
Browse files

Merge pull request #2209 from reitermarkus/spec-formula_installer

Convert FormulaInstaller test to spec.
parents dbdd39b1 8b60412c
No related branches found
No related tags found
No related merge requests found
require "testing_env"
require "formula" require "formula"
require "formula_installer" require "formula_installer"
require "keg" require "keg"
...@@ -6,21 +5,30 @@ require "tab" ...@@ -6,21 +5,30 @@ require "tab"
require "test/support/fixtures/testball" require "test/support/fixtures/testball"
require "test/support/fixtures/testball_bottle" require "test/support/fixtures/testball_bottle"
class InstallTests < Homebrew::TestCase RSpec::Matchers.define_negated_matcher :need_bottle, :be_bottle_unneeded
RSpec::Matchers.alias_matcher :have_disabled_bottle, :be_bottle_disabled
describe FormulaInstaller do
matcher :be_poured_from_bottle do
match(&:poured_from_bottle)
end
def temporary_install(formula) def temporary_install(formula)
refute_predicate formula, :installed? expect(formula).not_to be_installed
installer = FormulaInstaller.new(formula) installer = described_class.new(formula)
shutup { installer.install } shutup do
installer.install
end
keg = Keg.new(formula.prefix) keg = Keg.new(formula.prefix)
assert_predicate formula, :installed? expect(formula).to be_installed
begin begin
Tab.clear_cache Tab.clear_cache
refute_predicate Tab.for_keg(keg), :poured_from_bottle expect(Tab.for_keg(keg)).not_to be_poured_from_bottle
yield formula yield formula
ensure ensure
...@@ -32,68 +40,66 @@ class InstallTests < Homebrew::TestCase ...@@ -32,68 +40,66 @@ class InstallTests < Homebrew::TestCase
formula.logs.rmtree if formula.logs.directory? formula.logs.rmtree if formula.logs.directory?
end end
refute_predicate keg, :exist? expect(keg).not_to exist
refute_predicate formula, :installed? expect(formula).not_to be_installed
end end
def test_a_basic_install specify "basic installation" do
ARGV << "--with-invalid_flag" # added to ensure it doesn't fail install ARGV << "--with-invalid_flag" # added to ensure it doesn't fail install
temporary_install(Testball.new) do |f| temporary_install(Testball.new) do |f|
# Test that things made it into the Keg # Test that things made it into the Keg
assert_predicate f.prefix+"readme", :exist? expect(f.prefix/"readme").to exist
assert_predicate f.bin, :directory? expect(f.bin).to be_a_directory
assert_equal 3, f.bin.children.length expect(f.bin.children.count).to eq(3)
assert_predicate f.libexec, :directory? expect(f.libexec).to be_a_directory
assert_equal 1, f.libexec.children.length expect(f.libexec.children.count).to eq(1)
refute_predicate f.prefix+"main.c", :exist? expect(f.prefix/"main.c").not_to exist
expect(f.prefix/"license").not_to exist
refute_predicate f.prefix+"license", :exist?
# Test that things make it into the Cellar # Test that things make it into the Cellar
keg = Keg.new f.prefix keg = Keg.new f.prefix
keg.link keg.link
bin = HOMEBREW_PREFIX+"bin" bin = HOMEBREW_PREFIX/"bin"
assert_predicate bin, :directory? expect(bin).to be_a_directory
assert_equal 3, bin.children.length expect(bin.children.count).to eq(3)
assert_predicate f.prefix/".brew/testball.rb", :readable? expect(f.prefix/".brew/testball.rb").to be_readable
end end
end end
def test_bottle_unneeded_formula_install specify "Formula installation with unneeded bottle" do
DevelopmentTools.stubs(:installed?).returns(false) allow(DevelopmentTools).to receive(:installed?).and_return(false)
formula = Testball.new formula = Testball.new
formula.stubs(:bottle_unneeded?).returns(true) allow(formula).to receive(:bottle_unneeded?).and_return(true)
formula.stubs(:bottle_disabled?).returns(true) allow(formula).to receive(:bottle_disabled?).and_return(true)
refute_predicate formula, :bottled? expect(formula).not_to be_bottled
assert_predicate formula, :bottle_unneeded? expect(formula).not_to need_bottle
assert_predicate formula, :bottle_disabled? expect(formula).to have_disabled_bottle
temporary_install(formula) do |f| temporary_install(formula) do |f|
assert_predicate f, :installed? expect(f).to be_installed
end end
end end
def test_not_poured_from_bottle_when_compiler_specified specify "Formula is not poured from bottle when compiler specified" do
assert_nil ARGV.cc expect(ARGV.cc).to be nil
cc_arg = "--cc=clang" cc_arg = "--cc=clang"
ARGV << cc_arg ARGV << cc_arg
temporary_install(TestballBottle.new) do |f| temporary_install(TestballBottle.new) do |f|
tab = Tab.for_formula(f) tab = Tab.for_formula(f)
assert_equal "clang", tab.compiler expect(tab.compiler).to eq("clang")
end end
end end
end
class FormulaInstallerTests < Homebrew::TestCase specify "check installation sanity pinned dependency" do
def test_check_install_sanity_pinned_dep
dep_name = "dependency" dep_name = "dependency"
dep_path = CoreTap.new.formula_dir/"#{dep_name}.rb" dep_path = CoreTap.new.formula_dir/"#{dep_name}.rb"
dep_path.write <<-EOS.undent dep_path.write <<-EOS.undent
...@@ -112,20 +118,20 @@ class FormulaInstallerTests < Homebrew::TestCase ...@@ -112,20 +118,20 @@ class FormulaInstallerTests < Homebrew::TestCase
depends_on dependency.name.to_s depends_on dependency.name.to_s
end end
dependency.prefix("0.1").join("bin/a").mkpath (dependency.prefix("0.1")/"bin"/"a").mkpath
HOMEBREW_PINNED_KEGS.mkpath HOMEBREW_PINNED_KEGS.mkpath
FileUtils.ln_s dependency.prefix("0.1"), HOMEBREW_PINNED_KEGS/dep_name FileUtils.ln_s dependency.prefix("0.1"), HOMEBREW_PINNED_KEGS/dep_name
dependency_keg = Keg.new(dependency.prefix("0.1")) dependency_keg = Keg.new(dependency.prefix("0.1"))
dependency_keg.link dependency_keg.link
assert_predicate dependency_keg, :linked? expect(dependency_keg).to be_linked
assert_predicate dependency, :pinned? expect(dependency).to be_pinned
fi = FormulaInstaller.new(dependent) fi = FormulaInstaller.new(dependent)
assert_raises(CannotInstallFormulaError) { fi.check_install_sanity }
ensure expect {
dependency_keg.unlink fi.check_install_sanity
Formulary::FORMULAE.delete(dep_path) }.to raise_error(CannotInstallFormulaError)
end end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment