mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19bad26c5a
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
135 lines
3.4 KiB
Ruby
135 lines
3.4 KiB
Ruby
require_relative 'gemutilities'
|
|
require 'rubygems/indexer'
|
|
require 'rubygems/commands/generate_index_command'
|
|
|
|
class TestGemCommandsGenerateIndexCommand < RubyGemTestCase
|
|
|
|
def setup
|
|
super
|
|
|
|
@cmd = Gem::Commands::GenerateIndexCommand.new
|
|
@cmd.options[:directory] = @gemhome
|
|
end
|
|
|
|
def test_execute
|
|
use_ui @ui do
|
|
@cmd.execute
|
|
end
|
|
|
|
yaml = File.join @gemhome, 'yaml'
|
|
yaml_z = File.join @gemhome, 'yaml.Z'
|
|
quick_index = File.join @gemhome, 'quick', 'index'
|
|
quick_index_rz = File.join @gemhome, 'quick', 'index.rz'
|
|
|
|
assert File.exist?(yaml), yaml
|
|
assert File.exist?(yaml_z), yaml_z
|
|
assert File.exist?(quick_index), quick_index
|
|
assert File.exist?(quick_index_rz), quick_index_rz
|
|
end
|
|
|
|
def test_execute_rss_update
|
|
@cmd.options[:update] = true
|
|
@cmd.options[:rss_host] = 'example.com'
|
|
@cmd.options[:rss_gems_host] = 'gems.example.com'
|
|
|
|
use_ui @ui do
|
|
assert_raises MockGemUi::TermError do
|
|
@cmd.execute
|
|
end
|
|
end
|
|
|
|
assert_equal "ERROR: --update not compatible with RSS generation\n",
|
|
@ui.error
|
|
assert_empty @ui.output
|
|
end
|
|
|
|
def test_handle_options_directory
|
|
return if win_platform?
|
|
refute_equal '/nonexistent', @cmd.options[:directory]
|
|
|
|
@cmd.handle_options %w[--directory /nonexistent]
|
|
|
|
assert_equal '/nonexistent', @cmd.options[:directory]
|
|
end
|
|
|
|
def test_handle_options_directory_windows
|
|
return unless win_platform?
|
|
|
|
refute_equal '/nonexistent', @cmd.options[:directory]
|
|
|
|
@cmd.handle_options %w[--directory C:/nonexistent]
|
|
|
|
assert_equal 'C:/nonexistent', @cmd.options[:directory]
|
|
end
|
|
|
|
def test_handle_options_invalid
|
|
e = assert_raises OptionParser::InvalidOption do
|
|
@cmd.handle_options %w[--no-modern --no-legacy]
|
|
end
|
|
|
|
assert_equal 'invalid option: --no-legacy no indicies will be built',
|
|
e.message
|
|
|
|
@cmd = Gem::Commands::GenerateIndexCommand.new
|
|
e = assert_raises OptionParser::InvalidOption do
|
|
@cmd.handle_options %w[--no-legacy --no-modern]
|
|
end
|
|
|
|
assert_equal 'invalid option: --no-modern no indicies will be built',
|
|
e.message
|
|
end
|
|
|
|
def test_handle_options_legacy
|
|
@cmd.handle_options %w[--legacy]
|
|
|
|
assert @cmd.options[:build_legacy]
|
|
assert @cmd.options[:build_modern], ':build_modern not set'
|
|
end
|
|
|
|
def test_handle_options_modern
|
|
@cmd.handle_options %w[--modern]
|
|
|
|
assert @cmd.options[:build_legacy]
|
|
assert @cmd.options[:build_modern], ':build_modern not set'
|
|
end
|
|
|
|
def test_handle_options_no_legacy
|
|
@cmd.handle_options %w[--no-legacy]
|
|
|
|
refute @cmd.options[:build_legacy]
|
|
assert @cmd.options[:build_modern]
|
|
end
|
|
|
|
def test_handle_options_no_modern
|
|
@cmd.handle_options %w[--no-modern]
|
|
|
|
assert @cmd.options[:build_legacy]
|
|
refute @cmd.options[:build_modern]
|
|
end
|
|
|
|
def test_handle_options_rss_gems_host
|
|
@cmd.handle_options %w[--rss-gems-host gems.example.com]
|
|
|
|
assert_equal 'gems.example.com', @cmd.options[:rss_gems_host]
|
|
end
|
|
|
|
def test_handle_options_rss_host
|
|
@cmd.handle_options %w[--rss-host example.com]
|
|
|
|
assert_equal 'example.com', @cmd.options[:rss_host]
|
|
end
|
|
|
|
def test_handle_options_rss_title
|
|
@cmd.handle_options %w[--rss-title Example\ Gems]
|
|
|
|
assert_equal 'Example Gems', @cmd.options[:rss_title]
|
|
end
|
|
|
|
def test_handle_options_update
|
|
@cmd.handle_options %w[--update]
|
|
|
|
assert @cmd.options[:update]
|
|
end
|
|
|
|
end if ''.respond_to? :to_xs
|
|
|