Sha256: d1e9a3b7bde3cc346d7b8b11ce33c0c2a29fe1423cda658ee244defa5044c513

Contents?: true

Size: 1.13 KB

Versions: 32

Compression:

Stored size: 1.13 KB

Contents

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

# Test class for Create Sql Server Firewall Rule
class TestCreateOrUpdateFirewallRule < Minitest::Test
  def setup
    @service = Fog::Sql::AzureRM.new(credentials)
    @sql_manager_client = @service.instance_variable_get(:@sql_mgmt_client)
    @firewall_rule = @sql_manager_client.servers
    @data_hash = ApiStub::Requests::Sql::FirewallRule.firewall_rule_hash
  end

  def test_create_or_update_sql_server_firewall_rule_success
    firewall_rule_response = ApiStub::Requests::Sql::FirewallRule.create_firewall_rule_response(@sql_manager_client)
    @firewall_rule.stub :create_or_update_firewall_rule, firewall_rule_response do
      assert_equal @service.create_or_update_firewall_rule(@data_hash), firewall_rule_response
    end
  end

  def test_create_or_update_sql_server_firewall_rule_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @firewall_rule.stub :create_or_update_firewall_rule, response do
      assert_raises(RuntimeError) { @service.create_or_update_firewall_rule(@data_hash) }
    end
  end
end

Version data entries

32 entries across 32 versions & 4 rubygems

Version Path
fog-azure-rm-0.4.5 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-temp-0.0.5 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.4.4 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.4.3 test/requests/sql/test_create_or_update_firewall_rule.rb
far-gem-0.5.1 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.4.2 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.4.1 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.4.0 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.9 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.8 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.7 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.6 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.5 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.4 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-temp-0.0.4 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-temp-0.0.3 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.3 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-temp-0.0.2 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-temp-0.0.1 test/requests/sql/test_create_or_update_firewall_rule.rb
fog-azure-rm-0.3.2 test/requests/sql/test_create_or_update_firewall_rule.rb