mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 469bac0f92
			
		
	
	
		469bac0f92
		
	
	
	
	
		
			
			Please see entries of 2.6.3 on https://github.com/rubygems/rubygems/blob/master/History.txt git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			212 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			212 lines
		
	
	
	
		
			6.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| require 'rubygems/test_case'
 | |
| require 'rubygems/commands/owner_command'
 | |
| 
 | |
| class TestGemCommandsOwnerCommand < Gem::TestCase
 | |
| 
 | |
|   def setup
 | |
|     super
 | |
| 
 | |
|     ENV["RUBYGEMS_HOST"] = nil
 | |
|     @fetcher = Gem::FakeFetcher.new
 | |
|     Gem::RemoteFetcher.fetcher = @fetcher
 | |
|     Gem.configuration.rubygems_api_key = "ed244fbf2b1a52e012da8616c512fa47f9aa5250"
 | |
| 
 | |
|     @cmd = Gem::Commands::OwnerCommand.new
 | |
|   end
 | |
| 
 | |
|   def test_show_owners
 | |
|     response = <<EOF
 | |
| ---
 | |
| - email: user1@example.com
 | |
|   id: 1
 | |
|   handle: user1
 | |
| - email: user2@example.com
 | |
| - id: 3
 | |
|   handle: user3
 | |
| - id: 4
 | |
| EOF
 | |
| 
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.show_owners("freewill")
 | |
|     end
 | |
| 
 | |
|     assert_equal Net::HTTP::Get, @fetcher.last_request.class
 | |
|     assert_equal Gem.configuration.rubygems_api_key, @fetcher.last_request["Authorization"]
 | |
| 
 | |
|     assert_match %r{Owners for gem: freewill}, @ui.output
 | |
|     assert_match %r{- user1@example.com}, @ui.output
 | |
|     assert_match %r{- user2@example.com}, @ui.output
 | |
|     assert_match %r{- user3}, @ui.output
 | |
|     assert_match %r{- 4}, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_show_owners_setting_up_host_through_env_var
 | |
|     response = "- email: user1@example.com\n"
 | |
|     host = "http://rubygems.example"
 | |
|     ENV["RUBYGEMS_HOST"] = host
 | |
| 
 | |
|     @fetcher.data["#{host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.show_owners("freewill")
 | |
|     end
 | |
| 
 | |
|     assert_match %r{Owners for gem: freewill}, @ui.output
 | |
|     assert_match %r{- user1@example.com}, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_show_owners_setting_up_host
 | |
|     response = "- email: user1@example.com\n"
 | |
|     host = "http://rubygems.example"
 | |
|     @cmd.host = host
 | |
| 
 | |
|     @fetcher.data["#{host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.show_owners("freewill")
 | |
|     end
 | |
| 
 | |
|     assert_match %r{Owners for gem: freewill}, @ui.output
 | |
|     assert_match %r{- user1@example.com}, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_show_owners_denied
 | |
|     response = "You don't have permission to push to this gem"
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 403, 'Forbidden']
 | |
| 
 | |
|     assert_raises Gem::MockGemUi::TermError do
 | |
|       use_ui @ui do
 | |
|         @cmd.show_owners("freewill")
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     assert_match response, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_show_owners_key
 | |
|     response = "- email: user1@example.com\n"
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
 | |
|     File.open Gem.configuration.credentials_path, 'a' do |f|
 | |
|       f.write ':other: 701229f217cdf23b1344c7b4b54ca97'
 | |
|     end
 | |
|     Gem.configuration.load_api_keys
 | |
| 
 | |
|     @cmd.handle_options %w(-k other)
 | |
|     @cmd.show_owners('freewill')
 | |
| 
 | |
|     assert_equal '701229f217cdf23b1344c7b4b54ca97', @fetcher.last_request['Authorization']
 | |
|   end
 | |
| 
 | |
|   def test_add_owners
 | |
|     response = "Owner added successfully."
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 200, 'OK']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.add_owners("freewill", ["user-new1@example.com"])
 | |
|     end
 | |
| 
 | |
