mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7083cebeae
https://github.com/rubygems/rubygems/blob/2.0/History.txt for changes git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41843 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
212 lines
5.8 KiB
Ruby
212 lines
5.8 KiB
Ruby
require 'rubygems/test_case'
|
|
require 'rubygems'
|
|
require 'rubygems/command'
|
|
require 'rubygems/gemcutter_utilities'
|
|
|
|
class TestGemGemcutterUtilities < Gem::TestCase
|
|
|
|
def setup
|
|
super
|
|
|
|
ENV['RUBYGEMS_HOST'] = nil
|
|
Gem.configuration.rubygems_api_key = nil
|
|
|
|
@cmd = Gem::Command.new '', 'summary'
|
|
@cmd.extend Gem::GemcutterUtilities
|
|
end
|
|
|
|
def teardown
|
|
ENV['RUBYGEMS_HOST'] = nil
|
|
Gem.configuration.rubygems_api_key = nil
|
|
|
|
super
|
|
end
|
|
|
|
def test_alternate_key_alternate_host
|
|
keys = {
|
|
:rubygems_api_key => 'KEY',
|
|
"http://rubygems.engineyard.com" => "EYKEY"
|
|
}
|
|
|
|
FileUtils.mkdir_p File.dirname Gem.configuration.credentials_path
|
|
|
|
open Gem.configuration.credentials_path, 'w' do |f|
|
|
f.write keys.to_yaml
|
|
end
|
|
|
|
ENV["RUBYGEMS_HOST"] = "http://rubygems.engineyard.com"
|
|
|
|
Gem.configuration.load_api_keys
|
|
|
|
assert_equal 'EYKEY', @cmd.api_key
|
|
end
|
|
|
|
def test_api_key
|
|
keys = { :rubygems_api_key => 'KEY' }
|
|
FileUtils.mkdir_p File.dirname Gem.configuration.credentials_path
|
|
|
|
open Gem.configuration.credentials_path, 'w' do |f|
|
|
f.write keys.to_yaml
|
|
end
|
|
|
|
Gem.configuration.load_api_keys
|
|
|
|
assert_equal 'KEY', @cmd.api_key
|
|
end
|
|
|
|
def test_api_key_override
|
|
keys = { :rubygems_api_key => 'KEY', :other => 'OTHER' }
|
|
FileUtils.mkdir_p File.dirname Gem.configuration.credentials_path
|
|
|
|
open Gem.configuration.credentials_path, 'w' do |f|
|
|
f.write keys.to_yaml
|
|
end
|
|
|
|
Gem.configuration.load_api_keys
|
|
|
|
@cmd.add_key_option
|
|
@cmd.handle_options %w[--key other]
|
|
|
|
assert_equal 'OTHER', @cmd.api_key
|
|
end
|
|
|
|
def test_host
|
|
assert_equal 'https://rubygems.org', @cmd.host
|
|
end
|
|
|
|
def test_host_RUBYGEMS_HOST
|
|
ENV['RUBYGEMS_HOST'] = 'https://other.example'
|
|
|
|
assert_equal 'https://other.example', @cmd.host
|
|
end
|
|
|
|
def test_host_RUBYGEMS_HOST_empty
|
|
ENV['RUBYGEMS_HOST'] = ''
|
|
|
|
assert_equal 'https://rubygems.org', @cmd.host
|
|
end
|
|
|
|
def test_sign_in
|
|
api_key = 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
|
|
util_sign_in [api_key, 200, 'OK']
|
|
|
|
assert_match %r{Enter your RubyGems.org credentials.}, @sign_in_ui.output
|
|
assert @fetcher.last_request["authorization"]
|
|
assert_match %r{Signed in.}, @sign_in_ui.output
|
|
|
|
credentials = YAML.load_file Gem.configuration.credentials_path
|
|
assert_equal api_key, credentials[:rubygems_api_key]
|
|
end
|
|
|
|
def test_sign_in_with_host
|
|
api_key = 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
|
|
|
|
util_sign_in [api_key, 200, 'OK'], 'http://example.com', :param
|
|
|
|
assert_match "Enter your http://example.com credentials.",
|
|
@sign_in_ui.output
|
|
assert @fetcher.last_request["authorization"]
|
|
assert_match %r{Signed in.}, @sign_in_ui.output
|
|
|
|
credentials = YAML.load_file Gem.configuration.credentials_path
|
|
assert_equal api_key, credentials[:rubygems_api_key]
|
|
end
|
|
|
|
def test_sign_in_with_host_ENV
|
|
api_key = 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
|
|
util_sign_in [api_key, 200, 'OK'], 'http://example.com'
|
|
|
|
assert_match "Enter your http://example.com credentials.",
|
|
@sign_in_ui.output
|
|
assert @fetcher.last_request["authorization"]
|
|
assert_match %r{Signed in.}, @sign_in_ui.output
|
|
|
|
credentials = YAML.load_file Gem.configuration.credentials_path
|
|
assert_equal api_key, credentials[:rubygems_api_key]
|
|
end
|
|
|
|
def test_sign_in_skips_with_existing_credentials
|
|
api_key = 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
|
|
Gem.configuration.rubygems_api_key = api_key
|
|
|
|
util_sign_in [api_key, 200, 'OK']
|
|
|
|
assert_equal "", @sign_in_ui.output
|
|
end
|
|
|
|
def test_sign_in_with_other_credentials_doesnt_overwrite_other_keys
|
|
api_key = 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'
|
|
other_api_key = 'f46dbb18bb6a9c97cdc61b5b85c186a17403cdcbf'
|
|
|
|
FileUtils.mkdir_p File.dirname(Gem.configuration.credentials_path)
|
|
open Gem.configuration.credentials_path, 'w' do |f|
|
|
f.write Hash[:other_api_key, other_api_key].to_yaml
|
|
end
|
|
util_sign_in [api_key, 200, 'OK']
|
|
|
|
assert_match %r{Enter your RubyGems.org credentials.}, @sign_in_ui.output
|
|
assert_match %r{Signed in.}, @sign_in_ui.output
|
|
|
|
credentials = YAML.load_file Gem.configuration.credentials_path
|
|
assert_equal api_key, credentials[:rubygems_api_key]
|
|
assert_equal other_api_key, credentials[:other_api_key]
|
|
end
|
|
|
|
def test_sign_in_with_bad_credentials
|
|
skip 'Always uses $stdin on windows' if Gem.win_platform?
|
|
|
|
assert_raises Gem::MockGemUi::TermError do
|
|
util_sign_in ['Access Denied.', 403, 'Forbidden']
|
|
end
|
|
|
|
assert_match %r{Enter your RubyGems.org credentials.}, @sign_in_ui.output
|
|
assert_match %r{Access Denied.}, @sign_in_ui.output
|
|
end
|
|
|
|
def util_sign_in response, host = nil, style = :ENV
|
|
skip 'Always uses $stdin on windows' if Gem.win_platform?
|
|
|
|
email = 'you@example.com'
|
|
password = 'secret'
|
|
|
|
if host
|
|
ENV['RUBYGEMS_HOST'] = host if style == :ENV
|
|
else
|
|
host = Gem.host
|
|
end
|
|
|
|
@fetcher = Gem::FakeFetcher.new
|
|
@fetcher.data["#{host}/api/v1/api_key"] = response
|
|
Gem::RemoteFetcher.fetcher = @fetcher
|
|
|
|
@sign_in_ui = Gem::MockGemUi.new "#{email}\n#{password}\n"
|
|
|
|
use_ui @sign_in_ui do
|
|
if style == :param then
|
|
@cmd.sign_in host
|
|
else
|
|
@cmd.sign_in
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_verify_api_key
|
|
keys = {:other => 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903'}
|
|
FileUtils.mkdir_p File.dirname(Gem.configuration.credentials_path)
|
|
File.open Gem.configuration.credentials_path, 'w' do |f|
|
|
f.write keys.to_yaml
|
|
end
|
|
Gem.configuration.load_api_keys
|
|
|
|
assert_equal 'a5fdbb6ba150cbb83aad2bb2fede64cf040453903',
|
|
@cmd.verify_api_key(:other)
|
|
end
|
|
|
|
def test_verify_missing_api_key
|
|
assert_raises Gem::MockGemUi::TermError do
|
|
@cmd.verify_api_key :missing
|
|
end
|
|
end
|
|
|
|
end
|
|
|