Sha256: 0b33e04095996251ff410116da5c8c5c0661a1f1a466e2ba246cf82abc107ba4
Contents?: true
Size: 1.19 KB
Versions: 25
Compression:
Stored size: 1.19 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Check Public Ip Exists Request class TestCheckPublicIpExists < Minitest::Test def setup @service = Fog::Network::AzureRM.new(credentials) network_client = @service.instance_variable_get(:@network_client) @public_ips = network_client.public_ipaddresses end def test_check_public_ip_exists_success @public_ips.stub :get, true do assert @service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip') end end def test_check_public_ip_exists_failure response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceNotFound' }) } @public_ips.stub :get, response do assert !@service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip') end end def test_check_public_ip_exists_exception response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) } @public_ips.stub :get, response do assert_raises(RuntimeError) { @service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip') } end end end
Version data entries
25 entries across 25 versions & 3 rubygems