2017-02-23 06:04:02 +01:00
|
|
|
require "extend/ENV"
|
|
|
|
|
|
|
|
describe "brew reinstall", :integration_test do
|
2018-03-25 13:30:37 +01:00
|
|
|
before do
|
2017-02-23 06:04:02 +01:00
|
|
|
setup_test_formula "testball"
|
|
|
|
|
2017-07-29 19:55:05 +02:00
|
|
|
expect { brew "install", "testball", "--with-foo" }.to be_a_success
|
2017-02-23 06:04:02 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "reinstalls a Formula" do
|
|
|
|
foo_dir = HOMEBREW_CELLAR/"testball/0.1/foo"
|
|
|
|
expect(foo_dir).to exist
|
|
|
|
foo_dir.rmtree
|
|
|
|
|
2017-02-25 09:01:24 +01:00
|
|
|
expect { brew "reinstall", "testball" }
|
2017-02-23 06:04:02 +01:00
|
|
|
.to output(/Reinstalling testball --with-foo/).to_stdout
|
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
|
|
|
|
|
|
|
expect(foo_dir).to exist
|
|
|
|
end
|
|
|
|
|
|
|
|
it "reinstalls a Formula even when one of the options is invalid" do
|
2017-02-25 09:01:24 +01:00
|
|
|
expect { brew "reinstall", "testball", "--with-fo" }
|
2018-11-07 22:17:36 +05:30
|
|
|
.to output(/Error: invalid option: --with-fo/).to_stderr
|
|
|
|
.and be_a_failure
|
2017-02-23 06:04:02 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "refuses to reinstall a pinned Formula, but doesn't fail" do
|
|
|
|
(HOMEBREW_CELLAR/"testball/0.1").mkpath
|
|
|
|
HOMEBREW_PINNED_KEGS.mkpath
|
|
|
|
FileUtils.ln_s HOMEBREW_CELLAR/"testball/0.1", HOMEBREW_PINNED_KEGS/"testball"
|
|
|
|
|
|
|
|
expect { brew "reinstall", "testball" }
|
|
|
|
.to output(/testball is pinned. You must unpin it to reinstall./).to_stderr
|
|
|
|
.and not_to_output.to_stdout
|
|
|
|
.and be_a_success
|
|
|
|
|
|
|
|
HOMEBREW_PINNED_KEGS.rmtree
|
|
|
|
end
|
|
|
|
end
|