Sha256: ace5349159cad32a01fa45b7b44f6f31289f27ebd5ba6d4b49860bbba101dad7

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

require File.expand_path '../../test_helper', __dir__

# Test class for Create Recovery Vault request
class TestCreateRecoveryVault < Minitest::Test
  def setup
    @service = Fog::Storage::AzureRM.new(credentials)
    @token_provider = Fog::Credentials::AzureRM.instance_variable_get(:@token_provider)
  end

  def test_create_recovery_vault_success
    response = ApiStub::Requests::Storage::RecoveryVault.create_recovery_vault_response
    @token_provider.stub :get_authentication_header, 'Bearer <some-token>' do
      RestClient.stub :put, response do
        assert_equal @service.create_or_update_recovery_vault('fog-test-rg', 'westus', 'fog-test-vault'), JSON.parse(response)
      end
    end
  end

  def test_create_recovery_vault_argument_error
    @token_provider.stub :get_authentication_header, 'Bearer <some-token>' do
      assert_raises ArgumentError do
        @service.create_or_update_recovery_vault('fog-test-rg', 'fog-test-vault')
      end
    end
  end

  def test_create_recovery_vault_exception
    response = -> { fail Exception.new('mocked exception') }
    @token_provider.stub :get_authentication_header, response do
      assert_raises Exception do
        @service.create_or_update_recovery_vault('fog-test-rg', 'westus', 'fog-test-vault')
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/storage/test_create_recovery_vault.rb
fog-azure-rm-0.1.0 test/requests/storage/test_create_recovery_vault.rb