2012-11-29 23:30:12 -05:00
|
|
|
require 'rubygems/test_case'
|
|
|
|
require 'rubygems/commands/setup_command'
|
|
|
|
|
|
|
|
class TestGemCommandsSetupCommand < Gem::TestCase
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@install_dir = File.join @tempdir, 'install'
|
|
|
|
@cmd = Gem::Commands::SetupCommand.new
|
|
|
|
@cmd.options[:prefix] = @install_dir
|
|
|
|
|
|
|
|
FileUtils.mkdir_p 'bin'
|
2013-03-06 23:06:30 -05:00
|
|
|
FileUtils.mkdir_p 'lib/rubygems/ssl_certs'
|
2012-11-29 23:30:12 -05:00
|
|
|
|
|
|
|
open 'bin/gem', 'w' do |io| io.puts '# gem' end
|
|
|
|
open 'lib/rubygems.rb', 'w' do |io| io.puts '# rubygems.rb' end
|
|
|
|
open 'lib/rubygems/test_case.rb', 'w' do |io| io.puts '# test_case.rb' end
|
2013-03-06 23:06:30 -05:00
|
|
|
open 'lib/rubygems/ssl_certs/foo.pem', 'w' do |io| io.puts 'PEM' end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_pem_files_in
|
|
|
|
assert_equal %w[rubygems/ssl_certs/foo.pem],
|
|
|
|
@cmd.pem_files_in('lib').sort
|
2012-11-29 23:30:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_rb_files_in
|
|
|
|
assert_equal %w[rubygems.rb rubygems/test_case.rb],
|
|
|
|
@cmd.rb_files_in('lib').sort
|
|
|
|
end
|
|
|
|
|
2013-03-06 23:06:30 -05:00
|
|
|
def test_install_lib
|
|
|
|
@cmd.extend FileUtils
|
|
|
|
|
|
|
|
Dir.mktmpdir 'lib' do |dir|
|
|
|
|
@cmd.install_lib dir
|
|
|
|
|
|
|
|
assert_path_exists File.join(dir, 'rubygems.rb')
|
|
|
|
assert_path_exists File.join(dir, 'rubygems/ssl_certs/foo.pem')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-29 23:30:12 -05:00
|
|
|
def test_remove_old_lib_files
|
|
|
|
lib = File.join @install_dir, 'lib'
|
|
|
|
lib_rubygems = File.join lib, 'rubygems'
|
|
|
|
|
|
|
|
old_builder_rb = File.join lib_rubygems, 'builder.rb'
|
|
|
|
old_format_rb = File.join lib_rubygems, 'format.rb'
|
|
|
|
|
|
|
|
FileUtils.mkdir_p lib_rubygems
|
|
|
|
|
|
|
|
open old_builder_rb, 'w' do |io| io.puts '# builder.rb' end
|
|
|
|
open old_format_rb, 'w' do |io| io.puts '# format.rb' end
|
|
|
|
|
|
|
|
@cmd.remove_old_lib_files lib
|
|
|
|
|
|
|
|
refute_path_exists old_builder_rb
|
|
|
|
refute_path_exists old_format_rb
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|