mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2fbbbba5bd
* It update bundler 2 mode to bundler 3. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
155 lines
3.3 KiB
Ruby
155 lines
3.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "bundle_ruby", :ruby_repo, :bundler => "< 3" do
|
|
context "without patchlevel" do
|
|
it "returns the ruby version" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.9.3", :engine => 'ruby', :engine_version => '1.9.3'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("ruby 1.9.3")
|
|
end
|
|
|
|
it "engine defaults to MRI" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.9.3"
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("ruby 1.9.3")
|
|
end
|
|
|
|
it "handles jruby" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.8.7", :engine => 'jruby', :engine_version => '1.6.5'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("ruby 1.8.7 (jruby 1.6.5)")
|
|
end
|
|
|
|
it "handles rbx" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.8.7", :engine => 'rbx', :engine_version => '1.2.4'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("ruby 1.8.7 (rbx 1.2.4)")
|
|
end
|
|
|
|
it "handles truffleruby", :rubygems => ">= 2.1.0" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "2.5.1", :engine => 'truffleruby', :engine_version => '1.0.0-rc6'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("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
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.8.7", :engine => 'rbx'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
expect(exitstatus).not_to eq(0) if exitstatus
|
|
|
|
bundle_ruby
|
|
expect(out).to include("Please define :engine_version")
|
|
end
|
|
|
|
it "raises an error if engine_version is used but engine is not" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.8.7", :engine_version => '1.2.4'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
expect(exitstatus).not_to eq(0) if exitstatus
|
|
|
|
bundle_ruby
|
|
expect(out).to include("Please define :engine")
|
|
end
|
|
|
|
it "raises an error if engine version doesn't match ruby version for MRI" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.8.7", :engine => 'ruby', :engine_version => '1.2.4'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
expect(exitstatus).not_to eq(0) if exitstatus
|
|
|
|
bundle_ruby
|
|
expect(out).to include("ruby_version must match the :engine_version for MRI")
|
|
end
|
|
|
|
it "should print if no ruby version is specified" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("No ruby version specified")
|
|
end
|
|
end
|
|
|
|
context "when using patchlevel" do
|
|
it "returns the ruby version" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.9.3", :patchlevel => '429', :engine => 'ruby', :engine_version => '1.9.3'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("ruby 1.9.3p429")
|
|
end
|
|
|
|
it "handles an engine" do
|
|
gemfile <<-G
|
|
source "file://#{gem_repo1}"
|
|
ruby "1.9.3", :patchlevel => '392', :engine => 'jruby', :engine_version => '1.7.4'
|
|
|
|
gem "foo"
|
|
G
|
|
|
|
bundle_ruby
|
|
|
|
expect(out).to include("ruby 1.9.3p392 (jruby 1.7.4)")
|
|
end
|
|
end
|
|
end
|