brew/Library/Homebrew/test/formulary_spec.rb

263 lines
7.8 KiB
Ruby
Raw Normal View History

2017-02-16 02:47:44 +01:00
require "formula"
require "formula_installer"
require "utils/bottles"
describe Formulary do
let(:formula_name) { "testball_bottle" }
let(:formula_path) { CoreTap.new.formula_dir/"#{formula_name}.rb" }
let(:formula_content) do
2018-07-11 15:17:40 +02:00
<<~RUBY
class #{described_class.class_s(formula_name)} < Formula
2017-02-16 02:47:44 +01:00
url "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz"
sha256 TESTBALL_SHA256
bottle do
cellar :any_skip_relocation
root_url "file://#{bottle_dir}"
sha256 "d48bbbe583dcfbfa608579724fc6f0328b3cd316935c6ea22f134610aaf2952f" => :#{Utils::Bottles.tag}
2017-02-16 02:47:44 +01:00
end
def install
prefix.install "bin"
prefix.install "libexec"
end
end
2018-07-11 15:17:40 +02:00
RUBY
2017-02-16 02:47:44 +01:00
end
let(:bottle_dir) { Pathname.new("#{TEST_FIXTURE_DIR}/bottles") }
let(:bottle) { bottle_dir/"testball_bottle-0.1.#{Utils::Bottles.tag}.bottle.tar.gz" }
describe "::class_s" do
it "replaces '+' with 'x'" do
expect(described_class.class_s("foo++")).to eq("Fooxx")
2017-02-16 02:47:44 +01:00
end
2018-04-13 16:40:08 +02:00
it "converts a string with dots to PascalCase" do
expect(described_class.class_s("shell.fm")).to eq("ShellFm")
2018-04-13 16:40:08 +02:00
end
it "converts a string with hyphens to PascalCase" do
expect(described_class.class_s("pkg-config")).to eq("PkgConfig")
2018-04-13 16:40:08 +02:00
end
it "converts a string with a single letter separated by a hyphen to PascalCase" do
expect(described_class.class_s("s-lang")).to eq("SLang")
end
it "converts a string with underscores to PascalCase" do
expect(described_class.class_s("foo_bar")).to eq("FooBar")
2017-02-16 02:47:44 +01:00
end
it "replaces '@' with 'AT'" do
expect(described_class.class_s("openssl@1.1")).to eq("OpensslAT11")
2017-02-16 02:47:44 +01:00
end
end
describe "::factory" do
before do
2017-02-16 02:47:44 +01:00
formula_path.write formula_content
end
it "returns a Formula" do
expect(described_class.factory(formula_name)).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
it "returns a Formula when given a fully qualified name" do
expect(described_class.factory("homebrew/core/#{formula_name}")).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
it "raises an error if the Formula cannot be found" do
expect {
described_class.factory("not_existed_formula")
2017-02-16 02:47:44 +01:00
}.to raise_error(FormulaUnavailableError)
end
it "raises an error if ref is nil" do
expect {
described_class.factory(nil)
}.to raise_error(ArgumentError)
end
2018-04-13 16:40:08 +02:00
context "when the Formula has the wrong class" do
2017-02-16 02:47:44 +01:00
let(:formula_name) { "giraffe" }
let(:formula_content) do
2018-07-11 15:17:40 +02:00
<<~RUBY
class Wrong#{described_class.class_s(formula_name)} < Formula
2017-02-16 02:47:44 +01:00
end
2018-07-11 15:17:40 +02:00
RUBY
2017-02-16 02:47:44 +01:00
end
it "raises an error" do
expect {
described_class.factory(formula_name)
2017-02-16 02:47:44 +01:00
}.to raise_error(FormulaClassUnavailableError)
end
end
it "returns a Formula when given a path" do
expect(described_class.factory(formula_path)).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
it "returns a Formula when given a URL" do
formula = described_class.factory("file://#{formula_path}")
2017-02-16 02:47:44 +01:00
expect(formula).to be_kind_of(Formula)
end
2018-04-13 16:40:08 +02:00
context "when given a bottle" do
subject(:formula) { described_class.factory(bottle) }
it "returns a Formula" do
expect(formula).to be_kind_of(Formula)
end
it "calling #local_bottle_path on the returned Formula returns the bottle path" do
expect(formula.local_bottle_path).to eq(bottle.realpath)
end
2017-02-16 02:47:44 +01:00
end
2018-04-13 16:40:08 +02:00
context "when given an alias" do
subject(:formula) { described_class.factory("foo") }
let(:alias_dir) { CoreTap.instance.alias_dir.tap(&:mkpath) }
let(:alias_path) { alias_dir/"foo" }
before do
alias_dir.mkpath
FileUtils.ln_s formula_path, alias_path
end
it "returns a Formula" do
expect(formula).to be_kind_of(Formula)
end
it "calling #alias_path on the returned Formula returns the alias path" do
expect(formula.alias_path).to eq(alias_path.to_s)
end
2017-02-16 02:47:44 +01:00
end
context "with installed Formula" do
before do
2018-09-20 09:07:56 +01:00
allow(described_class).to receive(:loader_for).and_call_original
stub_formula_loader formula("gcc") { url "gcc-1.0" }
stub_formula_loader formula("patchelf") { url "patchelf-1.0" }
allow(Formula["patchelf"]).to receive(:installed?).and_return(true)
end
let(:installed_formula) { described_class.factory(formula_path) }
let(:installer) { FormulaInstaller.new(installed_formula) }
2017-02-16 02:47:44 +01:00
it "returns a Formula when given a rack" do
2017-07-29 19:55:05 +02:00
installer.install
2017-02-16 02:47:44 +01:00
f = described_class.from_rack(installed_formula.rack)
2017-02-16 02:47:44 +01:00
expect(f).to be_kind_of(Formula)
end
it "returns a Formula when given a Keg" do
2017-07-29 19:55:05 +02:00
installer.install
2017-02-16 02:47:44 +01:00
keg = Keg.new(installed_formula.prefix)
f = described_class.from_keg(keg)
2017-02-16 02:47:44 +01:00
expect(f).to be_kind_of(Formula)
end
end
2018-04-13 16:40:08 +02:00
context "when loading from Tap" do
2017-02-16 02:47:44 +01:00
let(:tap) { Tap.new("homebrew", "foo") }
2018-04-13 16:40:08 +02:00
let(:another_tap) { Tap.new("homebrew", "bar") }
2017-02-16 02:47:44 +01:00
let(:formula_path) { tap.path/"#{formula_name}.rb" }
it "returns a Formula when given a name" do
expect(described_class.factory(formula_name)).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
it "returns a Formula from an Alias path" do
alias_dir = tap.path/"Aliases"
alias_dir.mkpath
FileUtils.ln_s formula_path, alias_dir/"bar"
expect(described_class.factory("bar")).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
it "raises an error when the Formula cannot be found" do
expect {
described_class.factory("#{tap}/not_existed_formula")
2017-02-16 02:47:44 +01:00
}.to raise_error(TapFormulaUnavailableError)
end
it "returns a Formula when given a fully qualified name" do
expect(described_class.factory("#{tap}/#{formula_name}")).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
it "raises an error if a Formula is in multiple Taps" do
2018-04-13 16:40:08 +02:00
(another_tap.path/"#{formula_name}.rb").write formula_content
expect {
described_class.factory(formula_name)
}.to raise_error(TapFormulaAmbiguityError)
2017-02-16 02:47:44 +01:00
end
end
end
specify "::from_contents" do
expect(described_class.from_contents(formula_name, formula_path, formula_content)).to be_kind_of(Formula)
2017-02-16 02:47:44 +01:00
end
2018-04-13 16:40:08 +02:00
describe "::to_rack" do
alias_matcher :exist, :be_exist
let(:rack_path) { HOMEBREW_CELLAR/formula_name }
context "when the Rack does not exist" do
it "returns the Rack" do
expect(described_class.to_rack(formula_name)).to eq(rack_path)
end
end
context "when the Rack exists" do
before do
rack_path.mkpath
end
2017-02-16 02:47:44 +01:00
2018-04-13 16:40:08 +02:00
it "returns the Rack" do
expect(described_class.to_rack(formula_name)).to eq(rack_path)
end
end
2017-02-16 02:47:44 +01:00
2018-04-13 16:40:08 +02:00
it "raises an error if the Formula is not available" do
expect {
described_class.to_rack("a/b/#{formula_name}")
}.to raise_error(TapFormulaUnavailableError)
end
2017-02-16 02:47:44 +01:00
end
describe "::find_with_priority" do
let(:core_path) { CoreTap.new.formula_dir/"#{formula_name}.rb" }
let(:tap) { Tap.new("homebrew", "foo") }
let(:tap_path) { tap.path/"#{formula_name}.rb" }
before do
2017-02-16 02:47:44 +01:00
core_path.write formula_content
tap_path.write formula_content
end
it "prioritizes core Formulae" do
formula = described_class.find_with_priority(formula_name)
2017-02-16 02:47:44 +01:00
expect(formula.path).to eq(core_path)
end
it "prioritizes Formulae from pinned Taps" do
2018-04-13 16:40:08 +02:00
tap.pin
formula = described_class.find_with_priority(formula_name)
expect(formula.path).to eq(tap_path.realpath)
2017-02-16 02:47:44 +01:00
end
end
2017-02-22 00:37:42 +01:00
describe "::core_path" do
it "returns the path to a Formula in the core tap" do
name = "foo-bar"
expect(described_class.core_path(name))
2017-02-22 00:37:42 +01:00
.to eq(Pathname.new("#{HOMEBREW_LIBRARY}/Taps/homebrew/homebrew-core/Formula/#{name}.rb"))
end
end
2017-02-16 02:47:44 +01:00
end