summaryrefslogtreecommitdiff
path: root/spec/bundler/install/binstubs_spec.rb
blob: 928ba80b159e5007b144b7664bbccf5bd9bf913b (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
# frozen_string_literal: true

RSpec.describe "bundle install" do
  describe "when system_bindir is set" do
    it "overrides Gem.bindir" do
      expect(Pathname.new("/usr/bin")).not_to be_writable
      gemfile <<-G
        def Gem.bindir; "/usr/bin"; end
        source "#{file_uri_for(gem_repo1)}"
        gem "rack"
      G

      config "BUNDLE_SYSTEM_BINDIR" => system_gem_path("altbin").to_s
      bundle :install
      expect(the_bundle).to include_gems "rack 1.0.0"
      expect(system_gem_path("altbin/rackup")).to exist
    end
  end

  describe "when multiple gems contain the same exe" do
    before do
      build_repo2 do
        build_gem "fake", "14" do |s|
          s.executables = "rackup"
        end
      end

      install_gemfile <<-G
        source "#{file_uri_for(gem_repo2)}"
        gem "fake"
        gem "rack"
      G
    end

    it "warns about the situation" do
      bundle "exec rackup"

      expect(last_command.stderr).to include(
        "The `rackup` executable in the `fake` gem is being loaded, but it's also present in other gems (rack).\n" \
        "If you meant to run the executable for another gem, make sure you use a project specific binstub (`bundle binstub <gem_name>`).\n" \
        "If you plan to use multiple conflicting executables, generate binstubs for them and disambiguate their names."
      ).or include(
        "The `rackup` executable in the `rack` gem is being loaded, but it's also present in other gems (fake).\n" \
        "If you meant to run the executable for another gem, make sure you use a project specific binstub (`bundle binstub <gem_name>`).\n" \
        "If you plan to use multiple conflicting executables, generate binstubs for them and disambiguate their names."
      )
    end
  end
end