2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2021-06-01 23:32:47 -04:00
|
|
|
require_relative "helper"
|
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
|
2021-05-11 05:21:00 -04:00
|
|
|
pend("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 = []
|
|
|
|
|
2020-12-08 02:33:39 -05:00
|
|
|
Gem::Ext::ConfigureBuilder.build nil, @dest_path, output, [], nil, @ext
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2015-07-01 17:50:14 -04:00
|
|
|
assert_match(/^current directory:/, output.shift)
|
2021-01-03 20:09:05 -05:00
|
|
|
assert_equal "sh ./configure --prefix\\=#{@dest_path}", output.shift
|
2008-06-25 22:06:00 -04:00
|
|
|
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
|
2021-05-11 05:21:00 -04:00
|
|
|
pend("test_self_build_fail skipped on MS Windows (VC++)") if vc_windows?
|
2007-11-10 02:48:56 -05:00
|
|
|
output = []
|
|
|
|
|
2021-05-10 23:25:46 -04:00
|
|
|
error = assert_raise Gem::InstallError do
|
2020-12-08 02:33:39 -05:00
|
|
|
Gem::Ext::ConfigureBuilder.build nil, @dest_path, output, [], nil, @ext
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2017-11-28 17:30:28 -05:00
|
|
|
shell_error_msg = %r{(\./configure: .*)|((?:[Cc]an't|cannot) open '?\./configure'?(?:: No such file or directory)?)}
|
2021-01-03 20:09:05 -05: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
|
2020-03-24 14:51:43 -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?
|
2021-05-11 05:21:00 -04:00
|
|
|
pend("test_self_build_has_makefile skipped - nmake not found")
|
2009-06-09 17:38:59 -04:00
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
File.open File.join(@ext, "Makefile"), "w" do |makefile|
|
|
|
|
makefile.puts @makefile_body
|
|
|
|
end
|
|
|
|
|
|
|
|
output = []
|
2020-12-08 02:33:39 -05:00
|
|
|
Gem::Ext::ConfigureBuilder.build nil, @dest_path, output, [], nil, @ext
|
2007-11-10 02:48:56 -05:00
|
|
|
|
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
|