Sha256: dd3ff08e8e5376a3be4983d2f4cdb7a08c0a0697b64c9855c74a4176b331ebcf

Contents?: true

Size: 1.33 KB

Versions: 4

Compression:

Stored size: 1.33 KB

Contents

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

# Test class for Create Network Security Rule
class TestCreateOrUpdateNetworkSecurityRule < Minitest::Test
  def setup
    @service = Fog::Network::AzureRM.new(credentials)
    @client = @service.instance_variable_get(:@network_client)
    @network_security_rules = @client.security_rules
  end

  def test_create_or_update_network_security_rule_success
    mocked_response = ApiStub::Requests::Network::NetworkSecurityRule.create_network_security_rule_response(@client)
    security_rule_params = ApiStub::Requests::Network::NetworkSecurityRule.network_security_rule_paramteres_hash
    @network_security_rules.stub :create_or_update, mocked_response do
      assert_equal @service.create_or_update_network_security_rule(security_rule_params), mocked_response
    end
  end

  def test_create_or_update_network_security_rule_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    security_rule_params = ApiStub::Requests::Network::NetworkSecurityRule.network_security_rule_paramteres_hash
    @network_security_rules.stub :create_or_update, response do
      assert_raises RuntimeError do
        @service.create_or_update_network_security_rule(security_rule_params)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/network/test_create_or_update_network_security_rule.rb
fog-azure-rm-0.1.0 test/requests/network/test_create_or_update_network_security_rule.rb
fog-azure-rm-0.0.9 test/requests/network/test_create_or_update_network_security_rule.rb
fog-azure-rm-0.0.8 test/requests/network/test_create_or_update_network_security_rule.rb