2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/ext'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemExtRakeBuilder < Gem::TestCase
|
2007-11-10 02:48:56 -05: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-23 21:38:57 -05:00
|
|
|
create_temp_mkrf_file('task :default')
|
2007-11-10 02:48:56 -05:00
|
|
|
output = []
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
build_rake_in do |rake|
|
2008-07-01 08:33:11 -04:00
|
|
|
Dir.chdir @ext do
|
2018-05-30 09:01:35 -04:00
|
|
|
Gem::Ext::RakeBuilder.build 'mkrf_conf.rb', @dest_path, output
|
2008-07-01 08:33:11 -04:00
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
output = output.join "\n"
|
2008-09-25 06:13:50 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
refute_match %r%^rake failed:%, output
|
2018-11-21 05:20:47 -05:00
|
|
|
assert_match %r%^#{Regexp.escape @@ruby} mkrf_conf\.rb%, output
|
|
|
|
assert_match %r%^#{Regexp.escape rake} RUBYARCHDIR\\=#{Regexp.escape @dest_path} RUBYLIBDIR\\=#{Regexp.escape @dest_path}%, output
|
2012-11-29 01:52:18 -05:00
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2017-01-23 21:38:57 -05: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|
|
|
|
|
Dir.chdir @ext do
|
|
|
|
non_empty_args_list = ['']
|
2018-05-30 09:01:35 -04:00
|
|
|
Gem::Ext::RakeBuilder.build 'mkrf_conf.rb', @dest_path, output, non_empty_args_list
|
2017-01-23 21:38:57 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
output = output.join "\n"
|
|
|
|
|
|
|
|
refute_match %r%^rake failed:%, output
|
2018-11-21 05:20:47 -05:00
|
|
|
assert_match %r%^#{Regexp.escape @@ruby} mkrf_conf\.rb%, output
|
|
|
|
assert_match %r%^#{Regexp.escape rake} RUBYARCHDIR\\=#{Regexp.escape @dest_path} RUBYLIBDIR\\=#{Regexp.escape @dest_path}%, output
|
2018-10-21 20:27:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_build_no_mkrf_passes_args
|
|
|
|
output = []
|
|
|
|
|
|
|
|
build_rake_in do |rake|
|
|
|
|
Dir.chdir @ext do
|
|
|
|
Gem::Ext::RakeBuilder.build "ext/Rakefile", @dest_path, output, ["test1", "test2"]
|
|
|
|
end
|
|
|
|
|
|
|
|
output = output.join "\n"
|
|
|
|
|
|
|
|
refute_match %r%^rake failed:%, output
|
2018-11-21 05:20:47 -05:00
|
|
|
assert_match %r%^#{Regexp.escape rake} RUBYARCHDIR\\=#{Regexp.escape @dest_path} RUBYLIBDIR\\=#{Regexp.escape @dest_path} test1 test2%, output
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
2017-03-16 21:29:24 -04:00
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2017-01-23 21:38:57 -05:00
|
|
|
def test_class_build_fail
|
|
|
|
create_temp_mkrf_file("task :default do abort 'fail' end")
|
2007-11-10 02:48:56 -05:00
|
|
|
output = []
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
build_rake_in(false) do |rake|
|
|
|
|
error = assert_raises Gem::InstallError do
|
2008-07-01 08:33:11 -04:00
|
|
|
Dir.chdir @ext do
|
2018-05-30 09:01:35 -04:00
|
|
|
Gem::Ext::RakeBuilder.build "mkrf_conf.rb", @dest_path, output
|
2008-07-01 08:33:11 -04:00
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2013-10-15 20:14:16 -04:00
|
|
|
assert_match %r%^rake failed%, error.message
|
2012-11-29 01:52:18 -05:00
|
|
|
end
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
2017-03-16 21:29:24 -04:00
|
|
|
|
2017-01-23 21:38:57 -05: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 02:48:56 -05:00
|
|
|
end
|