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
|
# 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 https://gem.repo2"
end
it "runs before all rubygems are installed" do
install_gemfile <<-G
source "https://gem.repo1"
gem "rake"
gem "myrack"
G
expect(out).to include "gems to be installed rake, myrack"
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 https://gem.repo2"
end
it "runs before each rubygem is installed" do
install_gemfile <<-G
source "https://gem.repo1"
gem "rake"
gem "myrack"
G
expect(out).to include "installing gem rake"
expect(out).to include "installing gem myrack"
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 https://gem.repo2"
end
it "runs after each all rubygems are installed" do
install_gemfile <<-G
source "https://gem.repo1"
gem "rake"
gem "myrack"
G
expect(out).to include "installed gems rake, myrack"
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 https://gem.repo2"
end
it "runs after each rubygem is installed" do
install_gemfile <<-G
source "https://gem.repo1"
gem "rake"
gem "myrack"
G
expect(out).to include "installed gem rake : installed"
expect(out).to include "installed gem myrack : installed"
end
end
end
|