stuartpreston-azure-sdk-for-ruby 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.travis.yml +10 -0
- data/ChangeLog.txt +40 -0
- data/Gemfile +16 -0
- data/README.md +616 -0
- data/Rakefile +133 -0
- data/azure.gemspec +44 -0
- data/lib/azure.rb +52 -0
- data/lib/azure/base_management/affinity_group.rb +32 -0
- data/lib/azure/base_management/base_management_service.rb +234 -0
- data/lib/azure/base_management/location.rb +27 -0
- data/lib/azure/base_management/management_http_request.rb +172 -0
- data/lib/azure/base_management/serialization.rb +129 -0
- data/lib/azure/base_management/sql_management_http_request.rb +45 -0
- data/lib/azure/blob/blob.rb +32 -0
- data/lib/azure/blob/blob_service.rb +1423 -0
- data/lib/azure/blob/block.rb +31 -0
- data/lib/azure/blob/container.rb +32 -0
- data/lib/azure/blob/serialization.rb +285 -0
- data/lib/azure/cloud_service_management/cloud_service.rb +38 -0
- data/lib/azure/cloud_service_management/cloud_service_management_service.rb +140 -0
- data/lib/azure/cloud_service_management/serialization.rb +117 -0
- data/lib/azure/core.rb +39 -0
- data/lib/azure/core/auth/authorizer.rb +36 -0
- data/lib/azure/core/auth/shared_key.rb +110 -0
- data/lib/azure/core/auth/shared_key_lite.rb +48 -0
- data/lib/azure/core/auth/signer.rb +48 -0
- data/lib/azure/core/configuration.rb +211 -0
- data/lib/azure/core/error.rb +22 -0
- data/lib/azure/core/filtered_service.rb +44 -0
- data/lib/azure/core/http/debug_filter.rb +36 -0
- data/lib/azure/core/http/http_error.rb +88 -0
- data/lib/azure/core/http/http_filter.rb +53 -0
- data/lib/azure/core/http/http_request.rb +157 -0
- data/lib/azure/core/http/http_response.rb +140 -0
- data/lib/azure/core/http/retry_policy.rb +74 -0
- data/lib/azure/core/http/signer_filter.rb +34 -0
- data/lib/azure/core/service.rb +63 -0
- data/lib/azure/core/signed_service.rb +43 -0
- data/lib/azure/core/utility.rb +190 -0
- data/lib/azure/queue/message.rb +30 -0
- data/lib/azure/queue/queue.rb +29 -0
- data/lib/azure/queue/queue_service.rb +568 -0
- data/lib/azure/queue/serialization.rb +106 -0
- data/lib/azure/service/access_policy.rb +26 -0
- data/lib/azure/service/cors.rb +11 -0
- data/lib/azure/service/cors_rule.rb +15 -0
- data/lib/azure/service/enumeration_results.rb +21 -0
- data/lib/azure/service/logging.rb +32 -0
- data/lib/azure/service/metrics.rb +31 -0
- data/lib/azure/service/retention_policy.rb +25 -0
- data/lib/azure/service/serialization.rb +298 -0
- data/lib/azure/service/signed_identifier.rb +30 -0
- data/lib/azure/service/storage_service.rb +83 -0
- data/lib/azure/service/storage_service_properties.rb +37 -0
- data/lib/azure/service_bus/action.rb +21 -0
- data/lib/azure/service_bus/auth/wrap_service.rb +89 -0
- data/lib/azure/service_bus/auth/wrap_signer.rb +69 -0
- data/lib/azure/service_bus/brokered_message.rb +124 -0
- data/lib/azure/service_bus/brokered_message_serializer.rb +159 -0
- data/lib/azure/service_bus/correlation_filter.rb +45 -0
- data/lib/azure/service_bus/empty_rule_action.rb +30 -0
- data/lib/azure/service_bus/false_filter.rb +38 -0
- data/lib/azure/service_bus/filter.rb +21 -0
- data/lib/azure/service_bus/interval.rb +104 -0
- data/lib/azure/service_bus/queue.rb +230 -0
- data/lib/azure/service_bus/relay.rb +88 -0
- data/lib/azure/service_bus/resource.rb +109 -0
- data/lib/azure/service_bus/rule.rb +98 -0
- data/lib/azure/service_bus/rule_aspect.rb +34 -0
- data/lib/azure/service_bus/serialization.rb +161 -0
- data/lib/azure/service_bus/service_bus_service.rb +897 -0
- data/lib/azure/service_bus/sql_filter.rb +50 -0
- data/lib/azure/service_bus/sql_rule_action.rb +50 -0
- data/lib/azure/service_bus/subscription.rb +184 -0
- data/lib/azure/service_bus/topic.rb +187 -0
- data/lib/azure/service_bus/true_filter.rb +38 -0
- data/lib/azure/sql_database_management/serialization.rb +111 -0
- data/lib/azure/sql_database_management/sql_database.rb +31 -0
- data/lib/azure/sql_database_management/sql_database_management_service.rb +200 -0
- data/lib/azure/storage_management/serialization.rb +184 -0
- data/lib/azure/storage_management/storage_account.rb +40 -0
- data/lib/azure/storage_management/storage_management_service.rb +166 -0
- data/lib/azure/table/auth/shared_key.rb +92 -0
- data/lib/azure/table/auth/shared_key_lite.rb +44 -0
- data/lib/azure/table/batch.rb +330 -0
- data/lib/azure/table/batch_response.rb +118 -0
- data/lib/azure/table/edmtype.rb +127 -0
- data/lib/azure/table/entity.rb +31 -0
- data/lib/azure/table/guid.rb +24 -0
- data/lib/azure/table/query.rb +112 -0
- data/lib/azure/table/serialization.rb +108 -0
- data/lib/azure/table/table_service.rb +560 -0
- data/lib/azure/version.rb +31 -0
- data/lib/azure/virtual_machine_image_management/serialization.rb +66 -0
- data/lib/azure/virtual_machine_image_management/virtual_machine_disk.rb +25 -0
- data/lib/azure/virtual_machine_image_management/virtual_machine_image.rb +25 -0
- data/lib/azure/virtual_machine_image_management/virtual_machine_image_management_service.rb +94 -0
- data/lib/azure/virtual_machine_management/serialization.rb +463 -0
- data/lib/azure/virtual_machine_management/virtual_machine.rb +45 -0
- data/lib/azure/virtual_machine_management/virtual_machine_management_service.rb +589 -0
- data/lib/azure/virtual_network_management/serialization.rb +186 -0
- data/lib/azure/virtual_network_management/virtual_network.rb +36 -0
- data/lib/azure/virtual_network_management/virtual_network_management_service.rb +109 -0
- data/test/fixtures/32px-fulls-black.jpg +0 -0
- data/test/fixtures/affinity_group.xml +33 -0
- data/test/fixtures/all_containers.xml +20 -0
- data/test/fixtures/all_tables.xml +22 -0
- data/test/fixtures/certificate.pem +21 -0
- data/test/fixtures/container_acl.xml +11 -0
- data/test/fixtures/create_sql_database_server.xml +2 -0
- data/test/fixtures/create_storage_desc_error.xml +5 -0
- data/test/fixtures/create_storage_extendedprop_error.xml +8 -0
- data/test/fixtures/create_storage_extendedpropname_error.xml +6 -0
- data/test/fixtures/create_storage_full_error.xml +6 -0
- data/test/fixtures/create_storage_label_error.xml +5 -0
- data/test/fixtures/create_storage_location_error.xml +5 -0
- data/test/fixtures/create_storage_name_error.xml +6 -0
- data/test/fixtures/create_table_response_entry.xml +15 -0
- data/test/fixtures/delete_storage_container_error.xml +5 -0
- data/test/fixtures/delete_storage_error.xml +5 -0
- data/test/fixtures/deployment_error.xml +5 -0
- data/test/fixtures/empty_xml_file +0 -0
- data/test/fixtures/get_storage_account_error.xml +5 -0
- data/test/fixtures/get_storage_account_properties.xml +32 -0
- data/test/fixtures/get_storage_account_properties_new.xml +32 -0
- data/test/fixtures/http_error.xml +5 -0
- data/test/fixtures/insert_entity_response_entry.xml +25 -0
- data/test/fixtures/list_affinity_groups.xml +22 -0
- data/test/fixtures/list_blobs.xml +121 -0
- data/test/fixtures/list_block_all_with_none_committed.xml +22 -0
- data/test/fixtures/list_blocks_all.xml +23 -0
- data/test/fixtures/list_blocks_committed.xml +13 -0
- data/test/fixtures/list_cloud_services.xml +39 -0
- data/test/fixtures/list_containers.xml +38 -0
- data/test/fixtures/list_firewall_management_endpoint.xml +27 -0
- data/test/fixtures/list_images.xml +110 -0
- data/test/fixtures/list_locations.xml +62 -0
- data/test/fixtures/list_page_ranges.xml +11 -0
- data/test/fixtures/list_sql_database.xml +36 -0
- data/test/fixtures/list_sql_server_firewall.xml +23 -0
- data/test/fixtures/list_storage_account_single.xml +25 -0
- data/test/fixtures/list_storage_accounts.xml +46 -0
- data/test/fixtures/list_virtual_networks.xml +92 -0
- data/test/fixtures/logging.xml +11 -0
- data/test/fixtures/management_certificate.pem +55 -0
- data/test/fixtures/messages.xml +12 -0
- data/test/fixtures/metrics.xml +10 -0
- data/test/fixtures/privatekey.key +28 -0
- data/test/fixtures/query_entities_empty_response.xml +7 -0
- data/test/fixtures/query_entities_response.xml +45 -0
- data/test/fixtures/queue_service_properties.xml +22 -0
- data/test/fixtures/queue_service_properties_original.xml +19 -0
- data/test/fixtures/queues.xml +16 -0
- data/test/fixtures/retention_policy.xml +5 -0
- data/test/fixtures/sb_default_create_queue_response.xml +23 -0
- data/test/fixtures/sb_default_create_relay_response.xml +15 -0
- data/test/fixtures/sb_default_create_topic_response.xml +18 -0
- data/test/fixtures/sb_get_access_token_response.txt +1 -0
- data/test/fixtures/sb_queues_runtime_peek_message_response_headers.txt +9 -0
- data/test/fixtures/storage_service_properties.xml +54 -0
- data/test/fixtures/update_storage_account.xml +16 -0
- data/test/fixtures/update_storage_error.xml +5 -0
- data/test/fixtures/updated_storage_accounts.xml +53 -0
- data/test/fixtures/virtual_machine.xml +113 -0
- data/test/fixtures/windows_virtual_machine.xml +106 -0
- data/test/integration/affinity_group/Affinity_test.rb +55 -0
- data/test/integration/affinity_group/Create_Affinity_test.rb +63 -0
- data/test/integration/affinity_group/Delete_Affinity_test.rb +56 -0
- data/test/integration/affinity_group/List_Affinity_test.rb +41 -0
- data/test/integration/affinity_group/Update_Affinity_test.rb +82 -0
- data/test/integration/blob/blob_gb18030_test.rb +199 -0
- data/test/integration/blob/blob_metadata_test.rb +75 -0
- data/test/integration/blob/blob_pages_test.rb +119 -0
- data/test/integration/blob/blob_properties_test.rb +77 -0
- data/test/integration/blob/block_blob_test.rb +254 -0
- data/test/integration/blob/container/container_acl_test.rb +69 -0
- data/test/integration/blob/container/container_metadata_test.rb +50 -0
- data/test/integration/blob/container/create_container_test.rb +60 -0
- data/test/integration/blob/container/delete_container_test.rb +39 -0
- data/test/integration/blob/container/get_container_properties_test.rb +48 -0
- data/test/integration/blob/container/list_containers_test.rb +79 -0
- data/test/integration/blob/container/root_container_test.rb +54 -0
- data/test/integration/blob/copy_blob_test.rb +113 -0
- data/test/integration/blob/create_blob_snapshot_test.rb +80 -0
- data/test/integration/blob/create_page_blob_test.rb +83 -0
- data/test/integration/blob/delete_blob_test.rb +159 -0
- data/test/integration/blob/get_blob_test.rb +65 -0
- data/test/integration/blob/informative_errors_test.rb +39 -0
- data/test/integration/blob/lease/acquire_lease_test.rb +36 -0
- data/test/integration/blob/lease/break_lease_test.rb +40 -0
- data/test/integration/blob/lease/release_lease_test.rb +40 -0
- data/test/integration/blob/lease/renew_lease_test.rb +42 -0
- data/test/integration/blob/list_blobs_test.rb +113 -0
- data/test/integration/cloud_service/Cloud_Create_test.rb +44 -0
- data/test/integration/cloud_service/Cloud_Delete_test.rb +44 -0
- data/test/integration/database/create_sql_server_firewall_test.rb +86 -0
- data/test/integration/database/create_sql_server_test.rb +53 -0
- data/test/integration/database/delete_sql_server_firewall_test.rb +70 -0
- data/test/integration/database/delete_sql_server_test.rb +58 -0
- data/test/integration/database/list_sql_server_firewall_test.rb +45 -0
- data/test/integration/database/list_sql_servers_test.rb +44 -0
- data/test/integration/database/reset_password_sql_server_test.rb +55 -0
- data/test/integration/location/Location_List_test.rb +39 -0
- data/test/integration/queue/clear_messages_test.rb +42 -0
- data/test/integration/queue/create_message_test.rb +75 -0
- data/test/integration/queue/create_queue_test.rb +50 -0
- data/test/integration/queue/delete_message_test.rb +67 -0
- data/test/integration/queue/delete_queue_test.rb +45 -0
- data/test/integration/queue/informative_errors_test.rb +42 -0
- data/test/integration/queue/list_messages_encoded_test.rb +79 -0
- data/test/integration/queue/list_messages_test.rb +79 -0
- data/test/integration/queue/list_queues_test.rb +44 -0
- data/test/integration/queue/peek_messages_test.rb +59 -0
- data/test/integration/queue/queue_gb18030_test.rb +131 -0
- data/test/integration/queue/queue_metadata_test.rb +40 -0
- data/test/integration/queue/update_message_test.rb +74 -0
- data/test/integration/service_bus/informative_errors_test.rb +37 -0
- data/test/integration/service_bus/queues_scenario_test.rb +200 -0
- data/test/integration/service_bus/queues_test.rb +266 -0
- data/test/integration/service_bus/relay_test.rb +132 -0
- data/test/integration/service_bus/rules_test.rb +145 -0
- data/test/integration/service_bus/sb_queue_gb18030_test.rb +182 -0
- data/test/integration/service_bus/scenario_test.rb +101 -0
- data/test/integration/service_bus/subscriptions_test.rb +211 -0
- data/test/integration/service_bus/topics_scenario_test.rb +406 -0
- data/test/integration/service_bus/topics_test.rb +129 -0
- data/test/integration/storage_management/storage_management_test.rb +160 -0
- data/test/integration/table/create_table_test.rb +36 -0
- data/test/integration/table/delete_entity_batch_test.rb +107 -0
- data/test/integration/table/delete_entity_test.rb +94 -0
- data/test/integration/table/delete_table_test.rb +40 -0
- data/test/integration/table/get_table_test.rb +37 -0
- data/test/integration/table/informative_errors_test.rb +39 -0
- data/test/integration/table/insert_entity_batch_test.rb +100 -0
- data/test/integration/table/insert_entity_test.rb +88 -0
- data/test/integration/table/insert_or_merge_entity_batch_test.rb +159 -0
- data/test/integration/table/insert_or_merge_entity_test.rb +143 -0
- data/test/integration/table/insert_or_replace_entity_batch_test.rb +152 -0
- data/test/integration/table/insert_or_replace_entity_test.rb +137 -0
- data/test/integration/table/merge_entity_batch_test.rb +128 -0
- data/test/integration/table/merge_entity_test.rb +113 -0
- data/test/integration/table/query_entities_test.rb +195 -0
- data/test/integration/table/query_tables_test.rb +43 -0
- data/test/integration/table/query_test.rb +251 -0
- data/test/integration/table/table_acl_test.rb +52 -0
- data/test/integration/table/table_gb18030_test.rb +355 -0
- data/test/integration/table/update_entity_batch_test.rb +149 -0
- data/test/integration/table/update_entity_test.rb +131 -0
- data/test/integration/test_helper.rb +42 -0
- data/test/integration/vm/VM_Create_test.rb +260 -0
- data/test/integration/vm/VM_Delete_test.rb +55 -0
- data/test/integration/vm/VM_Operations_test.rb +173 -0
- data/test/integration/vm_image/virtual_machine_disk_test.rb +37 -0
- data/test/integration/vm_image/virtual_machine_image_test.rb +37 -0
- data/test/integration/vnet/Virtual_Network_Create_test.rb +122 -0
- data/test/integration/vnet/Virtual_Network_list_test.rb +53 -0
- data/test/support/env.rb +19 -0
- data/test/support/fixtures.rb +36 -0
- data/test/support/name_generator.rb +168 -0
- data/test/support/stubs.rb +42 -0
- data/test/support/virtual_machine_name_generator.rb +102 -0
- data/test/support/virtual_network_helper.rb +73 -0
- data/test/test_helper.rb +54 -0
- data/test/unit/affinity_group/affinity_group_test.rb +192 -0
- data/test/unit/affinity_group/serialization_test.rb +88 -0
- data/test/unit/base_management/location_test.rb +57 -0
- data/test/unit/blob/blob_service_test.rb +1947 -0
- data/test/unit/cloud_service_management/cloud_service_management_service_test.rb +94 -0
- data/test/unit/cloud_service_management/serialization_test.rb +169 -0
- data/test/unit/core/auth/shared_key_lite_test.rb +51 -0
- data/test/unit/core/auth/shared_key_test.rb +58 -0
- data/test/unit/core/auth/signer_test.rb +30 -0
- data/test/unit/core/http/http_error_test.rb +57 -0
- data/test/unit/core/http/http_request_test.rb +66 -0
- data/test/unit/core/http/http_response_test.rb +45 -0
- data/test/unit/core/http/retry_policy_test.rb +23 -0
- data/test/unit/database/serialization_test.rb +97 -0
- data/test/unit/database/sql_database_server_service_test.rb +288 -0
- data/test/unit/service/serialization_test.rb +533 -0
- data/test/unit/service/storage_service_test.rb +293 -0
- data/test/unit/storage_management/serialization_test.rb +232 -0
- data/test/unit/storage_management/storage_management_service_test.rb +261 -0
- data/test/unit/table/edmtype_test.rb +108 -0
- data/test/unit/virtual_machine_image_management/serialization_test.rb +35 -0
- data/test/unit/virtual_machine_image_management/virtual_machine_image_management_service_test.rb +65 -0
- data/test/unit/virtual_machine_management/serialization_test.rb +258 -0
- data/test/unit/virtual_machine_management/virtual_machine_management_service_test.rb +440 -0
- data/test/unit/vnet/serialization_test.rb +187 -0
- data/test/unit/vnet/virtual_network_management_service_test.rb +131 -0
- metadata +476 -0
@@ -0,0 +1,187 @@
|
|
1
|
+
#-------------------------------------------------------------------------
|
2
|
+
# Copyright 2013 Microsoft Open Technologies, Inc.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
#--------------------------------------------------------------------------
|
15
|
+
require 'test_helper'
|
16
|
+
|
17
|
+
describe Azure::VirtualNetworkManagement::Serialization do
|
18
|
+
subject { Azure::VirtualNetworkManagement::Serialization }
|
19
|
+
|
20
|
+
let(:virtual_networks_xml) do
|
21
|
+
Nokogiri::XML Fixtures['list_virtual_networks']
|
22
|
+
end
|
23
|
+
let(:virtual_networks_string) { Fixtures ['list_virtual_networks'] }
|
24
|
+
|
25
|
+
let(:vnet_name) { 'test-vnet-name' }
|
26
|
+
let(:affinity_group) { 'test-affinity-group' }
|
27
|
+
let(:address_space) { ['172.16.0.0/12', '10.0.0.1/12'] }
|
28
|
+
|
29
|
+
input_options = {
|
30
|
+
subnet: [
|
31
|
+
{
|
32
|
+
name: 'vnet-test-unit-subnet-1',
|
33
|
+
ip_address: '172.16.0.0',
|
34
|
+
cidr: 12
|
35
|
+
}, {
|
36
|
+
name: 'vnet-test-unit-subnet-2',
|
37
|
+
ip_address: '192.168.0.0',
|
38
|
+
cidr: 12
|
39
|
+
}
|
40
|
+
],
|
41
|
+
dns: [
|
42
|
+
{
|
43
|
+
name: 'vnet-test-unit-dns-1',
|
44
|
+
ip_address: '1.2.3.4'
|
45
|
+
}, {
|
46
|
+
name: 'vnet-test-unit-dns-2',
|
47
|
+
ip_address: '2.3.4.5'
|
48
|
+
}
|
49
|
+
]
|
50
|
+
}
|
51
|
+
|
52
|
+
describe '#virtual_network_from_xml' do
|
53
|
+
it 'accepts an XML string as input' do
|
54
|
+
subject.virtual_network_from_xml virtual_networks_xml
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'returns an Array of VirtualNetwork instances' do
|
58
|
+
result = subject.virtual_network_from_xml virtual_networks_xml
|
59
|
+
result.must_be_kind_of Array
|
60
|
+
result.length.must_equal 3
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'returns a virtual network with all attributes populated' do
|
64
|
+
virtual_network = subject.virtual_network_from_xml(
|
65
|
+
virtual_networks_xml
|
66
|
+
).first
|
67
|
+
|
68
|
+
# Verify global properties
|
69
|
+
virtual_network.name.must_equal 'test-virtual-network'
|
70
|
+
virtual_network.affinity_group.must_equal 'Test'
|
71
|
+
virtual_network.id.must_equal 'afd3a393-8fe2-4127-a834-1b2b920729fe'
|
72
|
+
virtual_network.state.must_equal 'Created'
|
73
|
+
|
74
|
+
# Verify address_space
|
75
|
+
virtual_network.address_space.must_be_kind_of Array
|
76
|
+
virtual_network.address_space.length.must_equal 1
|
77
|
+
virtual_network.address_space.first.must_be_kind_of String
|
78
|
+
virtual_network.address_space.first.must_equal '10.0.0.0/8'
|
79
|
+
|
80
|
+
# Verify subnets
|
81
|
+
virtual_network.subnets.must_be_kind_of Array
|
82
|
+
virtual_network.subnets.length.must_equal 1
|
83
|
+
virtual_network.subnets.first[:name].must_equal 'Subnet-1'
|
84
|
+
virtual_network.subnets.first[:address_prefix].must_equal '10.0.0.0/11'
|
85
|
+
|
86
|
+
# Verify DNS Servers
|
87
|
+
virtual_network.dns_servers.must_be_kind_of Array
|
88
|
+
virtual_network.dns_servers.length.must_equal 2
|
89
|
+
virtual_network.dns_servers.first[:name].must_equal 'dns-server-1'
|
90
|
+
virtual_network.dns_servers.first[:ip_address].must_equal '1.2.3.4'
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe '#virtual_network_to_xml' do
|
95
|
+
before do
|
96
|
+
ManagementHttpRequest.any_instance.expects(
|
97
|
+
:call
|
98
|
+
).returns(virtual_networks_xml)
|
99
|
+
end
|
100
|
+
|
101
|
+
let(:result_string) do
|
102
|
+
subject.virtual_network_to_xml(vnet_name,
|
103
|
+
affinity_group,
|
104
|
+
address_space,
|
105
|
+
input_options)
|
106
|
+
end
|
107
|
+
let(:result) { Nokogiri::XML result_string }
|
108
|
+
let(:virtual_network) do
|
109
|
+
result.css('VirtualNetworkSites VirtualNetworkSite').last
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'accepts parameters without providing subnet/dns' do
|
113
|
+
subject.virtual_network_to_xml(vnet_name, affinity_group, address_space)
|
114
|
+
end
|
115
|
+
|
116
|
+
it 'accepts parameters including subnet/dns' do
|
117
|
+
subject.virtual_network_to_xml(vnet_name,
|
118
|
+
affinity_group,
|
119
|
+
address_space,
|
120
|
+
input_options)
|
121
|
+
end
|
122
|
+
|
123
|
+
it 'appends the new VirtualNetwork to the existing' do
|
124
|
+
result_string.must_be_kind_of String
|
125
|
+
result.css('VirtualNetworkSites VirtualNetworkSite').size.must_equal 4
|
126
|
+
end
|
127
|
+
|
128
|
+
it 'sets the name and affinity group for the new VirtualNetwork' do
|
129
|
+
virtual_network.attr('name').must_equal vnet_name
|
130
|
+
virtual_network.attr('AffinityGroup').must_equal affinity_group
|
131
|
+
end
|
132
|
+
|
133
|
+
it 'adds new dns servers on the top of existing dns servers' do
|
134
|
+
# Verify DnsServers
|
135
|
+
dns_servers = result.css 'DnsServers DnsServer'
|
136
|
+
|
137
|
+
dns_servers.size.must_equal 4
|
138
|
+
dns_servers[0].attr('name').must_equal(input_options[:dns][0][:name])
|
139
|
+
dns_servers[0].attr('IPAddress').must_equal(
|
140
|
+
input_options[:dns][0][:ip_address]
|
141
|
+
)
|
142
|
+
dns_servers[1].attr('name').must_equal(
|
143
|
+
input_options[:dns][1][:name]
|
144
|
+
)
|
145
|
+
dns_servers[1].attr('IPAddress').must_equal(
|
146
|
+
input_options[:dns][1][:ip_address]
|
147
|
+
)
|
148
|
+
end
|
149
|
+
|
150
|
+
it 'adds DnsServerRef to VirtualNetworkSite' do
|
151
|
+
# Verify DnsServerRef
|
152
|
+
vnet_dns_servers = virtual_network.css 'DnsServersRef DnsServerRef'
|
153
|
+
vnet_dns_servers.size.must_equal 2
|
154
|
+
vnet_dns_servers[0].attr('name').must_equal(
|
155
|
+
input_options[:dns][0][:name]
|
156
|
+
)
|
157
|
+
vnet_dns_servers[1].attr('name').must_equal(
|
158
|
+
input_options[:dns][1][:name]
|
159
|
+
)
|
160
|
+
end
|
161
|
+
|
162
|
+
it 'adds Subnets to VirtualNetworkSite' do
|
163
|
+
# Verify Subnets
|
164
|
+
vnet_subnets = virtual_network.css 'Subnets Subnet'
|
165
|
+
vnet_subnets.size.must_equal 2
|
166
|
+
vnet_subnets[0].attr('name').must_equal(input_options[:subnet][0][:name])
|
167
|
+
vnet_subnets[0].css('AddressPrefix')[0].content.must_equal(
|
168
|
+
"#{input_options[:subnet][0][:ip_address]}/"\
|
169
|
+
"#{input_options[:subnet][0][:cidr]}"
|
170
|
+
)
|
171
|
+
vnet_subnets[1].attr('name').must_equal(input_options[:subnet][1][:name])
|
172
|
+
vnet_subnets[1].css('AddressPrefix')[0].content.must_equal(
|
173
|
+
"#{input_options[:subnet][1][:ip_address]}/"\
|
174
|
+
"#{input_options[:subnet][1][:cidr]}"
|
175
|
+
)
|
176
|
+
end
|
177
|
+
|
178
|
+
it 'adds AddressPrefix to VirtualNetworkSite' do
|
179
|
+
# Verify AddressSpaces
|
180
|
+
vnet_address_space = virtual_network.css 'AddressSpace AddressPrefix'
|
181
|
+
vnet_address_space.size.must_equal 2
|
182
|
+
vnet_address_space[0].content.must_equal address_space[0]
|
183
|
+
vnet_address_space[1].content.must_equal address_space[1]
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
end
|
@@ -0,0 +1,131 @@
|
|
1
|
+
#-------------------------------------------------------------------------
|
2
|
+
# Copyright 2013 Microsoft Open Technologies, Inc.
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
#--------------------------------------------------------------------------
|
15
|
+
require 'test_helper'
|
16
|
+
|
17
|
+
describe Azure::VirtualNetworkManagementService do
|
18
|
+
|
19
|
+
subject { Azure::VirtualNetworkManagementService.new }
|
20
|
+
|
21
|
+
# Setup mock parameters and return values
|
22
|
+
let(:vmname) { 'vnet-test-unit-1' }
|
23
|
+
let(:affinity_group) { 'RubyTest' }
|
24
|
+
let(:address_space) { ['172.16.0.0/12'] }
|
25
|
+
|
26
|
+
let(:non_existent_file) { '/this/file/doesnt/exist.xml' }
|
27
|
+
let(:empty_xml_file) { './test/fixtures/empty_xml_file' }
|
28
|
+
|
29
|
+
let(:list_networks_path) { '/services/networking/virtualnetwork' }
|
30
|
+
let(:set_network_path) { '/services/networking/media' }
|
31
|
+
|
32
|
+
let(:virtual_networks) { Fixtures['list_virtual_networks'] }
|
33
|
+
|
34
|
+
let(:getmethod) { :get }
|
35
|
+
let(:putmethod) { :put }
|
36
|
+
|
37
|
+
let(:mock_list_virtual_networks_request) { mock }
|
38
|
+
let(:list_networks_response) do
|
39
|
+
list_networks_response = mock
|
40
|
+
list_networks_response.stubs(:body).returns(virtual_networks)
|
41
|
+
list_networks_response
|
42
|
+
end
|
43
|
+
let(:list_networks_response_body) do
|
44
|
+
Nokogiri::XML list_networks_response.body
|
45
|
+
end
|
46
|
+
|
47
|
+
let(:mock_set_network_request) { mock }
|
48
|
+
let(:set_network_response) do
|
49
|
+
set_network_response = mock
|
50
|
+
set_network_response.stubs(:body).returns(empty_xml_file)
|
51
|
+
set_network_response
|
52
|
+
end
|
53
|
+
let(:set_network_response_body) do
|
54
|
+
Nokogiri::XML set_network_response.body
|
55
|
+
end
|
56
|
+
|
57
|
+
describe '#list_virtual_networks' do
|
58
|
+
before do
|
59
|
+
ManagementHttpRequest.stubs(:new).with(
|
60
|
+
getmethod,
|
61
|
+
list_networks_path,
|
62
|
+
nil
|
63
|
+
).returns(mock_list_virtual_networks_request)
|
64
|
+
mock_list_virtual_networks_request.expects(:call).returns(
|
65
|
+
list_networks_response_body
|
66
|
+
)
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'returns list of virtual networks' do
|
70
|
+
results = subject.list_virtual_networks
|
71
|
+
results.must_be_kind_of Array
|
72
|
+
results.length.must_equal 3
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'sets the properties of the virtual network' do
|
76
|
+
virtual_network = subject.list_virtual_networks.first
|
77
|
+
|
78
|
+
# Verify global properties
|
79
|
+
virtual_network.name.must_equal 'test-virtual-network'
|
80
|
+
virtual_network.affinity_group.must_equal 'Test'
|
81
|
+
virtual_network.id.must_equal 'afd3a393-8fe2-4127-a834-1b2b920729fe'
|
82
|
+
virtual_network.state.must_equal 'Created'
|
83
|
+
|
84
|
+
# Verify address_space
|
85
|
+
virtual_network.address_space.must_be_kind_of Array
|
86
|
+
virtual_network.address_space.length.must_equal 1
|
87
|
+
virtual_network.address_space.first.must_be_kind_of String
|
88
|
+
virtual_network.address_space.first.must_equal '10.0.0.0/8'
|
89
|
+
|
90
|
+
# Verify subnets
|
91
|
+
virtual_network.subnets.must_be_kind_of Array
|
92
|
+
virtual_network.subnets.length.must_equal 1
|
93
|
+
virtual_network.subnets.first[:name].must_equal 'Subnet-1'
|
94
|
+
virtual_network.subnets.first[:address_prefix].must_equal '10.0.0.0/11'
|
95
|
+
|
96
|
+
# Verify DNS Servers
|
97
|
+
virtual_network.dns_servers.must_be_kind_of Array
|
98
|
+
virtual_network.dns_servers.length.must_equal 2
|
99
|
+
virtual_network.dns_servers.first[:name].must_equal 'dns-server-1'
|
100
|
+
virtual_network.dns_servers.first[:ip_address].must_equal '1.2.3.4'
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
describe '#set_network_configuration' do
|
105
|
+
it 'throws error if wrong number of arguments (0) passed' do
|
106
|
+
exception = assert_raises(RuntimeError) do
|
107
|
+
subject.set_network_configuration
|
108
|
+
end
|
109
|
+
|
110
|
+
assert_match 'Wrong number of arguments', exception.message
|
111
|
+
end
|
112
|
+
|
113
|
+
it 'checks if the file exists' do
|
114
|
+
exception = assert_raises(RuntimeError) do
|
115
|
+
subject.set_network_configuration non_existent_file
|
116
|
+
end
|
117
|
+
|
118
|
+
assert_match("Could not read from file '#{non_existent_file}'.",
|
119
|
+
exception.message)
|
120
|
+
end
|
121
|
+
|
122
|
+
it 'checks if the file name ends in .xml' do
|
123
|
+
exception = assert_raises(RuntimeError) do
|
124
|
+
subject.set_network_configuration empty_xml_file
|
125
|
+
end
|
126
|
+
|
127
|
+
assert_match 'File expects a .xml extension.', exception.message
|
128
|
+
end
|
129
|
+
|
130
|
+
end # end of describe#set_network_configuration
|
131
|
+
end
|
metadata
ADDED
@@ -0,0 +1,476 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: stuartpreston-azure-sdk-for-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.6.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Microsoft Corporation
|
8
|
+
- AppFog
|
9
|
+
- Pendrica
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2015-03-03 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: nokogiri
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - "~>"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.5'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - "~>"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '1.5'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: mime-types
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - "~>"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '1.0'
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '1.0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: json
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '1.8'
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '1.8'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: uuid
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "~>"
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '2.0'
|
64
|
+
type: :runtime
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - "~>"
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '2.0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: systemu
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - "~>"
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '2.6'
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - "~>"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '2.6'
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: rake
|
87
|
+
requirement: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - "~>"
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '10.0'
|
92
|
+
type: :development
|
93
|
+
prerelease: false
|
94
|
+
version_requirements: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - "~>"
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '10.0'
|
99
|
+
- !ruby/object:Gem::Dependency
|
100
|
+
name: minitest
|
101
|
+
requirement: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - '='
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: 3.5.0
|
106
|
+
type: :development
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - '='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 3.5.0
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: mocha
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - "~>"
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '1.0'
|
120
|
+
type: :development
|
121
|
+
prerelease: false
|
122
|
+
version_requirements: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - "~>"
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '1.0'
|
127
|
+
- !ruby/object:Gem::Dependency
|
128
|
+
name: turn
|
129
|
+
requirement: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - "~>"
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0.9'
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - "~>"
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0.9'
|
141
|
+
- !ruby/object:Gem::Dependency
|
142
|
+
name: timecop
|
143
|
+
requirement: !ruby/object:Gem::Requirement
|
144
|
+
requirements:
|
145
|
+
- - "~>"
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: '0.7'
|
148
|
+
type: :development
|
149
|
+
prerelease: false
|
150
|
+
version_requirements: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - "~>"
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0.7'
|
155
|
+
description: Microsoft Azure Client Library for Ruby
|
156
|
+
email: stuart@pendrica.com
|
157
|
+
executables: []
|
158
|
+
extensions: []
|
159
|
+
extra_rdoc_files: []
|
160
|
+
files:
|
161
|
+
- ".gitignore"
|
162
|
+
- ".travis.yml"
|
163
|
+
- ChangeLog.txt
|
164
|
+
- Gemfile
|
165
|
+
- README.md
|
166
|
+
- Rakefile
|
167
|
+
- azure.gemspec
|
168
|
+
- lib/azure.rb
|
169
|
+
- lib/azure/base_management/affinity_group.rb
|
170
|
+
- lib/azure/base_management/base_management_service.rb
|
171
|
+
- lib/azure/base_management/location.rb
|
172
|
+
- lib/azure/base_management/management_http_request.rb
|
173
|
+
- lib/azure/base_management/serialization.rb
|
174
|
+
- lib/azure/base_management/sql_management_http_request.rb
|
175
|
+
- lib/azure/blob/blob.rb
|
176
|
+
- lib/azure/blob/blob_service.rb
|
177
|
+
- lib/azure/blob/block.rb
|
178
|
+
- lib/azure/blob/container.rb
|
179
|
+
- lib/azure/blob/serialization.rb
|
180
|
+
- lib/azure/cloud_service_management/cloud_service.rb
|
181
|
+
- lib/azure/cloud_service_management/cloud_service_management_service.rb
|
182
|
+
- lib/azure/cloud_service_management/serialization.rb
|
183
|
+
- lib/azure/core.rb
|
184
|
+
- lib/azure/core/auth/authorizer.rb
|
185
|
+
- lib/azure/core/auth/shared_key.rb
|
186
|
+
- lib/azure/core/auth/shared_key_lite.rb
|
187
|
+
- lib/azure/core/auth/signer.rb
|
188
|
+
- lib/azure/core/configuration.rb
|
189
|
+
- lib/azure/core/error.rb
|
190
|
+
- lib/azure/core/filtered_service.rb
|
191
|
+
- lib/azure/core/http/debug_filter.rb
|
192
|
+
- lib/azure/core/http/http_error.rb
|
193
|
+
- lib/azure/core/http/http_filter.rb
|
194
|
+
- lib/azure/core/http/http_request.rb
|
195
|
+
- lib/azure/core/http/http_response.rb
|
196
|
+
- lib/azure/core/http/retry_policy.rb
|
197
|
+
- lib/azure/core/http/signer_filter.rb
|
198
|
+
- lib/azure/core/service.rb
|
199
|
+
- lib/azure/core/signed_service.rb
|
200
|
+
- lib/azure/core/utility.rb
|
201
|
+
- lib/azure/queue/message.rb
|
202
|
+
- lib/azure/queue/queue.rb
|
203
|
+
- lib/azure/queue/queue_service.rb
|
204
|
+
- lib/azure/queue/serialization.rb
|
205
|
+
- lib/azure/service/access_policy.rb
|
206
|
+
- lib/azure/service/cors.rb
|
207
|
+
- lib/azure/service/cors_rule.rb
|
208
|
+
- lib/azure/service/enumeration_results.rb
|
209
|
+
- lib/azure/service/logging.rb
|
210
|
+
- lib/azure/service/metrics.rb
|
211
|
+
- lib/azure/service/retention_policy.rb
|
212
|
+
- lib/azure/service/serialization.rb
|
213
|
+
- lib/azure/service/signed_identifier.rb
|
214
|
+
- lib/azure/service/storage_service.rb
|
215
|
+
- lib/azure/service/storage_service_properties.rb
|
216
|
+
- lib/azure/service_bus/action.rb
|
217
|
+
- lib/azure/service_bus/auth/wrap_service.rb
|
218
|
+
- lib/azure/service_bus/auth/wrap_signer.rb
|
219
|
+
- lib/azure/service_bus/brokered_message.rb
|
220
|
+
- lib/azure/service_bus/brokered_message_serializer.rb
|
221
|
+
- lib/azure/service_bus/correlation_filter.rb
|
222
|
+
- lib/azure/service_bus/empty_rule_action.rb
|
223
|
+
- lib/azure/service_bus/false_filter.rb
|
224
|
+
- lib/azure/service_bus/filter.rb
|
225
|
+
- lib/azure/service_bus/interval.rb
|
226
|
+
- lib/azure/service_bus/queue.rb
|
227
|
+
- lib/azure/service_bus/relay.rb
|
228
|
+
- lib/azure/service_bus/resource.rb
|
229
|
+
- lib/azure/service_bus/rule.rb
|
230
|
+
- lib/azure/service_bus/rule_aspect.rb
|
231
|
+
- lib/azure/service_bus/serialization.rb
|
232
|
+
- lib/azure/service_bus/service_bus_service.rb
|
233
|
+
- lib/azure/service_bus/sql_filter.rb
|
234
|
+
- lib/azure/service_bus/sql_rule_action.rb
|
235
|
+
- lib/azure/service_bus/subscription.rb
|
236
|
+
- lib/azure/service_bus/topic.rb
|
237
|
+
- lib/azure/service_bus/true_filter.rb
|
238
|
+
- lib/azure/sql_database_management/serialization.rb
|
239
|
+
- lib/azure/sql_database_management/sql_database.rb
|
240
|
+
- lib/azure/sql_database_management/sql_database_management_service.rb
|
241
|
+
- lib/azure/storage_management/serialization.rb
|
242
|
+
- lib/azure/storage_management/storage_account.rb
|
243
|
+
- lib/azure/storage_management/storage_management_service.rb
|
244
|
+
- lib/azure/table/auth/shared_key.rb
|
245
|
+
- lib/azure/table/auth/shared_key_lite.rb
|
246
|
+
- lib/azure/table/batch.rb
|
247
|
+
- lib/azure/table/batch_response.rb
|
248
|
+
- lib/azure/table/edmtype.rb
|
249
|
+
- lib/azure/table/entity.rb
|
250
|
+
- lib/azure/table/guid.rb
|
251
|
+
- lib/azure/table/query.rb
|
252
|
+
- lib/azure/table/serialization.rb
|
253
|
+
- lib/azure/table/table_service.rb
|
254
|
+
- lib/azure/version.rb
|
255
|
+
- lib/azure/virtual_machine_image_management/serialization.rb
|
256
|
+
- lib/azure/virtual_machine_image_management/virtual_machine_disk.rb
|
257
|
+
- lib/azure/virtual_machine_image_management/virtual_machine_image.rb
|
258
|
+
- lib/azure/virtual_machine_image_management/virtual_machine_image_management_service.rb
|
259
|
+
- lib/azure/virtual_machine_management/serialization.rb
|
260
|
+
- lib/azure/virtual_machine_management/virtual_machine.rb
|
261
|
+
- lib/azure/virtual_machine_management/virtual_machine_management_service.rb
|
262
|
+
- lib/azure/virtual_network_management/serialization.rb
|
263
|
+
- lib/azure/virtual_network_management/virtual_network.rb
|
264
|
+
- lib/azure/virtual_network_management/virtual_network_management_service.rb
|
265
|
+
- test/fixtures/32px-fulls-black.jpg
|
266
|
+
- test/fixtures/affinity_group.xml
|
267
|
+
- test/fixtures/all_containers.xml
|
268
|
+
- test/fixtures/all_tables.xml
|
269
|
+
- test/fixtures/certificate.pem
|
270
|
+
- test/fixtures/container_acl.xml
|
271
|
+
- test/fixtures/create_sql_database_server.xml
|
272
|
+
- test/fixtures/create_storage_desc_error.xml
|
273
|
+
- test/fixtures/create_storage_extendedprop_error.xml
|
274
|
+
- test/fixtures/create_storage_extendedpropname_error.xml
|
275
|
+
- test/fixtures/create_storage_full_error.xml
|
276
|
+
- test/fixtures/create_storage_label_error.xml
|
277
|
+
- test/fixtures/create_storage_location_error.xml
|
278
|
+
- test/fixtures/create_storage_name_error.xml
|
279
|
+
- test/fixtures/create_table_response_entry.xml
|
280
|
+
- test/fixtures/delete_storage_container_error.xml
|
281
|
+
- test/fixtures/delete_storage_error.xml
|
282
|
+
- test/fixtures/deployment_error.xml
|
283
|
+
- test/fixtures/empty_xml_file
|
284
|
+
- test/fixtures/get_storage_account_error.xml
|
285
|
+
- test/fixtures/get_storage_account_properties.xml
|
286
|
+
- test/fixtures/get_storage_account_properties_new.xml
|
287
|
+
- test/fixtures/http_error.xml
|
288
|
+
- test/fixtures/insert_entity_response_entry.xml
|
289
|
+
- test/fixtures/list_affinity_groups.xml
|
290
|
+
- test/fixtures/list_blobs.xml
|
291
|
+
- test/fixtures/list_block_all_with_none_committed.xml
|
292
|
+
- test/fixtures/list_blocks_all.xml
|
293
|
+
- test/fixtures/list_blocks_committed.xml
|
294
|
+
- test/fixtures/list_cloud_services.xml
|
295
|
+
- test/fixtures/list_containers.xml
|
296
|
+
- test/fixtures/list_firewall_management_endpoint.xml
|
297
|
+
- test/fixtures/list_images.xml
|
298
|
+
- test/fixtures/list_locations.xml
|
299
|
+
- test/fixtures/list_page_ranges.xml
|
300
|
+
- test/fixtures/list_sql_database.xml
|
301
|
+
- test/fixtures/list_sql_server_firewall.xml
|
302
|
+
- test/fixtures/list_storage_account_single.xml
|
303
|
+
- test/fixtures/list_storage_accounts.xml
|
304
|
+
- test/fixtures/list_virtual_networks.xml
|
305
|
+
- test/fixtures/logging.xml
|
306
|
+
- test/fixtures/management_certificate.pem
|
307
|
+
- test/fixtures/messages.xml
|
308
|
+
- test/fixtures/metrics.xml
|
309
|
+
- test/fixtures/privatekey.key
|
310
|
+
- test/fixtures/query_entities_empty_response.xml
|
311
|
+
- test/fixtures/query_entities_response.xml
|
312
|
+
- test/fixtures/queue_service_properties.xml
|
313
|
+
- test/fixtures/queue_service_properties_original.xml
|
314
|
+
- test/fixtures/queues.xml
|
315
|
+
- test/fixtures/retention_policy.xml
|
316
|
+
- test/fixtures/sb_default_create_queue_response.xml
|
317
|
+
- test/fixtures/sb_default_create_relay_response.xml
|
318
|
+
- test/fixtures/sb_default_create_topic_response.xml
|
319
|
+
- test/fixtures/sb_get_access_token_response.txt
|
320
|
+
- test/fixtures/sb_queues_runtime_peek_message_response_headers.txt
|
321
|
+
- test/fixtures/storage_service_properties.xml
|
322
|
+
- test/fixtures/update_storage_account.xml
|
323
|
+
- test/fixtures/update_storage_error.xml
|
324
|
+
- test/fixtures/updated_storage_accounts.xml
|
325
|
+
- test/fixtures/virtual_machine.xml
|
326
|
+
- test/fixtures/windows_virtual_machine.xml
|
327
|
+
- test/integration/affinity_group/Affinity_test.rb
|
328
|
+
- test/integration/affinity_group/Create_Affinity_test.rb
|
329
|
+
- test/integration/affinity_group/Delete_Affinity_test.rb
|
330
|
+
- test/integration/affinity_group/List_Affinity_test.rb
|
331
|
+
- test/integration/affinity_group/Update_Affinity_test.rb
|
332
|
+
- test/integration/blob/blob_gb18030_test.rb
|
333
|
+
- test/integration/blob/blob_metadata_test.rb
|
334
|
+
- test/integration/blob/blob_pages_test.rb
|
335
|
+
- test/integration/blob/blob_properties_test.rb
|
336
|
+
- test/integration/blob/block_blob_test.rb
|
337
|
+
- test/integration/blob/container/container_acl_test.rb
|
338
|
+
- test/integration/blob/container/container_metadata_test.rb
|
339
|
+
- test/integration/blob/container/create_container_test.rb
|
340
|
+
- test/integration/blob/container/delete_container_test.rb
|
341
|
+
- test/integration/blob/container/get_container_properties_test.rb
|
342
|
+
- test/integration/blob/container/list_containers_test.rb
|
343
|
+
- test/integration/blob/container/root_container_test.rb
|
344
|
+
- test/integration/blob/copy_blob_test.rb
|
345
|
+
- test/integration/blob/create_blob_snapshot_test.rb
|
346
|
+
- test/integration/blob/create_page_blob_test.rb
|
347
|
+
- test/integration/blob/delete_blob_test.rb
|
348
|
+
- test/integration/blob/get_blob_test.rb
|
349
|
+
- test/integration/blob/informative_errors_test.rb
|
350
|
+
- test/integration/blob/lease/acquire_lease_test.rb
|
351
|
+
- test/integration/blob/lease/break_lease_test.rb
|
352
|
+
- test/integration/blob/lease/release_lease_test.rb
|
353
|
+
- test/integration/blob/lease/renew_lease_test.rb
|
354
|
+
- test/integration/blob/list_blobs_test.rb
|
355
|
+
- test/integration/cloud_service/Cloud_Create_test.rb
|
356
|
+
- test/integration/cloud_service/Cloud_Delete_test.rb
|
357
|
+
- test/integration/database/create_sql_server_firewall_test.rb
|
358
|
+
- test/integration/database/create_sql_server_test.rb
|
359
|
+
- test/integration/database/delete_sql_server_firewall_test.rb
|
360
|
+
- test/integration/database/delete_sql_server_test.rb
|
361
|
+
- test/integration/database/list_sql_server_firewall_test.rb
|
362
|
+
- test/integration/database/list_sql_servers_test.rb
|
363
|
+
- test/integration/database/reset_password_sql_server_test.rb
|
364
|
+
- test/integration/location/Location_List_test.rb
|
365
|
+
- test/integration/queue/clear_messages_test.rb
|
366
|
+
- test/integration/queue/create_message_test.rb
|
367
|
+
- test/integration/queue/create_queue_test.rb
|
368
|
+
- test/integration/queue/delete_message_test.rb
|
369
|
+
- test/integration/queue/delete_queue_test.rb
|
370
|
+
- test/integration/queue/informative_errors_test.rb
|
371
|
+
- test/integration/queue/list_messages_encoded_test.rb
|
372
|
+
- test/integration/queue/list_messages_test.rb
|
373
|
+
- test/integration/queue/list_queues_test.rb
|
374
|
+
- test/integration/queue/peek_messages_test.rb
|
375
|
+
- test/integration/queue/queue_gb18030_test.rb
|
376
|
+
- test/integration/queue/queue_metadata_test.rb
|
377
|
+
- test/integration/queue/update_message_test.rb
|
378
|
+
- test/integration/service_bus/informative_errors_test.rb
|
379
|
+
- test/integration/service_bus/queues_scenario_test.rb
|
380
|
+
- test/integration/service_bus/queues_test.rb
|
381
|
+
- test/integration/service_bus/relay_test.rb
|
382
|
+
- test/integration/service_bus/rules_test.rb
|
383
|
+
- test/integration/service_bus/sb_queue_gb18030_test.rb
|
384
|
+
- test/integration/service_bus/scenario_test.rb
|
385
|
+
- test/integration/service_bus/subscriptions_test.rb
|
386
|
+
- test/integration/service_bus/topics_scenario_test.rb
|
387
|
+
- test/integration/service_bus/topics_test.rb
|
388
|
+
- test/integration/storage_management/storage_management_test.rb
|
389
|
+
- test/integration/table/create_table_test.rb
|
390
|
+
- test/integration/table/delete_entity_batch_test.rb
|
391
|
+
- test/integration/table/delete_entity_test.rb
|
392
|
+
- test/integration/table/delete_table_test.rb
|
393
|
+
- test/integration/table/get_table_test.rb
|
394
|
+
- test/integration/table/informative_errors_test.rb
|
395
|
+
- test/integration/table/insert_entity_batch_test.rb
|
396
|
+
- test/integration/table/insert_entity_test.rb
|
397
|
+
- test/integration/table/insert_or_merge_entity_batch_test.rb
|
398
|
+
- test/integration/table/insert_or_merge_entity_test.rb
|
399
|
+
- test/integration/table/insert_or_replace_entity_batch_test.rb
|
400
|
+
- test/integration/table/insert_or_replace_entity_test.rb
|
401
|
+
- test/integration/table/merge_entity_batch_test.rb
|
402
|
+
- test/integration/table/merge_entity_test.rb
|
403
|
+
- test/integration/table/query_entities_test.rb
|
404
|
+
- test/integration/table/query_tables_test.rb
|
405
|
+
- test/integration/table/query_test.rb
|
406
|
+
- test/integration/table/table_acl_test.rb
|
407
|
+
- test/integration/table/table_gb18030_test.rb
|
408
|
+
- test/integration/table/update_entity_batch_test.rb
|
409
|
+
- test/integration/table/update_entity_test.rb
|
410
|
+
- test/integration/test_helper.rb
|
411
|
+
- test/integration/vm/VM_Create_test.rb
|
412
|
+
- test/integration/vm/VM_Delete_test.rb
|
413
|
+
- test/integration/vm/VM_Operations_test.rb
|
414
|
+
- test/integration/vm_image/virtual_machine_disk_test.rb
|
415
|
+
- test/integration/vm_image/virtual_machine_image_test.rb
|
416
|
+
- test/integration/vnet/Virtual_Network_Create_test.rb
|
417
|
+
- test/integration/vnet/Virtual_Network_list_test.rb
|
418
|
+
- test/support/env.rb
|
419
|
+
- test/support/fixtures.rb
|
420
|
+
- test/support/name_generator.rb
|
421
|
+
- test/support/stubs.rb
|
422
|
+
- test/support/virtual_machine_name_generator.rb
|
423
|
+
- test/support/virtual_network_helper.rb
|
424
|
+
- test/test_helper.rb
|
425
|
+
- test/unit/affinity_group/affinity_group_test.rb
|
426
|
+
- test/unit/affinity_group/serialization_test.rb
|
427
|
+
- test/unit/base_management/location_test.rb
|
428
|
+
- test/unit/blob/blob_service_test.rb
|
429
|
+
- test/unit/cloud_service_management/cloud_service_management_service_test.rb
|
430
|
+
- test/unit/cloud_service_management/serialization_test.rb
|
431
|
+
- test/unit/core/auth/shared_key_lite_test.rb
|
432
|
+
- test/unit/core/auth/shared_key_test.rb
|
433
|
+
- test/unit/core/auth/signer_test.rb
|
434
|
+
- test/unit/core/http/http_error_test.rb
|
435
|
+
- test/unit/core/http/http_request_test.rb
|
436
|
+
- test/unit/core/http/http_response_test.rb
|
437
|
+
- test/unit/core/http/retry_policy_test.rb
|
438
|
+
- test/unit/database/serialization_test.rb
|
439
|
+
- test/unit/database/sql_database_server_service_test.rb
|
440
|
+
- test/unit/service/serialization_test.rb
|
441
|
+
- test/unit/service/storage_service_test.rb
|
442
|
+
- test/unit/storage_management/serialization_test.rb
|
443
|
+
- test/unit/storage_management/storage_management_service_test.rb
|
444
|
+
- test/unit/table/edmtype_test.rb
|
445
|
+
- test/unit/virtual_machine_image_management/serialization_test.rb
|
446
|
+
- test/unit/virtual_machine_image_management/virtual_machine_image_management_service_test.rb
|
447
|
+
- test/unit/virtual_machine_management/serialization_test.rb
|
448
|
+
- test/unit/virtual_machine_management/virtual_machine_management_service_test.rb
|
449
|
+
- test/unit/vnet/serialization_test.rb
|
450
|
+
- test/unit/vnet/virtual_network_management_service_test.rb
|
451
|
+
homepage: http://github.com/stuartpreston/azure-sdk-for-ruby
|
452
|
+
licenses:
|
453
|
+
- Apache License, Version 2.0
|
454
|
+
metadata: {}
|
455
|
+
post_install_message:
|
456
|
+
rdoc_options: []
|
457
|
+
require_paths:
|
458
|
+
- lib
|
459
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
460
|
+
requirements:
|
461
|
+
- - ">="
|
462
|
+
- !ruby/object:Gem::Version
|
463
|
+
version: '2.0'
|
464
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
465
|
+
requirements:
|
466
|
+
- - ">="
|
467
|
+
- !ruby/object:Gem::Version
|
468
|
+
version: '0'
|
469
|
+
requirements: []
|
470
|
+
rubyforge_project:
|
471
|
+
rubygems_version: 2.4.4
|
472
|
+
signing_key:
|
473
|
+
specification_version: 4
|
474
|
+
summary: Ruby client library to consume Microsoft Azure services.
|
475
|
+
test_files: []
|
476
|
+
has_rdoc:
|