mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

There’s too many warnings to start enabling `rubocop-rspec` by default but let’s at least apply the cleanups it does automatically.
75 lines
1.8 KiB
Ruby
75 lines
1.8 KiB
Ruby
require "cmd/uninstall"
|
|
|
|
describe "brew uninstall", :integration_test do
|
|
it "uninstalls a given Formula" do
|
|
expect { brew "install", testball }.to be_a_success
|
|
|
|
expect { brew "uninstall", "--force", testball }
|
|
.to output(/Uninstalling testball/).to_stdout
|
|
.and not_to_output.to_stderr
|
|
.and be_a_success
|
|
end
|
|
end
|
|
|
|
describe Homebrew do
|
|
let(:dependency) { formula("dependency") { url "f-1" } }
|
|
let(:dependent) do
|
|
formula("dependent") do
|
|
url "f-1"
|
|
depends_on "dependency"
|
|
end
|
|
end
|
|
|
|
let(:opts) { { dependency.rack => [Keg.new(dependency.installed_prefix)] } }
|
|
|
|
before do
|
|
[dependency, dependent].each do |f|
|
|
f.installed_prefix.mkpath
|
|
Keg.new(f.installed_prefix).optlink
|
|
end
|
|
|
|
tab = Tab.empty
|
|
tab.homebrew_version = "1.1.6"
|
|
tab.tabfile = dependent.installed_prefix/Tab::FILENAME
|
|
tab.runtime_dependencies = [
|
|
{ "full_name" => "dependency", "version" => "1" },
|
|
]
|
|
tab.write
|
|
|
|
stub_formula_loader dependency
|
|
stub_formula_loader dependent
|
|
end
|
|
|
|
describe "::handle_unsatisfied_dependents" do
|
|
specify "when developer" do
|
|
expect {
|
|
described_class.handle_unsatisfied_dependents(opts)
|
|
}.to output(/Warning/).to_stderr
|
|
|
|
expect(described_class).not_to have_failed
|
|
end
|
|
|
|
specify "when not developer" do
|
|
run_as_not_developer do
|
|
expect {
|
|
described_class.handle_unsatisfied_dependents(opts)
|
|
}.to output(/Error/).to_stderr
|
|
|
|
expect(described_class).to have_failed
|
|
end
|
|
end
|
|
|
|
specify "when not developer and --ignore-dependencies is specified" do
|
|
ARGV << "--ignore-dependencies"
|
|
|
|
run_as_not_developer do
|
|
expect {
|
|
described_class.handle_unsatisfied_dependents(opts)
|
|
}.not_to output.to_stderr
|
|
|
|
expect(described_class).not_to have_failed
|
|
end
|
|
end
|
|
end
|
|
end
|