2018-11-02 19:07:56 -04:00
# frozen_string_literal: true
RSpec . describe " bundle platform " do
context " without flags " do
let ( :bundle_platform_platforms_string ) do
2019-07-23 07:01:33 -04:00
local_platforms . reverse . map { | pl | " * #{ pl } " } . join ( " \n " )
2018-11-02 19:07:56 -04:00
end
it " returns all the output " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
#{ruby_version_correct}
gem " foo "
G
bundle " platform "
expect ( out ) . to eq ( <<-G.chomp)
Your platform is : #{RUBY_PLATFORM}
Your app has gems that work on these platforms :
#{bundle_platform_platforms_string}
Your Gemfile specifies a Ruby version requirement :
* ruby #{RUBY_VERSION}
Your current platform satisfies the Ruby version requirement .
G
end
it " returns all the output including the patchlevel " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
#{ruby_version_correct_patchlevel}
gem " foo "
G
bundle " platform "
expect ( out ) . to eq ( <<-G.chomp)
Your platform is : #{RUBY_PLATFORM}
Your app has gems that work on these platforms :
#{bundle_platform_platforms_string}
Your Gemfile specifies a Ruby version requirement :
* ruby #{RUBY_VERSION}p#{RUBY_PATCHLEVEL}
Your current platform satisfies the Ruby version requirement .
G
end
it " doesn't print ruby version requirement if it isn't specified " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " foo "
G
bundle " platform "
expect ( out ) . to eq ( <<-G.chomp)
Your platform is : #{RUBY_PLATFORM}
Your app has gems that work on these platforms :
#{bundle_platform_platforms_string}
Your Gemfile does not specify a Ruby version requirement .
G
end
it " doesn't match the ruby version requirement " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
#{ruby_version_incorrect}
gem " foo "
G
bundle " platform "
expect ( out ) . to eq ( <<-G.chomp)
Your platform is : #{RUBY_PLATFORM}
Your app has gems that work on these platforms :
#{bundle_platform_platforms_string}
Your Gemfile specifies a Ruby version requirement :
* ruby #{not_local_ruby_version}
Your Ruby version is #{RUBY_VERSION}, but your Gemfile specified #{not_local_ruby_version}
G
end
end
context " --ruby " do
it " returns ruby version when explicit " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.9.3 " , :engine = > 'ruby' , :engine_version = > '1.9.3'
gem " foo "
G
bundle " platform --ruby "
expect ( out ) . to eq ( " ruby 1.9.3 " )
end
it " defaults to MRI " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.9.3 "
gem " foo "
G
bundle " platform --ruby "
expect ( out ) . to eq ( " ruby 1.9.3 " )
end
it " handles jruby " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.8.7 " , :engine = > 'jruby' , :engine_version = > '1.6.5'
gem " foo "
G
bundle " platform --ruby "
expect ( out ) . to eq ( " ruby 1.8.7 (jruby 1.6.5) " )
end
it " handles rbx " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.8.7 " , :engine = > 'rbx' , :engine_version = > '1.2.4'
gem " foo "
G
bundle " platform --ruby "
expect ( out ) . to eq ( " ruby 1.8.7 (rbx 1.2.4) " )
end
2019-04-14 02:01:35 -04:00
it " handles truffleruby " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 2.5.1 " , :engine = > 'truffleruby' , :engine_version = > '1.0.0-rc6'
gem " foo "
G
bundle " platform --ruby "
expect ( out ) . to eq ( " ruby 2.5.1 (truffleruby 1.0.0-rc6) " )
end
it " raises an error if engine is used but engine version is not " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.8.7 " , :engine = > 'rbx'
gem " foo "
G
2020-06-03 12:43:17 -04:00
bundle " platform " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . not_to eq ( 0 )
2018-11-02 19:07:56 -04:00
end
it " raises an error if engine_version is used but engine is not " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.8.7 " , :engine_version = > '1.2.4'
gem " foo "
G
2020-06-03 12:43:17 -04:00
bundle " platform " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . not_to eq ( 0 )
2018-11-02 19:07:56 -04:00
end
it " raises an error if engine version doesn't match ruby version for MRI " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " 1.8.7 " , :engine = > 'ruby' , :engine_version = > '1.2.4'
gem " foo "
G
2020-06-03 12:43:17 -04:00
bundle " platform " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . not_to eq ( 0 )
2018-11-02 19:07:56 -04:00
end
it " should print if no ruby version is specified " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " foo "
G
bundle " platform --ruby "
expect ( out ) . to eq ( " No ruby version specified " )
end
it " handles when there is a locked requirement " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " < 1.8.7 "
G
lockfile <<-L
GEM
2021-07-24 11:27:02 -04:00
remote : #{file_uri_for(gem_repo1)}/
2018-11-02 19:07:56 -04:00
specs :
PLATFORMS
ruby
DEPENDENCIES
RUBY VERSION
ruby 1 . 0 . 0 p127
BUNDLED WITH
#{Bundler::VERSION}
L
2020-06-03 14:45:36 -04:00
bundle " platform --ruby "
2018-11-02 19:07:56 -04:00
expect ( out ) . to eq ( " ruby 1.0.0p127 " )
end
it " handles when there is a requirement in the gemfile " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " >= 1.8.7 "
G
2020-06-03 14:45:36 -04:00
bundle " platform --ruby "
2018-11-02 19:07:56 -04:00
expect ( out ) . to eq ( " ruby 1.8.7 " )
end
it " handles when there are multiple requirements in the gemfile " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
ruby " >= 1.8.7 " , " < 2.0.0 "
G
2020-06-03 14:45:36 -04:00
bundle " platform --ruby "
2018-11-02 19:07:56 -04:00
expect ( out ) . to eq ( " ruby 1.8.7 " )
end
end
let ( :ruby_version_correct ) { " ruby \" #{ RUBY_VERSION } \" , :engine => \" #{ local_ruby_engine } \" , :engine_version => \" #{ local_engine_version } \" " }
let ( :ruby_version_correct_engineless ) { " ruby \" #{ RUBY_VERSION } \" " }
let ( :ruby_version_correct_patchlevel ) { " #{ ruby_version_correct } , :patchlevel => ' #{ RUBY_PATCHLEVEL } ' " }
let ( :ruby_version_incorrect ) { " ruby \" #{ not_local_ruby_version } \" , :engine => \" #{ local_ruby_engine } \" , :engine_version => \" #{ not_local_ruby_version } \" " }
let ( :engine_incorrect ) { " ruby \" #{ RUBY_VERSION } \" , :engine => \" #{ not_local_tag } \" , :engine_version => \" #{ RUBY_VERSION } \" " }
let ( :engine_version_incorrect ) { " ruby \" #{ RUBY_VERSION } \" , :engine => \" #{ local_ruby_engine } \" , :engine_version => \" #{ not_local_engine_version } \" " }
let ( :patchlevel_incorrect ) { " #{ ruby_version_correct } , :patchlevel => ' #{ not_local_patchlevel } ' " }
let ( :patchlevel_fixnum ) { " #{ ruby_version_correct } , :patchlevel => #{ RUBY_PATCHLEVEL } 1 " }
def should_be_ruby_version_incorrect
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . to eq ( 18 )
2019-04-14 02:01:35 -04:00
expect ( err ) . to be_include ( " Your Ruby version is #{ RUBY_VERSION } , but your Gemfile specified #{ not_local_ruby_version } " )
2018-11-02 19:07:56 -04:00
end
def should_be_engine_incorrect
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . to eq ( 18 )
2019-04-14 02:01:35 -04:00
expect ( err ) . to be_include ( " Your Ruby engine is #{ local_ruby_engine } , but your Gemfile specified #{ not_local_tag } " )
2018-11-02 19:07:56 -04:00
end
def should_be_engine_version_incorrect
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . to eq ( 18 )
2019-04-14 02:01:35 -04:00
expect ( err ) . to be_include ( " Your #{ local_ruby_engine } version is #{ local_engine_version } , but your Gemfile specified #{ local_ruby_engine } #{ not_local_engine_version } " )
2018-11-02 19:07:56 -04:00
end
def should_be_patchlevel_incorrect
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . to eq ( 18 )
2019-04-14 02:01:35 -04:00
expect ( err ) . to be_include ( " Your Ruby patchlevel is #{ RUBY_PATCHLEVEL } , but your Gemfile specified #{ not_local_patchlevel } " )
2018-11-02 19:07:56 -04:00
end
def should_be_patchlevel_fixnum
2020-06-24 13:53:16 -04:00
expect ( exitstatus ) . to eq ( 18 )
2019-04-14 02:01:35 -04:00
expect ( err ) . to be_include ( " The Ruby patchlevel in your Gemfile must be a string " )
2018-11-02 19:07:56 -04:00
end
context " bundle install " do
it " installs fine when the ruby version matches " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{ruby_version_correct}
G
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . to exist
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " installs fine with any engine " , :jruby do
install_gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . to exist
2018-11-02 19:07:56 -04:00
end
it " installs fine when the patchlevel matches " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{ruby_version_correct_patchlevel}
G
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . to exist
2018-11-02 19:07:56 -04:00
end
it " doesn't install when the ruby version doesn't match " do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{ruby_version_incorrect}
G
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " doesn't install when engine doesn't match " do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{engine_incorrect}
G
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " doesn't install when engine version doesn't match " , :jruby do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2020-05-08 01:19:04 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " doesn't install when patchlevel doesn't match " do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " bundle check " do
it " checks fine when the ruby version matches " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
G
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{ruby_version_correct}
G
bundle :check
2020-05-08 01:19:04 -04:00
expect ( out ) . to match ( / \ AResolving dependencies \ . \ . \ . \ .* \ nThe Gemfile's dependencies are satisfied \ z / )
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " checks fine with any engine " , :jruby do
install_gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
bundle :check
expect ( out ) . to match ( / \ AResolving dependencies \ . \ . \ . \ .* \ nThe Gemfile's dependencies are satisfied \ z / )
2018-11-02 19:07:56 -04:00
end
it " fails when ruby version doesn't match " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
G
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :check , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " fails when engine doesn't match " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
G
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :check , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails when engine version doesn't match " , :jruby do
install_gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle :check , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " fails when patchlevel doesn't match " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
G
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :check , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " bundle update " do
before do
build_repo2
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport "
gem " rack-obama "
G
end
it " updates successfully when the ruby version matches " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport "
gem " rack-obama "
#{ruby_version_correct}
G
update_repo2 do
2020-12-08 02:36:29 -05:00
build_gem " rack " , " 1.2 " do | s |
s . executables = " rackup "
end
2018-11-02 19:07:56 -04:00
build_gem " activesupport " , " 3.0 "
end
2019-04-14 02:01:35 -04:00
bundle " update " , :all = > true
2018-11-02 19:07:56 -04:00
expect ( the_bundle ) . to include_gems " rack 1.2 " , " rack-obama 1.0 " , " activesupport 3.0 "
end
2020-05-08 01:19:04 -04:00
it " updates fine with any engine " , :jruby do
gemfile <<-G
source " #{ file_uri_for ( gem_repo2 ) } "
gem " activesupport "
gem " rack-obama "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
update_repo2 do
2020-12-08 02:36:29 -05:00
build_gem " rack " , " 1.2 " do | s |
s . executables = " rackup "
end
2020-05-08 01:19:04 -04:00
build_gem " activesupport " , " 3.0 "
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
bundle " update " , :all = > true
expect ( the_bundle ) . to include_gems " rack 1.2 " , " rack-obama 1.0 " , " activesupport 3.0 "
2018-11-02 19:07:56 -04:00
end
it " fails when ruby version doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport "
gem " rack-obama "
#{ruby_version_incorrect}
G
update_repo2 do
build_gem " activesupport " , " 3.0 "
end
2020-06-03 12:43:17 -04:00
bundle :update , :all = > true , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails when ruby engine doesn't match " , :jruby do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport "
gem " rack-obama "
#{engine_incorrect}
G
update_repo2 do
build_gem " activesupport " , " 3.0 "
end
2020-06-03 12:43:17 -04:00
bundle :update , :all = > true , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails when ruby engine version doesn't match " , :jruby do
gemfile <<-G
source " #{ file_uri_for ( gem_repo2 ) } "
gem " activesupport "
gem " rack-obama "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
update_repo2 do
build_gem " activesupport " , " 3.0 "
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
2020-06-03 12:43:17 -04:00
bundle :update , :all = > true , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " fails when patchlevel doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
update_repo2 do
build_gem " activesupport " , " 3.0 "
end
2020-06-03 12:43:17 -04:00
bundle :update , :all = > true , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " bundle info " do
before do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rails "
G
end
it " prints path if ruby version is correct " do
2020-06-03 14:46:03 -04:00
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rails "
#{ruby_version_correct}
G
bundle " info rails --path "
expect ( out ) . to eq ( default_bundle_path ( " gems " , " rails-2.3.2 " ) . to_s )
end
2020-05-08 01:19:04 -04:00
it " prints path if ruby version is correct for any engine " , :jruby do
2020-06-03 14:46:03 -04:00
install_gemfile <<-G
2020-05-08 01:19:04 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rails "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
bundle " info rails --path "
expect ( out ) . to eq ( default_bundle_path ( " gems " , " rails-2.3.2 " ) . to_s )
2018-11-02 19:07:56 -04:00
end
2019-01-04 08:10:58 -05:00
it " fails if ruby version doesn't match " , :bundler = > " < 3 " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rails "
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " show rails " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
2019-01-04 08:10:58 -05:00
it " fails if engine doesn't match " , :bundler = > " < 3 " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rails "
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " show rails " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails if engine version doesn't match " , :bundler = > " < 3 " , :jruby = > true do
gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rails "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle " show rails " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
2019-01-04 08:10:58 -05:00
it " fails when patchlevel doesn't match " , :bundler = > " < 3 " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
update_repo2 do
build_gem " activesupport " , " 3.0 "
end
2020-06-03 12:43:17 -04:00
bundle " show rails " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " bundle cache " do
before do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
G
end
it " copies the .gem file to vendor/cache when ruby version matches " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
#{ruby_version_correct}
G
bundle :cache
expect ( bundled_app ( " vendor/cache/rack-1.0.0.gem " ) ) . to exist
end
2020-05-08 01:19:04 -04:00
it " copies the .gem file to vendor/cache when ruby version matches for any engine " , :jruby do
2020-06-03 14:46:03 -04:00
install_gemfile <<-G
2020-05-08 01:19:04 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
gem 'rack'
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-06-03 14:45:36 -04:00
bundle :cache
2020-05-08 01:19:04 -04:00
expect ( bundled_app ( " vendor/cache/rack-1.0.0.gem " ) ) . to exist
2018-11-02 19:07:56 -04:00
end
it " fails if the ruby version doesn't match " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " fails if the engine doesn't match " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails if the engine version doesn't match " , :jruby do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2020-05-08 01:19:04 -04:00
gem 'rack'
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " fails when patchlevel doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " bundle pack " do
before do
2020-06-03 14:46:03 -04:00
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
G
end
it " copies the .gem file to vendor/cache when ruby version matches " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
#{ruby_version_correct}
G
2019-11-11 03:57:45 -05:00
bundle :cache
2018-11-02 19:07:56 -04:00
expect ( bundled_app ( " vendor/cache/rack-1.0.0.gem " ) ) . to exist
end
2020-05-08 01:19:04 -04:00
it " copies the .gem file to vendor/cache when ruby version matches any engine " , :jruby do
2020-06-03 14:46:03 -04:00
install_gemfile <<-G
2020-05-08 01:19:04 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
gem 'rack'
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
bundle :cache
expect ( bundled_app ( " vendor/cache/rack-1.0.0.gem " ) ) . to exist
2018-11-02 19:07:56 -04:00
end
it " fails if the ruby version doesn't match " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " fails if the engine doesn't match " do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem 'rack'
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails if the engine version doesn't match " , :jruby do
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2020-05-08 01:19:04 -04:00
gem 'rack'
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " fails when patchlevel doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle :cache , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
2020-05-15 08:31:12 -04:00
context " bundle exec " do
2018-11-02 19:07:56 -04:00
before do
ENV [ " BUNDLER_FORCE_TTY " ] = " true "
2020-05-08 01:19:04 -04:00
system_gems " rack-1.0.0 " , " rack-0.9.1 " , :path = > default_bundle_path
2018-11-02 19:07:56 -04:00
end
2020-06-11 15:05:17 -04:00
it " activates the correct gem when ruby version matches " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack " , " 0.9.1 "
#{ruby_version_correct}
G
bundle " exec rackup "
2019-04-14 02:01:35 -04:00
expect ( out ) . to include ( " 0.9.1 " )
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " activates the correct gem when ruby version matches any engine " , :jruby do
system_gems " rack-1.0.0 " , " rack-0.9.1 " , :path = > default_bundle_path
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2020-05-08 01:19:04 -04:00
gem " rack " , " 0.9.1 "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
bundle " exec rackup "
expect ( out ) . to include ( " 0.9.1 " )
2018-11-02 19:07:56 -04:00
end
2020-06-11 15:05:17 -04:00
it " fails when the ruby version doesn't match " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack " , " 0.9.1 "
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " exec rackup " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
2020-06-11 15:05:17 -04:00
it " fails when the engine doesn't match " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2021-07-24 11:27:02 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack " , " 0.9.1 "
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " exec rackup " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
# it "fails when the engine version doesn't match", :jruby do
# gemfile <<-G
# gem "rack", "0.9.1"
2018-11-02 19:07:56 -04:00
#
2020-05-08 01:19:04 -04:00
# #{engine_version_incorrect}
# G
2018-11-02 19:07:56 -04:00
#
2020-05-08 01:19:04 -04:00
# bundle "exec rackup"
# should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
# end
2020-06-11 15:05:17 -04:00
it " fails when patchlevel doesn't match " do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
#{patchlevel_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " exec rackup " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
2019-01-04 08:10:58 -05:00
context " bundle console " , :bundler = > " < 3 " do
2018-11-02 19:07:56 -04:00
before do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
G
end
2020-05-08 01:19:04 -04:00
it " starts IRB with the default group loaded when ruby version matches " , :readline do
2018-11-02 19:07:56 -04:00
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
#{ruby_version_correct}
G
bundle " console " do | input , _ , _ |
input . puts ( " puts RACK " )
input . puts ( " exit " )
end
expect ( out ) . to include ( " 0.9.1 " )
end
2020-05-08 01:19:04 -04:00
it " starts IRB with the default group loaded when ruby version matches " , :readline , :jruby do
gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
bundle " console " do | input , _ , _ |
input . puts ( " puts RACK " )
input . puts ( " exit " )
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
expect ( out ) . to include ( " 0.9.1 " )
2018-11-02 19:07:56 -04:00
end
it " fails when ruby version doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " console " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " fails when engine doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " console " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails when engine version doesn't match " , :jruby do
gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle " console " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " fails when patchlevel doesn't match " do
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " rack "
gem " activesupport " , :group = > :test
gem " rack_middleware " , :group = > :development
#{patchlevel_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " console " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " Bundler.setup " do
before do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " yard "
gem " rack " , :group = > :test
G
ENV [ " BUNDLER_FORCE_TTY " ] = " true "
end
it " makes a Gemfile.lock if setup succeeds " do
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " yard "
gem " rack "
#{ruby_version_correct}
G
2020-05-08 01:19:04 -04:00
FileUtils . rm ( bundled_app_lock )
2018-11-02 19:07:56 -04:00
run " 1 "
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . to exist
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " makes a Gemfile.lock if setup succeeds for any engine " , :jruby do
install_gemfile <<-G
source " #{ file_uri_for ( gem_repo1 ) } "
gem " yard "
gem " rack "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
FileUtils . rm ( bundled_app_lock )
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
run " 1 "
expect ( bundled_app_lock ) . to exist
2018-11-02 19:07:56 -04:00
end
it " fails when ruby version doesn't match " do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " yard "
gem " rack "
#{ruby_version_incorrect}
G
2020-05-08 01:19:04 -04:00
FileUtils . rm ( bundled_app_lock )
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
ruby " require 'bundler/setup' " , :env = > { " BUNDLER_VERSION " = > Bundler :: VERSION } , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " fails when engine doesn't match " do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " yard "
gem " rack "
#{engine_incorrect}
G
2020-05-08 01:19:04 -04:00
FileUtils . rm ( bundled_app_lock )
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
ruby " require 'bundler/setup' " , :env = > { " BUNDLER_VERSION " = > Bundler :: VERSION } , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails when engine version doesn't match " , :jruby do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2020-05-08 01:19:04 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
gem " yard "
gem " rack "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
FileUtils . rm ( bundled_app_lock )
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
ruby " require 'bundler/setup' " , :env = > { " BUNDLER_VERSION " = > Bundler :: VERSION } , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
it " fails when patchlevel doesn't match " do
2020-06-03 12:43:17 -04:00
install_gemfile <<-G, :raise_on_error => false
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo1 ) } "
2018-11-02 19:07:56 -04:00
gem " yard "
gem " rack "
#{patchlevel_incorrect}
G
2020-05-08 01:19:04 -04:00
FileUtils . rm ( bundled_app_lock )
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
ruby " require 'bundler/setup' " , :env = > { " BUNDLER_VERSION " = > Bundler :: VERSION } , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
expect ( bundled_app_lock ) . not_to exist
2018-11-02 19:07:56 -04:00
should_be_patchlevel_incorrect
end
end
context " bundle outdated " do
before do
build_repo2 do
build_git " foo " , :path = > lib_path ( " foo " )
end
install_gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
G
end
it " returns list of outdated gems when the ruby version matches " do
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
#{ruby_version_correct}
G
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
expected_output = << ~ TABLE . gsub ( " x " , " \\ \ h " ) . tr ( " . " , " \ . " ) . strip
Gem Current Latest Requested Groups
activesupport 2 . 3 . 5 3 . 0 = 2 . 3 . 5 default
foo 1 . 0 xxxxxxx 1 . 0 xxxxxxx > = 0 default
TABLE
expect ( out ) . to match ( Regexp . new ( expected_output ) )
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " returns list of outdated gems when the ruby version matches for any engine " , :jruby do
2020-06-03 14:45:36 -04:00
bundle :install
2020-05-08 01:19:04 -04:00
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
gemfile <<-G
source " #{ file_uri_for ( gem_repo2 ) } "
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{ruby_version_correct_engineless}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
expected_output = << ~ TABLE . gsub ( " x " , " \\ \ h " ) . tr ( " . " , " \ . " ) . strip
Gem Current Latest Requested Groups
activesupport 2 . 3 . 5 3 . 0 = 2 . 3 . 5 default
foo 1 . 0 xxxxxxx 1 . 0 xxxxxxx > = 0 default
TABLE
expect ( out ) . to match ( Regexp . new ( expected_output ) )
2018-11-02 19:07:56 -04:00
end
it " fails when the ruby version doesn't match " do
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
#{ruby_version_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_ruby_version_incorrect
end
it " fails when the engine doesn't match " do
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
gemfile <<-G
2019-05-06 12:06:21 -04:00
source " #{ file_uri_for ( gem_repo2 ) } "
2018-11-02 19:07:56 -04:00
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
#{engine_incorrect}
G
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2018-11-02 19:07:56 -04:00
should_be_engine_incorrect
end
2020-05-08 01:19:04 -04:00
it " fails when the engine version doesn't match " , :jruby do
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
gemfile <<-G
source " #{ file_uri_for ( gem_repo2 ) } "
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{engine_version_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_engine_version_incorrect
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " fails when the patchlevel doesn't match " , :jruby do
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
gemfile <<-G
source " #{ file_uri_for ( gem_repo2 ) } "
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{patchlevel_incorrect}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_patchlevel_incorrect
2018-11-02 19:07:56 -04:00
end
2020-05-08 01:19:04 -04:00
it " fails when the patchlevel is a fixnum " , :jruby do
update_repo2 do
build_gem " activesupport " , " 3.0 "
update_git " foo " , :path = > lib_path ( " foo " )
end
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
gemfile <<-G
source " #{ file_uri_for ( gem_repo2 ) } "
gem " activesupport " , " 2.3.5 "
gem " foo " , :git = > " #{ lib_path ( " foo " ) } "
2018-11-02 19:07:56 -04:00
2020-05-08 01:19:04 -04:00
#{patchlevel_fixnum}
G
2018-11-02 19:07:56 -04:00
2020-06-03 12:43:17 -04:00
bundle " outdated " , :raise_on_error = > false
2020-05-08 01:19:04 -04:00
should_be_patchlevel_fixnum
2018-11-02 19:07:56 -04:00
end
end
end