blob: b9a0d8d405352ab8278c198077fcfef30ef40123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
require "cmd/uninstall"
describe "brew uninstall", :integration_test do
it "uninstalls a given Formula" do
shutup do
expect { brew "install", testball }.to be_a_success
end
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(:each) 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
|