Sha256: 5cd903c0e0d8382bf17e86ea43fd8ab034ba4022d474768144e1e7f8619a9797

Contents?: true

Size: 1.79 KB

Versions: 2

Compression:

Stored size: 1.79 KB

Contents

#-------------------------------------------------------------------------
# Copyright 2013 Microsoft Open Technologies, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#--------------------------------------------------------------------------
require "integration/test_helper"

describe Azure::SqlDatabaseManagementService do

  subject { Azure::SqlDatabaseManagementService.new }
  let(:login_name) {'ms_open_tech'}
  let(:sql_server) { subject.create_server(login_name, 'User1@123', WindowsImageLocation) }
  describe "#list_sql_server_firewall_rules" do

    before {
      Loggerx.expects(:puts).returns(nil).at_least(0)
      ip_range = {:start_ip_address => "10.20.30.0", :end_ip_address => "10.20.30.255"}
      subject.set_sql_server_firewall_rule(sql_server.name, "rule1", ip_range)
      subject.set_sql_server_firewall_rule(sql_server.name, "rule2")
    }

    after {
      subject.delete_server(sql_server.name)
    }

    it "returns a list of SQL databse server firewall" do
      sql_server_firewalls = subject.list_sql_server_firewall_rules(sql_server.name)
      sql_server_firewalls.wont_be_nil
      sql_server_firewalls.must_be_kind_of Array
      sql_server_firewalls.first.must_be_kind_of Hash
      sql_server_firewalls.size.must_equal 2
    end

  end

end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
stuartpreston-azure-sdk-for-ruby-0.7.2 test/integration/database/list_sql_server_firewall_test.rb
azure-plus-0.6.5 test/integration/database/list_sql_server_firewall_test.rb