Sha256: 4cd091a80f7696af7cbf6387cdc95fe3a66aa6cdf97ddbbc51b974fd562b1b2a
Contents?: true
Size: 1.15 KB
Versions: 18
Compression:
Stored size: 1.15 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for List Recovery Vault request class TestListRecoveryVault < Minitest::Test def setup @service = Fog::Storage::AzureRM.new(credentials) @token_provider = Fog::Credentials::AzureRM.instance_variable_get(:@token_provider) end def test_list_recovery_vault_success response = ApiStub::Requests::Storage::RecoveryVault.get_recovery_vault_response @token_provider.stub :get_authentication_header, 'Bearer <some-token>' do RestClient.stub :get, response do assert_equal @service.list_recovery_vaults('fog-test-rg'), JSON.parse(response)['value'] end end end def test_list_recovery_vault_argument_error @token_provider.stub :get_authentication_header, 'Bearer <some-token>' do assert_raises ArgumentError do @service.list_recovery_vaults end end end def test_list_recovery_vault_exception response = -> { fail Exception.new('mocked exception') } @token_provider.stub :get_authentication_header, response do assert_raises Exception do @service.list_recovery_vaults('fog-test-rg') end end end end
Version data entries
18 entries across 18 versions & 3 rubygems