mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
require 'rubygems/test_case'
 | 
						|
 | 
						|
class TestGemGemRunner < Gem::TestCase
 | 
						|
 | 
						|
  def setup
 | 
						|
    super
 | 
						|
 | 
						|
    require 'rubygems/command'
 | 
						|
    @orig_args = Gem::Command.build_args
 | 
						|
    @orig_specific_extra_args = Gem::Command.specific_extra_args_hash.dup
 | 
						|
 | 
						|
    require 'rubygems/gem_runner'
 | 
						|
    @runner = Gem::GemRunner.new
 | 
						|
  end
 | 
						|
 | 
						|
  def teardown
 | 
						|
    super
 | 
						|
 | 
						|
    Gem::Command.build_args = @orig_args
 | 
						|
    Gem::Command.specific_extra_args_hash = @orig_specific_extra_args
 | 
						|
  end
 | 
						|
 | 
						|
  def test_do_configuration
 | 
						|
    Gem.clear_paths
 | 
						|
 | 
						|
    temp_conf = File.join @tempdir, '.gemrc'
 | 
						|
 | 
						|
    other_gem_path = File.join @tempdir, 'other_gem_path'
 | 
						|
    other_gem_home = File.join @tempdir, 'other_gem_home'
 | 
						|
 | 
						|
    Gem.ensure_gem_subdirectories other_gem_path
 | 
						|
    Gem.ensure_gem_subdirectories other_gem_home
 | 
						|
 | 
						|
    File.open temp_conf, 'w' do |fp|
 | 
						|
      fp.puts "gem: --commands"
 | 
						|
      fp.puts "gemhome: #{other_gem_home}"
 | 
						|
      fp.puts "gempath:"
 | 
						|
      fp.puts "  - #{other_gem_path}"
 | 
						|
      fp.puts "rdoc: --all"
 | 
						|
    end
 | 
						|
 | 
						|
    gr = Gem::GemRunner.new
 | 
						|
    gr.send :do_configuration, %W[--config-file #{temp_conf}]
 | 
						|
 | 
						|
    assert_equal [other_gem_path, other_gem_home], Gem.path
 | 
						|
    assert_equal %w[--commands], Gem::Command.extra_args
 | 
						|
  end
 | 
						|
 | 
						|
  def test_extract_build_args
 | 
						|
    args = %w[]
 | 
						|
    assert_equal [], @runner.extract_build_args(args)
 | 
						|
    assert_equal %w[], args
 | 
						|
 | 
						|
    args = %w[foo]
 | 
						|
    assert_equal [], @runner.extract_build_args(args)
 | 
						|
    assert_equal %w[foo], args
 | 
						|
 | 
						|
    args = %w[--foo]
 | 
						|
    assert_equal [], @runner.extract_build_args(args)
 | 
						|
    assert_equal %w[--foo], args
 | 
						|
 | 
						|
    args = %w[--foo --]
 | 
						|
    assert_equal [], @runner.extract_build_args(args)
 | 
						|
    assert_equal %w[--foo], args
 | 
						|
 | 
						|
    args = %w[--foo -- --bar]
 | 
						|
    assert_equal %w[--bar], @runner.extract_build_args(args)
 | 
						|
    assert_equal %w[--foo], args
 | 
						|
  end
 | 
						|
 | 
						|
  def test_query_is_deprecated
 | 
						|
    args = %w[query]
 | 
						|
 | 
						|
    use_ui @ui do
 | 
						|
      assert_nil @runner.run(args)
 | 
						|
    end
 | 
						|
 | 
						|
    assert_equal "WARNING:  query command is deprecated. It will be removed on or after 2020-12-01.\n", @ui.error
 | 
						|
  end
 | 
						|
 | 
						|
  def test_info_succeeds
 | 
						|
    args = %w[info]
 | 
						|
 | 
						|
    use_ui @ui do
 | 
						|
      assert_nil @runner.run(args)
 | 
						|
    end
 | 
						|
 | 
						|
    assert_empty @ui.error
 | 
						|
  end
 | 
						|
 | 
						|
  def test_list_succeeds
 | 
						|
    args = %w[list]
 | 
						|
 | 
						|
    use_ui @ui do
 | 
						|
      assert_nil @runner.run(args)
 | 
						|
    end
 | 
						|
 | 
						|
    assert_empty @ui.error
 | 
						|
  end
 | 
						|
 | 
						|
  def test_search_succeeds
 | 
						|
    args = %w[search]
 | 
						|
 | 
						|
    use_ui @ui do
 | 
						|
      assert_nil @runner.run(args)
 | 
						|
    end
 | 
						|
 | 
						|
    assert_empty @ui.error
 | 
						|
  end
 | 
						|
 | 
						|
end
 |