brew/Library/Homebrew/test/os/linux/dependency_collector_spec.rb

54 lines
2.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-20 21:33:38 +00:00
require "dependency_collector"
RSpec.describe DependencyCollector do
2018-02-20 21:33:38 +00:00
alias_matcher :be_a_build_requirement, :be_build
subject(:collector) { described_class.new }
2018-02-20 21:33:38 +00:00
describe "#add" do
resource = Resource.new
2024-04-30 11:10:23 +02:00
context "when xz, unzip and bzip2 are not available" do
2018-02-20 21:33:38 +00:00
it "creates a resource dependency from a '.xz' URL" do
resource.url("https://brew.sh/foo.xz")
2018-02-21 13:44:51 +00:00
allow_any_instance_of(Object).to receive(:which).with("xz")
expect(collector.add(resource)).to eq(Dependency.new("xz", [:build, :test, :implicit]))
2018-02-20 21:33:38 +00:00
end
it "creates a resource dependency from a '.zip' URL" do
resource.url("https://brew.sh/foo.zip")
allow_any_instance_of(Object).to receive(:which).with("unzip")
expect(collector.add(resource)).to eq(Dependency.new("unzip", [:build, :test, :implicit]))
2018-02-20 21:33:38 +00:00
end
it "creates a resource dependency from a '.bz2' URL" do
resource.url("https://brew.sh/foo.tar.bz2")
2018-02-21 13:44:51 +00:00
allow_any_instance_of(Object).to receive(:which).with("bzip2")
expect(collector.add(resource)).to eq(Dependency.new("bzip2", [:build, :test, :implicit]))
2018-02-20 21:33:38 +00:00
end
end
2024-04-30 11:10:23 +02:00
context "when xz, zip and bzip2 are available" do
2018-02-20 21:33:38 +00:00
it "does not create a resource dependency from a '.xz' URL" do
resource.url("https://brew.sh/foo.xz")
2018-02-21 13:44:51 +00:00
allow_any_instance_of(Object).to receive(:which).with("xz").and_return(Pathname.new("foo"))
expect(collector.add(resource)).to be_nil
2018-02-20 21:33:38 +00:00
end
it "does not create a resource dependency from a '.zip' URL" do
resource.url("https://brew.sh/foo.zip")
allow_any_instance_of(Object).to receive(:which).with("unzip").and_return(Pathname.new("foo"))
expect(collector.add(resource)).to be_nil
2018-02-20 21:33:38 +00:00
end
it "does not create a resource dependency from a '.bz2' URL" do
resource.url("https://brew.sh/foo.tar.bz2")
2018-02-21 13:44:51 +00:00
allow_any_instance_of(Object).to receive(:which).with("bzip2").and_return(Pathname.new("foo"))
expect(collector.add(resource)).to be_nil
2018-02-20 21:33:38 +00:00
end
end
end
end