summaryrefslogtreecommitdiff
path: root/trunk/test/rubygems/test_gem_ext_configure_builder.rb
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:13:14 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:13:14 +0000
commitd0233291bc8a5068e52c69c210e5979e5324b5bc (patch)
tree7d9459449c33792c63eeb7baa071e76352e0baab /trunk/test/rubygems/test_gem_ext_configure_builder.rb
parent0dc342de848a642ecce8db697b8fecd83a63e117 (diff)
parent72eaacaa15256ab95c3b52ea386f88586fb9da40 (diff)
re-adding tag v1_9_0_4 as an alias of trunk@18848v1_9_0_4
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_9_0_4@18849 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'trunk/test/rubygems/test_gem_ext_configure_builder.rb')
-rw-r--r--trunk/test/rubygems/test_gem_ext_configure_builder.rb86
1 files changed, 0 insertions, 86 deletions
diff --git a/trunk/test/rubygems/test_gem_ext_configure_builder.rb b/trunk/test/rubygems/test_gem_ext_configure_builder.rb
deleted file mode 100644
index 9ce17075bc..0000000000
--- a/trunk/test/rubygems/test_gem_ext_configure_builder.rb
+++ /dev/null
@@ -1,86 +0,0 @@
-require 'test/unit'
-require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
-require 'rubygems/ext'
-
-class TestGemExtConfigureBuilder < RubyGemTestCase
-
- def setup
- super
-
- @makefile_body = "all:\n\t@echo ok\ninstall:\n\t@echo ok"
-
- @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
- return if RUBY_PLATFORM =~ /mswin/ # HACK
-
- 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
-
- assert_equal "sh ./configure --prefix=#{@dest_path}", output.shift
- assert_equal "", output.shift
- assert_equal "make", output.shift
- assert_match(/^ok$/m, output.shift)
- assert_equal "make install", output.shift
- assert_match(/^ok$/m, output.shift)
- end
-
- def test_self_build_fail
- return if RUBY_PLATFORM =~ /mswin/ # HACK
- output = []
-
- error = assert_raise Gem::InstallError do
- Dir.chdir @ext do
- Gem::Ext::ConfigureBuilder.build nil, nil, @dest_path, output
- end
- end
-
- shell_error_msg = %r{(\./configure: .*)|(Can't open \./configure)}
- sh_prefix_configure = "sh ./configure --prefix="
-
- expected = %r(configure failed:
-
-#{Regexp.escape sh_prefix_configure}#{Regexp.escape @dest_path}
-.*?: #{shell_error_msg})
-
- assert_match expected, error.message
-
- assert_equal "#{sh_prefix_configure}#{@dest_path}", output.shift
- assert_match %r(#{shell_error_msg}\n), output.shift
- assert_equal true, output.empty?
- end
-
- def test_self_build_has_makefile
- 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
-
- case RUBY_PLATFORM
- when /mswin/ then
- assert_equal 'nmake', output[0]
- assert_equal 'nmake install', output[2]
- else
- assert_equal 'make', output[0]
- assert_equal 'make install', output[2]
- end
- end
-
-end
-