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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
# frozen_string_literal: true
RSpec.describe "bundle show" do
context "with a standard Gemfile" do
before :each do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rails"
G
end
it "creates a Gemfile.lock if one did not exist" do
FileUtils.rm("Gemfile.lock")
bundle "show"
expect(bundled_app("Gemfile.lock")).to exist
end
it "creates a Gemfile.lock when invoked with a gem name" do
FileUtils.rm("Gemfile.lock")
bundle "show rails"
expect(bundled_app("Gemfile.lock")).to exist
end
it "prints path if gem exists in bundle" do
bundle "show rails"
expect(out).to eq(default_bundle_path("gems", "rails-2.3.2").to_s)
end
it "prints deprecation", :bundler => "2" do
bundle "show rails"
expect(err).to eq("[DEPRECATED] use `bundle info rails` instead of `bundle show rails`")
end
it "prints path if gem exists in bundle (with --paths option)" do
bundle "show rails --paths"
expect(out).to eq(default_bundle_path("gems", "rails-2.3.2").to_s)
end
it "prints deprecation when called with a gem and the --paths option", :bundler => "2" do
bundle "show rails --paths"
expect(err).to eq("[DEPRECATED] use `bundle info rails --path` instead of `bundle show rails --paths`")
end
it "warns if path no longer exists on disk" do
FileUtils.rm_rf(default_bundle_path("gems", "rails-2.3.2"))
bundle "show rails"
expect(err).to match(/has been deleted/i)
expect(err).to match(default_bundle_path("gems", "rails-2.3.2").to_s)
end
it "prints the path to the running bundler" do
bundle "show bundler"
expect(out).to eq(root.to_s)
end
it "prints deprecation when called with bundler", :bundler => "2" do
bundle "show bundler"
expect(err).to eq("[DEPRECATED] use `bundle info bundler` instead of `bundle show bundler`")
end
it "complains if gem not in bundle" do
bundle "show missing"
expect(err).to match(/could not find gem 'missing'/i)
end
it "prints path of all gems in bundle sorted by name" do
bundle "show --paths"
expect(out).to include(default_bundle_path("gems", "rake-12.3.2").to_s)
expect(out).to include(default_bundle_path("gems", "rails-2.3.2").to_s)
# Gem names are the last component of their path.
gem_list = out.split.map {|p| p.split("/").last }
expect(gem_list).to eq(gem_list.sort)
end
it "prints a deprecation when called with the --paths option", :bundler => 2 do
bundle "show --paths"
expect(err).to eq("[DEPRECATED] use `bundle list` instead of `bundle show --paths`")
end
it "prints summary of gems" do
bundle "show --verbose"
expect(out).to include("* actionmailer (2.3.2)")
expect(out).to include("\tSummary: This is just a fake gem for testing")
expect(out).to include("\tHomepage: No website available.")
expect(out).to include("\tStatus: Up to date")
end
end
context "with a git repo in the Gemfile" do
before :each do
@git = build_git "foo", "1.0"
end
it "prints out git info" do
install_gemfile <<-G
gem "foo", :git => "#{lib_path("foo-1.0")}"
G
expect(the_bundle).to include_gems "foo 1.0"
bundle :show
expect(out).to include("foo (1.0 #{@git.ref_for("master", 6)}")
end
it "prints out branch names other than master" do
update_git "foo", :branch => "omg" do |s|
s.write "lib/foo.rb", "FOO = '1.0.omg'"
end
@revision = revision_for(lib_path("foo-1.0"))[0...6]
install_gemfile <<-G
gem "foo", :git => "#{lib_path("foo-1.0")}", :branch => "omg"
G
expect(the_bundle).to include_gems "foo 1.0.omg"
bundle :show
expect(out).to include("foo (1.0 #{@git.ref_for("omg", 6)}")
end
it "doesn't print the branch when tied to a ref" do
sha = revision_for(lib_path("foo-1.0"))
install_gemfile <<-G
gem "foo", :git => "#{lib_path("foo-1.0")}", :ref => "#{sha}"
G
bundle :show
expect(out).to include("foo (1.0 #{sha[0..6]})")
end
it "handles when a version is a '-' prerelease" do
@git = build_git("foo", "1.0.0-beta.1", :path => lib_path("foo"))
install_gemfile <<-G
gem "foo", "1.0.0-beta.1", :git => "#{lib_path("foo")}"
G
expect(the_bundle).to include_gems "foo 1.0.0.pre.beta.1"
bundle! :show
expect(out).to include("foo (1.0.0.pre.beta.1")
end
end
context "in a fresh gem in a blank git repo" do
before :each do
build_git "foo", :path => lib_path("foo")
in_app_root_custom lib_path("foo")
File.open("Gemfile", "w") {|f| f.puts "gemspec" }
sys_exec "rm -rf .git && git init"
end
it "does not output git errors" do
bundle :show
expect(err_without_deprecations).to be_empty
end
end
it "performs an automatic bundle install" do
gemfile <<-G
source "file://#{gem_repo1}"
gem "foo"
G
bundle "config set auto_install 1"
bundle :show
expect(out).to include("Installing foo 1.0")
end
context "with an invalid regexp for gem name" do
it "does not find the gem" do
install_gemfile <<-G
source "file://#{gem_repo1}"
gem "rails"
G
invalid_regexp = "[]"
bundle "show #{invalid_regexp}"
expect(err).to include("Could not find gem '#{invalid_regexp}'.")
end
end
context "--outdated option" do
# Regression test for https://github.com/bundler/bundler/issues/5375
before do
build_repo2
end
it "doesn't update gems to newer versions" do
install_gemfile! <<-G
source "file://#{gem_repo2}"
gem "rails"
G
expect(the_bundle).to include_gem("rails 2.3.2")
update_repo2 do
build_gem "rails", "3.0.0" do |s|
s.executables = "rails"
end
end
bundle! "show --outdated"
bundle! "install"
expect(the_bundle).to include_gem("rails 2.3.2")
end
end
end
|