Sha256: 7e788f4fd667a9c84ff09266d66e0146dc0633085caff7749b87fb15907e2d6d
Contents?: true
Size: 1.27 KB
Versions: 18
Compression:
Stored size: 1.27 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Get Backup Protection Policy request class TestGetBackupProtectionPolicy < Minitest::Test def setup @service = Fog::Storage::AzureRM.new(credentials) @token_provider = Fog::Credentials::AzureRM.instance_variable_get(:@token_provider) end def test_get_backup_protection_policy_success response = ApiStub::Requests::Storage::RecoveryVault.get_backup_protection_policy_response @token_provider.stub :get_authentication_header, 'Bearer <some-token>' do RestClient.stub :get, response do assert_equal @service.get_backup_protection_policy('fog-test-rg', 'fog-test-vault'), JSON.parse(response)['value'] end end end def test_get_backup_protection_policy_argument_error @token_provider.stub :get_authentication_header, 'Bearer <some-token>' do assert_raises ArgumentError do @service.get_backup_protection_policy('fog-test-rg') end end end def test_get_backup_protection_policy_exception response = -> { fail Exception.new('mocked exception') } @token_provider.stub :get_authentication_header, response do assert_raises Exception do @service.get_backup_protection_policy('fog-test-rg', 'fog-test-vault') end end end end
Version data entries
18 entries across 18 versions & 3 rubygems