summaryrefslogtreecommitdiff
path: root/spec/bundler/commands/post_bundle_message_spec.rb
blob: 9eecff593f7e333e6d59a66f832aa4f2d3f0e211 (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
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
# frozen_string_literal: true

RSpec.describe "post bundle message" do
  before :each do
    gemfile <<-G
      source "https://gem.repo1"
      gem "myrack"
      gem "activesupport", "2.3.5", :group => [:emo, :test]
      group :test do
        gem "rspec"
      end
      gem "myrack-obama", :group => :obama
    G
  end

  let(:bundle_path)                { "./.bundle" }
  let(:bundle_show_system_message) { "Use `bundle info [gemname]` to see where a bundled gem is installed." }
  let(:bundle_show_path_message)   { "Bundled gems are installed into `#{bundle_path}`" }
  let(:bundle_complete_message)    { "Bundle complete!" }
  let(:bundle_updated_message)     { "Bundle updated!" }
  let(:installed_gems_stats)       { "4 Gemfile dependencies, 4 gems now installed." }

  describe "when installing to system gems" do
    before do
      bundle "config set --local path.system true"
    end

    it "shows proper messages according to the configured groups" do
      bundle :install
      expect(out).to include(bundle_show_system_message)
      expect(out).not_to include("Gems in the group")
      expect(out).to include(bundle_complete_message)
      expect(out).to include(installed_gems_stats)

      bundle "config set --local without emo"
      bundle :install
      expect(out).to include(bundle_show_system_message)
      expect(out).to include("Gems in the group 'emo' were not installed")
      expect(out).to include(bundle_complete_message)
      expect(out).to include(installed_gems_stats)

      bundle "config set --local without emo test"
      bundle :install
      expect(out).to include(bundle_show_system_message)
      expect(out).to include("Gems in the groups 'emo' and 'test' were not installed")
      expect(out).to include(bundle_complete_message)
      expect(out).to include("4 Gemfile dependencies, 2 gems now installed.")

      bundle "config set --local without emo obama test"
      bundle :install
      expect(out).to include(bundle_show_system_message)
      expect(out).to include("Gems in the groups 'emo', 'obama' and 'test' were not installed")
      expect(out).to include(bundle_complete_message)
      expect(out).to include("4 Gemfile dependencies, 1 gem now installed.")
    end

    describe "for second bundle install run" do
      it "without any options" do
        2.times { bundle :install }
        expect(out).to include(bundle_show_system_message)
        expect(out).to_not include("Gems in the groups")
        expect(out).to include(bundle_complete_message)
        expect(out).to include(installed_gems_stats)
      end
    end
  end

  describe "with `path` configured" do
    let(:bundle_path) { "./vendor" }

    it "shows proper messages according to the configured groups" do
      bundle "config set --local path vendor"
      bundle :install
      expect(out).to include(bundle_show_path_message)
      expect(out).to_not include("Gems in the group")
      expect(out).to include(bundle_complete_message)

      bundle "config set --local path vendor"
      bundle "config set --local without emo"
      bundle :install
      expect(out).to include(bundle_show_path_message)
      expect(out).to include("Gems in the group 'emo' were not installed")
      expect(out).to include(bundle_complete_message)

      bundle "config set --local path vendor"
      bundle "config set --local without emo test"
      bundle :install
      expect(out).to include(bundle_show_path_message)
      expect(out).to include("Gems in the groups 'emo' and 'test' were not installed")
      expect(out).to include(bundle_complete_message)

      bundle "config set --local path vendor"
      bundle "config set --local without emo obama test"
      bundle :install
      expect(out).to include(bundle_show_path_message)
      expect(out).to include("Gems in the groups 'emo', 'obama' and 'test' were not installed")
      expect(out).to include(bundle_complete_message)
    end
  end

  describe "with an absolute `path` inside the cwd configured" do
    let(:bundle_path) { bundled_app("cache") }

    it "shows proper messages according to the configured groups" do
      bundle "config set --local path #{bundle_path}"
      bundle :install
      expect(out).to include("Bundled gems are installed into `./cache`")
      expect(out).to_not include("Gems in the group")
      expect(out).to include(bundle_complete_message)
    end
  end

  describe "with `path` configured to an absolute path outside the cwd" do
    let(:bundle_path) { tmp("not_bundled_app") }

    it "shows proper messages according to the configured groups" do
      bundle "config set --local path #{bundle_path}"
      bundle :install
      expect(out).to include("Bundled gems are installed into `#{tmp("not_bundled_app")}`")
      expect(out).to_not include("Gems in the group")
      expect(out).to include(bundle_complete_message)
    end
  end

  describe "with misspelled or non-existent gem name" do
    before do
      bundle "config set force_ruby_platform true"
    end

    it "should report a helpful error message" do
      install_gemfile <<-G, raise_on_error: false
        source "https://gem.repo1"
        gem "myrack"
        gem "not-a-gem", :group => :development
      G
      expect(err).to include <<~EOS.strip
        Could not find gem 'not-a-gem' in rubygems repository https://gem.repo1/ or installed locally.
      EOS
    end

    it "should report a helpful error message with reference to cache if available" do
      install_gemfile <<-G
        source "https://gem.repo1"
        gem "myrack"
      G
      bundle :cache
      expect(bundled_app("vendor/cache/myrack-1.0.0.gem")).to exist
      install_gemfile <<-G, raise_on_error: false
        source "https://gem.repo1"
        gem "myrack"
        gem "not-a-gem", :group => :development
      G
      expect(err).to include("Could not find gem 'not-a-gem' in").
        and include("or in gems cached in vendor/cache.")
    end
  end

  describe "for bundle update" do
    it "shows proper messages according to the configured groups" do
      bundle :update, all: true
      expect(out).not_to include("Gems in the groups")
      expect(out).to include(bundle_updated_message)

      bundle "config set --local without emo"
      bundle :install
      bundle :update, all: true
      expect(out).to include("Gems in the group 'emo' were not updated")
      expect(out).to include(bundle_updated_message)

      bundle "config set --local without emo test"
      bundle :install
      bundle :update, all: true
      expect(out).to include("Gems in the groups 'emo' and 'test' were not updated")
      expect(out).to include(bundle_updated_message)

      bundle "config set --local without emo obama test"
      bundle :install
      bundle :update, all: true
      expect(out).to include("Gems in the groups 'emo', 'obama' and 'test' were not updated")
      expect(out).to include(bundle_updated_message)
    end
  end
end