mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
323 lines
8.6 KiB
Ruby
323 lines
8.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "bundler plugin install" do
|
|
before do
|
|
build_repo2 do
|
|
build_plugin "foo"
|
|
build_plugin "kung-foo"
|
|
end
|
|
end
|
|
|
|
it "shows proper message when gem in not found in the source" do
|
|
bundle "plugin install no-foo --source #{file_uri_for(gem_repo1)}", :raise_on_error => false
|
|
|
|
expect(err).to include("Could not find")
|
|
plugin_should_not_be_installed("no-foo")
|
|
end
|
|
|
|
it "installs from rubygems source" do
|
|
bundle "plugin install foo --source #{file_uri_for(gem_repo2)}"
|
|
|
|
expect(out).to include("Installed plugin foo")
|
|
plugin_should_be_installed("foo")
|
|
end
|
|
|
|
context "plugin is already installed" do
|
|
before do
|
|
bundle "plugin install foo --source #{file_uri_for(gem_repo2)}"
|
|
end
|
|
|
|
it "doesn't install plugin again" do
|
|
bundle "plugin install foo --source #{file_uri_for(gem_repo2)}"
|
|
expect(out).not_to include("Installing plugin foo")
|
|
expect(out).not_to include("Installed plugin foo")
|
|
end
|
|
end
|
|
|
|
it "installs multiple plugins" do
|
|
bundle "plugin install foo kung-foo --source #{file_uri_for(gem_repo2)}"
|
|
|
|
expect(out).to include("Installed plugin foo")
|
|
expect(out).to include("Installed plugin kung-foo")
|
|
|
|
plugin_should_be_installed("foo", "kung-foo")
|
|
end
|
|
|
|
it "uses the same version for multiple plugins" do
|
|
update_repo2 do
|
|
build_plugin "foo", "1.1"
|
|
build_plugin "kung-foo", "1.1"
|
|
end
|
|
|
|
bundle "plugin install foo kung-foo --version '1.0' --source #{file_uri_for(gem_repo2)}"
|
|
|
|
expect(out).to include("Installing foo 1.0")
|
|
expect(out).to include("Installing kung-foo 1.0")
|
|
plugin_should_be_installed("foo", "kung-foo")
|
|
end
|
|
|
|
it "works with different load paths" do
|
|
build_repo2 do
|
|
build_plugin "testing" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
require "fubar"
|
|
class Test < Bundler::Plugin::API
|
|
command "check2"
|
|
|
|
def exec(command, args)
|
|
puts "mate"
|
|
end
|
|
end
|
|
RUBY
|
|
s.require_paths = %w[lib src]
|
|
s.write("src/fubar.rb")
|
|
end
|
|
end
|
|
bundle "plugin install testing --source #{file_uri_for(gem_repo2)}"
|
|
|
|
bundle "check2", "no-color" => false
|
|
expect(out).to eq("mate")
|
|
end
|
|
|
|
context "malformatted plugin" do
|
|
it "fails when plugins.rb is missing" do
|
|
update_repo2 do
|
|
build_plugin "foo", "1.1"
|
|
build_plugin "kung-foo", "1.1"
|
|
end
|
|
|
|
bundle "plugin install foo kung-foo --version '1.0' --source #{file_uri_for(gem_repo2)}"
|
|
|
|
expect(out).to include("Installing foo 1.0")
|
|
expect(out).to include("Installing kung-foo 1.0")
|
|
plugin_should_be_installed("foo", "kung-foo")
|
|
|
|
build_repo2 do
|
|
build_gem "charlie"
|
|
end
|
|
|
|
bundle "plugin install charlie --source #{file_uri_for(gem_repo2)}"
|
|
|
|
expect(err).to include("Failed to install the following plugins: `charlie`. The underlying error was: plugins.rb was not found")
|
|
|
|
expect(global_plugin_gem("charlie-1.0")).not_to be_directory
|
|
|
|
plugin_should_be_installed("foo", "kung-foo")
|
|
plugin_should_not_be_installed("charlie")
|
|
end
|
|
|
|
it "fails when plugins.rb throws exception on load" do
|
|
build_repo2 do
|
|
build_plugin "chaplin" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
raise "I got you man"
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
bundle "plugin install chaplin --source #{file_uri_for(gem_repo2)}"
|
|
|
|
expect(global_plugin_gem("chaplin-1.0")).not_to be_directory
|
|
|
|
plugin_should_not_be_installed("chaplin")
|
|
end
|
|
end
|
|
|
|
context "git plugins" do
|
|
it "installs form a git source" do
|
|
build_git "foo" do |s|
|
|
s.write "plugins.rb"
|
|
end
|
|
|
|
bundle "plugin install foo --git #{file_uri_for(lib_path("foo-1.0"))}"
|
|
|
|
expect(out).to include("Installed plugin foo")
|
|
plugin_should_be_installed("foo")
|
|
end
|
|
|
|
it "installs form a local git source" do
|
|
build_git "foo" do |s|
|
|
s.write "plugins.rb"
|
|
end
|
|
|
|
bundle "plugin install foo --local_git #{lib_path("foo-1.0")}"
|
|
|
|
expect(out).to include("Installed plugin foo")
|
|
plugin_should_be_installed("foo")
|
|
end
|
|
|
|
it "raises an error when both git and local git sources are specified" do
|
|
bundle "plugin install foo --local_git /phony/path/project --git git@gitphony.com:/repo/project", :raise_on_error => false
|
|
|
|
expect(exitstatus).not_to eq(0)
|
|
expect(err).to eq("Remote and local plugin git sources can't be both specified")
|
|
end
|
|
end
|
|
|
|
context "Gemfile eval" do
|
|
before do
|
|
allow(Bundler::SharedHelpers).to receive(:find_gemfile).and_return(bundled_app_gemfile)
|
|
end
|
|
|
|
it "installs plugins listed in gemfile" do
|
|
gemfile <<-G
|
|
source '#{file_uri_for(gem_repo2)}'
|
|
plugin 'foo'
|
|
gem 'rack', "1.0.0"
|
|
G
|
|
|
|
bundle "install"
|
|
|
|
expect(out).to include("Installed plugin foo")
|
|
|
|
expect(out).to include("Bundle complete!")
|
|
|
|
expect(the_bundle).to include_gems("rack 1.0.0")
|
|
plugin_should_be_installed("foo")
|
|
end
|
|
|
|
it "accepts plugin version" do
|
|
update_repo2 do
|
|
build_plugin "foo", "1.1.0"
|
|
end
|
|
|
|
gemfile <<-G
|
|
source '#{file_uri_for(gem_repo2)}'
|
|
plugin 'foo', "1.0"
|
|
G
|
|
|
|
bundle "install"
|
|
|
|
expect(out).to include("Installing foo 1.0")
|
|
|
|
plugin_should_be_installed("foo")
|
|
|
|
expect(out).to include("Bundle complete!")
|
|
end
|
|
|
|
it "accepts git sources" do
|
|
build_git "ga-plugin" do |s|
|
|
s.write "plugins.rb"
|
|
end
|
|
|
|
install_gemfile <<-G
|
|
plugin 'ga-plugin', :git => "#{lib_path("ga-plugin-1.0")}"
|
|
G
|
|
|
|
expect(out).to include("Installed plugin ga-plugin")
|
|
plugin_should_be_installed("ga-plugin")
|
|
end
|
|
|
|
it "accepts path sources" do
|
|
build_lib "ga-plugin" do |s|
|
|
s.write "plugins.rb"
|
|
end
|
|
|
|
install_gemfile <<-G
|
|
plugin 'ga-plugin', :path => "#{lib_path("ga-plugin-1.0")}"
|
|
G
|
|
|
|
expect(out).to include("Installed plugin ga-plugin")
|
|
plugin_should_be_installed("ga-plugin")
|
|
end
|
|
|
|
context "in deployment mode" do
|
|
it "installs plugins" do
|
|
install_gemfile <<-G
|
|
source '#{file_uri_for(gem_repo2)}'
|
|
gem 'rack', "1.0.0"
|
|
G
|
|
|
|
bundle "config --local deployment true"
|
|
install_gemfile <<-G
|
|
source '#{file_uri_for(gem_repo2)}'
|
|
plugin 'foo'
|
|
gem 'rack', "1.0.0"
|
|
G
|
|
|
|
expect(out).to include("Installed plugin foo")
|
|
|
|
expect(out).to include("Bundle complete!")
|
|
|
|
expect(the_bundle).to include_gems("rack 1.0.0")
|
|
plugin_should_be_installed("foo")
|
|
end
|
|
end
|
|
end
|
|
|
|
context "inline gemfiles" do
|
|
it "installs the listed plugins" do
|
|
code = <<-RUBY
|
|
require "bundler/inline"
|
|
|
|
gemfile do
|
|
source '#{file_uri_for(gem_repo2)}'
|
|
plugin 'foo'
|
|
end
|
|
RUBY
|
|
|
|
ruby code, :env => { "BUNDLER_VERSION" => Bundler::VERSION }
|
|
expect(local_plugin_gem("foo-1.0", "plugins.rb")).to exist
|
|
end
|
|
end
|
|
|
|
describe "local plugin" do
|
|
it "is installed when inside an app" do
|
|
allow(Bundler::SharedHelpers).to receive(:find_gemfile).and_return(bundled_app_gemfile)
|
|
gemfile ""
|
|
bundle "plugin install foo --source #{file_uri_for(gem_repo2)}"
|
|
|
|
plugin_should_be_installed("foo")
|
|
expect(local_plugin_gem("foo-1.0")).to be_directory
|
|
end
|
|
|
|
context "conflict with global plugin" do
|
|
before do
|
|
update_repo2 do
|
|
build_plugin "fubar" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
class Fubar < Bundler::Plugin::API
|
|
command "shout"
|
|
|
|
def exec(command, args)
|
|
puts "local_one"
|
|
end
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
# inside the app
|
|
gemfile "source '#{file_uri_for(gem_repo2)}'\nplugin 'fubar'"
|
|
bundle "install"
|
|
|
|
update_repo2 do
|
|
build_plugin "fubar", "1.1" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
class Fubar < Bundler::Plugin::API
|
|
command "shout"
|
|
|
|
def exec(command, args)
|
|
puts "global_one"
|
|
end
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
# outside the app
|
|
bundle "plugin install fubar --source #{file_uri_for(gem_repo2)}", :dir => tmp
|
|
end
|
|
|
|
it "inside the app takes precedence over global plugin" do
|
|
bundle "shout"
|
|
expect(out).to eq("local_one")
|
|
end
|
|
|
|
it "outside the app global plugin is used" do
|
|
bundle "shout", :dir => tmp
|
|
expect(out).to eq("global_one")
|
|
end
|
|
end
|
|
end
|
|
end
|