Change soft-fail to use the config, rather than env
[rbx.git] / test / rubygems / test_gem_local_remote_options.rb
blobe676c94f216446257b1e7d9eb6c41b44fa883d7e
1 require 'test/unit'
2 require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
3 require 'rubygems/local_remote_options'
4 require 'rubygems/command'
6 class TestGemLocalRemoteOptions < RubyGemTestCase
8   def setup
9     super
11     @cmd = Gem::Command.new 'dummy', 'dummy'
12     @cmd.extend Gem::LocalRemoteOptions
13   end
15   def test_add_local_remote_options
16     @cmd.add_local_remote_options
18     args = %w[-l -r -b -B 10 --source http://gems.example.com -p --update-sources]
19     assert @cmd.handles?(args)
20   end
22   def test_local_eh
23     assert_equal false, @cmd.local?
25     @cmd.options[:domain] = :local
27     assert_equal true, @cmd.local?
29     @cmd.options[:domain] = :both
31     assert_equal true, @cmd.local?
32   end
34   def test_remote_eh
35     assert_equal false, @cmd.remote?
37     @cmd.options[:domain] = :remote
39     assert_equal true, @cmd.remote?
41     @cmd.options[:domain] = :both
43     assert_equal true, @cmd.remote?
44   end
46   def test_source_option
47     @cmd.add_source_option
49     s1 = URI.parse 'http://more-gems.example.com/'
50     s2 = URI.parse 'http://even-more-gems.example.com/'
51     s3 = URI.parse 'http://other-gems.example.com/some_subdir'
53     @cmd.handle_options %W[--source #{s1} --source #{s2} --source #{s3}]
55     assert_equal [s1.to_s, s2.to_s, "#{s3}/"], Gem.sources
56   end
58   def test_update_sources_option
59     @cmd.add_update_sources_option
61     Gem.configuration.update_sources = false
63     @cmd.handle_options %W[--update-sources]
65     assert_equal true, Gem.configuration.update_sources
67     @cmd.handle_options %W[--no-update-sources]
69     assert_equal false, Gem.configuration.update_sources
70   end
72   def test_source_option_bad
73     @cmd.add_source_option
75     s1 = 'htp://more-gems.example.com'
77     assert_raise OptionParser::InvalidArgument do
78       @cmd.handle_options %W[--source #{s1}]
79     end
81     assert_equal [@gem_repo], Gem.sources
82   end
84 end