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 TestGemExtConfigureBuilder < Gem::TestCase
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
2013-10-15 20:14:16 -04:00
|
|
|
@makefile_body =
|
|
|
|
"clean:\n\t@echo ok\nall:\n\t@echo ok\ninstall:\n\t@echo ok"
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
@ext = File.join @tempdir, 'ext'
|
|
|
|
@dest_path = File.join @tempdir, 'prefix'
|
|
|
|
|
|
|
|
FileUtils.mkdir_p @ext
|
|
|
|
FileUtils.mkdir_p @dest_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_self_build
|
2009-06-09 17:38:59 -04:00
|
|
|
skip("test_self_build skipped on MS Windows (VC++)") if vc_windows?
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
File.open File.join(@ext, './configure'), 'w' do |configure|
|
|
|
|
configure.puts "#!/bin/sh\necho \"#{@makefile_body}\" > Makefile"
|
|
|
|
end
|
|
|
|
|
|
|
|
output = []
|
|
|
|
|
|
|
|
Dir.chdir @ext do
|
|
|
|
Gem::Ext::ConfigureBuilder.build nil, nil, @dest_path, output
|
|
|
|
end
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_match(/^current directory:/, output.shift)
|
2008-06-25 22:06:00 -04:00
|
|
|
assert_equal "sh ./configure --prefix=#{@dest_path}", output.shift
|
|
|
|
assert_equal "", output.shift
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_match(/^current directory:/, output.shift)
|
2013-10-15 20:14:16 -04:00
|
|
|
assert_contains_make_command 'clean', output.shift
|
|
|
|
assert_match(/^ok$/m, output.shift)
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_match(/^current directory:/, output.shift)
|
2013-06-25 09:28:57 -04:00
|
|
|
assert_contains_make_command '', output.shift
|
2008-06-25 22:06:00 -04:00
|
|
|
assert_match(/^ok$/m, output.shift)
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_match(/^current directory:/, output.shift)
|
2013-06-25 09:28:57 -04:00
|
|
|
assert_contains_make_command 'install', output.shift
|
2008-06-25 22:06:00 -04:00
|
|
|
assert_match(/^ok$/m, output.shift)
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_self_build_fail
|
2009-06-09 17:38:59 -04:00
|
|
|
skip("test_self_build_fail skipped on MS Windows (VC++)") if vc_windows?
|
2007-11-10 02:48:56 -05:00
|
|
|
output = []
|
|
|
|
|
2008-10-25 18:58:43 -04:00
|
|
|
error = assert_raises Gem::InstallError do
|
2007-11-10 02:48:56 -05:00
|
|
|
Dir.chdir @ext do
|
|
|
|
Gem::Ext::ConfigureBuilder.build nil, nil, @dest_path, output
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-24 02:41:57 -04:00
|
|
|
shell_error_msg = %r{(\./configure: .*)|((?:Can't|cannot) open \./configure(?:: No such file or directory)?)}
|
2008-03-31 18:40:06 -04:00
|
|
|
sh_prefix_configure = "sh ./configure --prefix="
|
2008-06-30 14:46:21 -04:00
|
|
|
|
2013-10-15 20:14:16 -04:00
|
|
|
assert_match 'configure failed', error.message
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_match(/^current directory:/, output.shift)
|
2008-03-31 18:40:06 -04:00
|
|
|
assert_equal "#{sh_prefix_configure}#{@dest_path}", output.shift
|
2008-09-25 06:13:50 -04:00
|
|
|
assert_match %r(#{shell_error_msg}), output.shift
|
2007-11-10 02:48:56 -05:00
|
|
|
assert_equal true, output.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_self_build_has_makefile
|
2009-06-09 17:38:59 -04:00
|
|
|
if vc_windows? && !nmake_found?
|
|
|
|
skip("test_self_build_has_makefile skipped - nmake not found")
|
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
File.open File.join(@ext, 'Makefile'), 'w' do |makefile|
|
|
|
|
makefile.puts @makefile_body
|
|
|
|
end
|
|
|
|
|
|
|
|
output = []
|
|
|
|
Dir.chdir @ext do
|
|
|
|
Gem::Ext::ConfigureBuilder.build nil, nil, @dest_path, output
|
|
|
|
end
|
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_contains_make_command 'clean', output[1]
|
|
|
|
assert_contains_make_command '', output[4]
|
|
|
|
assert_contains_make_command 'install', output[7]
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|