mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
59c8d50653
* bin/*, lib/bundler/*, lib/bundler.rb, spec/bundler, man/*: Merge from latest stable branch of bundler/bundler repository and added workaround patches. I will backport them into upstream. * common.mk, defs/gmake.mk: Added `test-bundler` task for test suite of bundler. * tool/sync_default_gems.rb: Added sync task for bundler. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65509 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
109 lines
3 KiB
Ruby
109 lines
3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "hook plugins" do
|
|
context "before-install-all hook" do
|
|
before do
|
|
build_repo2 do
|
|
build_plugin "before-install-all-plugin" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
Bundler::Plugin::API.hook Bundler::Plugin::Events::GEM_BEFORE_INSTALL_ALL do |deps|
|
|
puts "gems to be installed \#{deps.map(&:name).join(", ")}"
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
bundle "plugin install before-install-all-plugin --source file://#{gem_repo2}"
|
|
end
|
|
|
|
it "runs before all rubygems are installed" do
|
|
install_gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
gem "rake"
|
|
gem "rack"
|
|
G
|
|
|
|
expect(out).to include "gems to be installed rake, rack"
|
|
end
|
|
end
|
|
|
|
context "before-install hook" do
|
|
before do
|
|
build_repo2 do
|
|
build_plugin "before-install-plugin" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
Bundler::Plugin::API.hook Bundler::Plugin::Events::GEM_BEFORE_INSTALL do |spec_install|
|
|
puts "installing gem \#{spec_install.name}"
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
bundle "plugin install before-install-plugin --source file://#{gem_repo2}"
|
|
end
|
|
|
|
it "runs before each rubygem is installed" do
|
|
install_gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
gem "rake"
|
|
gem "rack"
|
|
G
|
|
|
|
expect(out).to include "installing gem rake"
|
|
expect(out).to include "installing gem rack"
|
|
end
|
|
end
|
|
|
|
context "after-install-all hook" do
|
|
before do
|
|
build_repo2 do
|
|
build_plugin "after-install-all-plugin" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
Bundler::Plugin::API.hook Bundler::Plugin::Events::GEM_AFTER_INSTALL_ALL do |deps|
|
|
puts "installed gems \#{deps.map(&:name).join(", ")}"
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
bundle "plugin install after-install-all-plugin --source file://#{gem_repo2}"
|
|
end
|
|
|
|
it "runs after each rubygem is installed" do
|
|
install_gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
gem "rake"
|
|
gem "rack"
|
|
G
|
|
|
|
expect(out).to include "installed gems rake, rack"
|
|
end
|
|
end
|
|
|
|
context "after-install hook" do
|
|
before do
|
|
build_repo2 do
|
|
build_plugin "after-install-plugin" do |s|
|
|
s.write "plugins.rb", <<-RUBY
|
|
Bundler::Plugin::API.hook Bundler::Plugin::Events::GEM_AFTER_INSTALL do |spec_install|
|
|
puts "installed gem \#{spec_install.name} : \#{spec_install.state}"
|
|
end
|
|
RUBY
|
|
end
|
|
end
|
|
|
|
bundle "plugin install after-install-plugin --source file://#{gem_repo2}"
|
|
end
|
|
|
|
it "runs after each rubygem is installed" do
|
|
install_gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
gem "rake"
|
|
gem "rack"
|
|
G
|
|
|
|
expect(out).to include "installed gem rake : installed"
|
|
expect(out).to include "installed gem rack : installed"
|
|
end
|
|
end
|
|
end
|