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