Sha256: 523a20841efd8414e465c5239989b981c9d7c664223b2e8a13e243465a385c74

Contents?: true

Size: 1.01 KB

Versions: 33

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

require 'rubygems/test_case'
require 'rubygems/commands/signout_command'
require 'rubygems/installer'

class TestGemCommandsSignoutCommand < Gem::TestCase

  def setup
    super
    @cmd = Gem::Commands::SignoutCommand.new
  end

  def teardown
    super
    File.delete Gem.configuration.credentials_path if File.exist?(Gem.configuration.credentials_path)
  end

  def test_execute_when_user_is_signed_in
    FileUtils.mkdir_p File.dirname(Gem.configuration.credentials_path)
    FileUtils::touch Gem.configuration.credentials_path

    @sign_out_ui = Gem::MockGemUi.new
    use_ui(@sign_out_ui) { @cmd.execute }

    assert_match %r{You have successfully signed out}, @sign_out_ui.output
    assert_equal false, File.exist?(Gem.configuration.credentials_path)
  end

  def test_execute_when_not_signed_in # i.e. no credential file created
    @sign_out_ui = Gem::MockGemUi.new
    use_ui(@sign_out_ui) { @cmd.execute }

    assert_match %r{You are not currently signed in}, @sign_out_ui.error
  end

end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
rubygems-update-3.1.6 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.5 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.9 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-2.7.11 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.4 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.3 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.8 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.7 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.2 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.1 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.0 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.0.pre3 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.0.pre2 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.1.0.pre1 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.6 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.5 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.4 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-2.7.10 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-2.7.9 test/rubygems/test_gem_commands_signout_command.rb
rubygems-update-3.0.3 test/rubygems/test_gem_commands_signout_command.rb