|     assert_equal Net::HTTP::Post, @fetcher.last_request.class
 | |
|     assert_equal Gem.configuration.rubygems_api_key, @fetcher.last_request["Authorization"]
 | |
|     assert_equal "email=user-new1%40example.com", @fetcher.last_request.body
 | |
| 
 | |
|     assert_match response, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_add_owners_denied
 | |
|     response = "You don't have permission to push to this gem"
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 403, 'Forbidden']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.add_owners("freewill", ["user-new1@example.com"])
 | |
|     end
 | |
| 
 | |
|     assert_match response, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_add_owner_with_host_option_through_execute
 | |
|     host = "http://rubygems.example"
 | |
|     add_owner_response = "Owner added successfully."
 | |
|     show_owners_response = "- email: user1@example.com\n"
 | |
|     @fetcher.data["#{host}/api/v1/gems/freewill/owners"] = [add_owner_response, 200, 'OK']
 | |
|     @fetcher.data["#{host}/api/v1/gems/freewill/owners.yaml"] = [show_owners_response, 200, 'OK']
 | |
| 
 | |
|     @cmd.handle_options %W[--host #{host} --add user-new1@example.com freewill]
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.execute
 | |
|     end
 | |
| 
 | |
|     assert_match add_owner_response, @ui.output
 | |
|     assert_match %r{Owners for gem: freewill}, @ui.output
 | |
|     assert_match %r{- user1@example.com}, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_add_owners_key
 | |
|     response = "Owner added successfully."
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 200, 'OK']
 | |
|     File.open Gem.configuration.credentials_path, 'a' do |f|
 | |
|       f.write ':other: 701229f217cdf23b1344c7b4b54ca97'
 | |
|     end
 | |
|     Gem.configuration.load_api_keys
 | |
| 
 | |
|     @cmd.handle_options %w(-k other)
 | |
|     @cmd.add_owners('freewill', ['user-new1@example.com'])
 | |
| 
 | |
|     assert_equal '701229f217cdf23b1344c7b4b54ca97', @fetcher.last_request['Authorization']
 | |
|   end
 | |
| 
 | |
|   def test_remove_owners
 | |
|     response = "Owner removed successfully."
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 200, 'OK']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.remove_owners("freewill", ["user-remove1@example.com"])
 | |
|     end
 | |
| 
 | |
|     assert_equal Net::HTTP::Delete, @fetcher.last_request.class
 | |
|     assert_equal Gem.configuration.rubygems_api_key, @fetcher.last_request["Authorization"]
 | |
|     assert_equal "email=user-remove1%40example.com", @fetcher.last_request.body
 | |
| 
 | |
|     assert_match response, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_remove_owners_denied
 | |
|     response = "You don't have permission to push to this gem"
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 403, 'Forbidden']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.remove_owners("freewill", ["user-remove1@example.com"])
 | |
|     end
 | |
| 
 | |
|     assert_match response, @ui.output
 | |
|   end
 | |
| 
 | |
|   def test_remove_owners_key
 | |
|     response = "Owner removed successfully."
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 200, 'OK']
 | |
|     File.open Gem.configuration.credentials_path, 'a' do |f|
 | |
|       f.write ':other: 701229f217cdf23b1344c7b4b54ca97'
 | |
|     end
 | |
|     Gem.configuration.load_api_keys
 | |
| 
 | |
|     @cmd.handle_options %w(-k other)
 | |
|     @cmd.remove_owners('freewill', ['user-remove1@example.com'])
 | |
| 
 | |
|     assert_equal '701229f217cdf23b1344c7b4b54ca97', @fetcher.last_request['Authorization']
 | |
|   end
 | |
| 
 | |
|   def test_remove_owners_missing
 | |
|     response = 'Owner could not be found.'
 | |
|     @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 404, 'Not Found']
 | |
| 
 | |
|     use_ui @ui do
 | |
|       @cmd.remove_owners("freewill", ["missing@example"])
 | |
|     end
 | |
| 
 | |
|     assert_equal "Removing missing@example: #{response}\n", @ui.output
 | |
|   end
 | |
| 
 | |
| end
 |