2016-02-01 15:43:26 +03:00
|
|
|
# frozen_string_literal: true
|
2023-03-17 12:36:42 +03:00
|
|
|
|
2021-06-02 06:32:47 +03:00
|
|
|
require_relative "helper"
|
2007-11-10 10:48:56 +03:00
|
|
|
require "rubygems/ext"
|
|
|
|
|
2011-01-29 02:46:47 +03:00
|
|
|
class TestGemExtRakeBuilder < Gem::TestCase
|
2007-11-10 10:48:56 +03:00
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@ext = File.join @tempdir, "ext"
|
|
|
|
@dest_path = File.join @tempdir, "prefix"
|
|
|
|
|
|
|
|
FileUtils.mkdir_p @ext
|
|
|
|
FileUtils.mkdir_p @dest_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_build
|
2017-01-24 05:38:57 +03:00
|
|
|
create_temp_mkrf_file("task :default")
|
2007-11-10 10:48:56 +03:00
|
|
|
output = []
|
|
|
|
|
2012-11-29 10:52:18 +04:00
|
|
|
build_rake_in do |rake|
|
2020-12-08 10:33:39 +03:00
|
|
|
Gem::Ext::RakeBuilder.build "mkrf_conf.rb", @dest_path, output, [], nil, @ext
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2012-11-29 10:52:18 +04:00
|
|
|
output = output.join "\n"
|
2008-09-25 14:13:50 +04:00
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
refute_match(/^rake failed:/, output)
|
|
|
|
assert_match(/^#{Regexp.escape Gem.ruby} mkrf_conf\.rb/, output)
|
|
|
|
assert_match(/^#{Regexp.escape rake} RUBYARCHDIR\\=#{Regexp.escape @dest_path} RUBYLIBDIR\\=#{Regexp.escape @dest_path}/, output)
|
2012-11-29 10:52:18 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2017-01-24 05:38:57 +03:00
|
|
|
# https://github.com/rubygems/rubygems/pull/1819
|
|
|
|
#
|
|
|
|
# It should not fail with a non-empty args list either
|
|
|
|
def test_class_build_with_args
|
|
|
|
create_temp_mkrf_file("task :default")
|
|
|
|
output = []
|
|
|
|
|
|
|
|
build_rake_in do |rake|
|
2020-12-08 10:33:39 +03:00
|
|
|
non_empty_args_list = [""]
|
|
|
|
Gem::Ext::RakeBuilder.build "mkrf_conf.rb", @dest_path, output, non_empty_args_list, nil, @ext
|
2017-01-24 05:38:57 +03:00
|
|
|
|
|
|
|
output = output.join "\n"
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
refute_match(/^rake failed:/, output)
|
|
|
|
assert_match(/^#{Regexp.escape Gem.ruby} mkrf_conf\.rb/, output)
|
|
|
|
assert_match(/^#{Regexp.escape rake} RUBYARCHDIR\\=#{Regexp.escape @dest_path} RUBYLIBDIR\\=#{Regexp.escape @dest_path}/, output)
|
2018-10-22 03:27:02 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-12-18 06:13:33 +03:00
|
|
|
def test_class_no_openssl_override
|
2021-05-28 13:47:49 +03:00
|
|
|
pend "openssl is missing" unless Gem::HAVE_OPENSSL
|
|
|
|
|
2020-12-18 06:13:33 +03:00
|
|
|
create_temp_mkrf_file("task :default")
|
|
|
|
|
|
|
|
rake = util_spec "rake" do |s|
|
|
|
|
s.executables = %w[rake]
|
|
|
|
s.files = %w[bin/rake]
|
|
|
|
end
|
|
|
|
|
|
|
|
output = []
|
|
|
|
|
|
|
|
write_file File.join(@tempdir, "bin", "rake") do |fp|
|
|
|
|
fp.puts "#!/usr/bin/ruby"
|
|
|
|
fp.puts "require 'openssl'; puts OpenSSL"
|
|
|
|
end
|
|
|
|
|
|
|
|
install_gem rake
|
|
|
|
|
|
|
|
Gem::Ext::RakeBuilder.build "mkrf_conf.rb", @dest_path, output, [""], nil, @ext
|
|
|
|
|
|
|
|
output = output.join "\n"
|
|
|
|
|
|
|
|
assert_match "OpenSSL", output
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/^#{Regexp.escape Gem.ruby} mkrf_conf\.rb/, output)
|
2020-12-18 06:13:33 +03:00
|
|
|
end
|
|
|
|
|
2018-10-22 03:27:02 +03:00
|
|
|
def test_class_build_no_mkrf_passes_args
|
|
|
|
output = []
|
|
|
|
|
|
|
|
build_rake_in do |rake|
|
2020-12-08 10:33:39 +03:00
|
|
|
Gem::Ext::RakeBuilder.build "ext/Rakefile", @dest_path, output, ["test1", "test2"], nil, @ext
|
2018-10-22 03:27:02 +03:00
|
|
|
|
|
|
|
output = output.join "\n"
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
refute_match(/^rake failed:/, output)
|
|
|
|
assert_match(/^#{Regexp.escape rake} RUBYARCHDIR\\=#{Regexp.escape @dest_path} RUBYLIBDIR\\=#{Regexp.escape @dest_path} test1 test2/, output)
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2017-03-17 04:29:24 +03:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2017-01-24 05:38:57 +03:00
|
|
|
def test_class_build_fail
|
|
|
|
create_temp_mkrf_file("task :default do abort 'fail' end")
|
2007-11-10 10:48:56 +03:00
|
|
|
output = []
|
|
|
|
|
2023-03-16 04:46:45 +03:00
|
|
|
build_rake_in(false) do |_rake|
|
2021-05-11 06:25:46 +03:00
|
|
|
error = assert_raise Gem::InstallError do
|
2020-12-08 10:33:39 +03:00
|
|
|
Gem::Ext::RakeBuilder.build "mkrf_conf.rb", @dest_path, output, [], nil, @ext
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2023-04-05 11:06:01 +03:00
|
|
|
assert_match(/^rake failed/, error.message)
|
2012-11-29 10:52:18 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2017-03-17 04:29:24 +03:00
|
|
|
|
2017-01-24 05:38:57 +03:00
|
|
|
def create_temp_mkrf_file(rakefile_content)
|
|
|
|
File.open File.join(@ext, "mkrf_conf.rb"), "w" do |mkrf_conf|
|
|
|
|
mkrf_conf.puts <<-EO_MKRF
|
|
|
|
File.open("Rakefile","w") do |f|
|
|
|
|
f.puts "#{rakefile_content}"
|
|
|
|
end
|
|
|
|
EO_MKRF
|
|
|
|
end
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|