azure 0.1.1 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/ChangeLog.txt +5 -0
- data/Gemfile +16 -3
- data/README.md +344 -2
- data/Rakefile +66 -37
- data/azure.gemspec +30 -11
- data/lib/azure.rb +35 -4
- 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/core.rb +32 -0
- data/lib/azure/core/auth/authorizer.rb +36 -0
- data/lib/azure/core/auth/shared_key.rb +21 -6
- data/lib/azure/core/auth/shared_key_lite.rb +17 -3
- data/lib/azure/core/auth/signer.rb +48 -0
- data/lib/azure/core/configuration.rb +152 -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 +84 -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 +133 -0
- data/lib/azure/core/http/retry_policy.rb +68 -0
- data/lib/azure/core/http/signer_filter.rb +34 -0
- data/lib/azure/core/service.rb +38 -32
- data/lib/azure/core/signed_service.rb +43 -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 +103 -0
- data/lib/azure/service/access_policy.rb +26 -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 +240 -0
- data/lib/azure/service/signed_identifier.rb +30 -0
- data/lib/azure/service/storage_service.rb +79 -0
- data/lib/azure/service/storage_service_properties.rb +32 -0
- data/lib/azure/service_bus/action.rb +21 -0
- data/lib/azure/service_bus/auth/wrap_service.rb +59 -46
- data/lib/azure/service_bus/auth/wrap_signer.rb +69 -0
- data/lib/azure/service_bus/brokered_message.rb +36 -51
- data/lib/azure/service_bus/brokered_message_serializer.rb +48 -34
- 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/{core/utils → service_bus}/interval.rb +29 -22
- data/lib/azure/service_bus/queue.rb +230 -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 +160 -0
- data/lib/azure/service_bus/service_bus_service.rb +819 -12
- 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/{tables → table}/auth/shared_key.rb +33 -12
- 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 +117 -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 +105 -0
- data/lib/azure/table/table_service.rb +557 -0
- data/lib/azure/version.rb +31 -0
- data/test/fixtures/container_acl.xml +11 -0
- data/test/fixtures/{error.xml → http_error.xml} +0 -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_containers.xml +38 -0
- data/test/fixtures/list_page_ranges.xml +11 -0
- data/test/fixtures/logging.xml +11 -0
- data/test/fixtures/metrics.xml +10 -0
- data/test/fixtures/queues.xml +1 -1
- data/test/fixtures/retention_policy.xml +5 -0
- data/test/fixtures/storage_service_properties.xml +23 -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 +50 -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/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_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/rules_test.rb +145 -0
- data/test/integration/service_bus/scenario_test.rb +102 -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/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/update_entity_batch_test.rb +149 -0
- data/test/integration/table/update_entity_test.rb +131 -0
- data/test/integration/test_helper.rb +23 -9
- data/test/support/env.rb +15 -1
- data/test/support/fixtures.rb +14 -0
- data/test/support/name_generator.rb +74 -0
- data/test/support/stubs.rb +14 -0
- data/test/test_helper.rb +43 -3
- data/test/unit/blob/blob_service_test.rb +1947 -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/service/serialization_test.rb +502 -0
- data/test/unit/service/storage_service_test.rb +291 -0
- data/test/unit/table/edmtype_test.rb +108 -0
- metadata +231 -230
- data/Gemfile.lock +0 -36
- data/lib/azure/atom.rb +0 -170
- data/lib/azure/auth.rb +0 -29
- data/lib/azure/blobs.rb +0 -620
- data/lib/azure/blobs/blob.rb +0 -360
- data/lib/azure/blobs/container.rb +0 -209
- data/lib/azure/blobs/service.rb +0 -396
- data/lib/azure/blobs/shared_access_signature.rb +0 -84
- data/lib/azure/blobs/uri.rb +0 -60
- data/lib/azure/configuration.rb +0 -121
- data/lib/azure/core/collection.rb +0 -118
- data/lib/azure/core/signer.rb +0 -32
- data/lib/azure/core/utils/queryable.rb +0 -74
- data/lib/azure/core/utils/storage_service_properties.rb +0 -83
- data/lib/azure/core/utils/string.rb +0 -59
- data/lib/azure/error.rb +0 -72
- data/lib/azure/queues.rb +0 -272
- data/lib/azure/queues/message.rb +0 -174
- data/lib/azure/queues/queue.rb +0 -187
- data/lib/azure/queues/service.rb +0 -263
- data/lib/azure/queues/service_properties.rb +0 -152
- data/lib/azure/queues/uri.rb +0 -78
- data/lib/azure/request.rb +0 -102
- data/lib/azure/response.rb +0 -93
- data/lib/azure/service_bus.rb +0 -4
- data/lib/azure/service_bus/auth/authorizer.rb +0 -22
- data/lib/azure/service_bus/auth/uri.rb +0 -52
- data/lib/azure/service_bus/auth/wrap.rb +0 -37
- data/lib/azure/service_bus/auth/wrap_token.rb +0 -45
- data/lib/azure/service_bus/auth/wrap_token_manager.rb +0 -46
- data/lib/azure/service_bus/queues.rb +0 -194
- data/lib/azure/service_bus/queues/queue.rb +0 -100
- data/lib/azure/service_bus/queues/queue_serializer.rb +0 -51
- data/lib/azure/service_bus/queues/service.rb +0 -154
- data/lib/azure/service_bus/queues/uri.rb +0 -80
- data/lib/azure/service_bus/rules.rb +0 -110
- data/lib/azure/service_bus/rules/rule.rb +0 -97
- data/lib/azure/service_bus/rules/service.rb +0 -122
- data/lib/azure/service_bus/rules/uri.rb +0 -39
- data/lib/azure/service_bus/subscriptions.rb +0 -170
- data/lib/azure/service_bus/subscriptions/service.rb +0 -133
- data/lib/azure/service_bus/subscriptions/subscription.rb +0 -164
- data/lib/azure/service_bus/subscriptions/subscription_serializer.rb +0 -74
- data/lib/azure/service_bus/subscriptions/uri.rb +0 -71
- data/lib/azure/service_bus/topics.rb +0 -120
- data/lib/azure/service_bus/topics/service.rb +0 -98
- data/lib/azure/service_bus/topics/topic.rb +0 -122
- data/lib/azure/service_bus/topics/topic_serializer.rb +0 -44
- data/lib/azure/service_bus/topics/uri.rb +0 -58
- data/lib/azure/service_runtime/client/goal_state_pipe_monitor.rb +0 -21
- data/lib/azure/service_runtime/client/goal_state_protocol.rb +0 -18
- data/lib/azure/service_runtime/client/runtime_client.rb +0 -135
- data/lib/azure/service_runtime/deployment.rb +0 -24
- data/lib/azure/service_runtime/local_resource.rb +0 -15
- data/lib/azure/service_runtime/role.rb +0 -17
- data/lib/azure/service_runtime/role_environment.rb +0 -206
- data/lib/azure/service_runtime/role_environment_change.rb +0 -32
- data/lib/azure/service_runtime/role_instance.rb +0 -35
- data/lib/azure/service_runtime/role_instance_endpoint.rb +0 -14
- data/lib/azure/tables.rb +0 -215
- data/lib/azure/tables/auth/shared_key_lite.rb +0 -30
- data/lib/azure/tables/entities_collection.rb +0 -66
- data/lib/azure/tables/entity.rb +0 -127
- data/lib/azure/tables/service.rb +0 -211
- data/lib/azure/tables/table.rb +0 -129
- data/lib/azure/tables/tables_collection.rb +0 -62
- data/lib/azure/tables/types.rb +0 -65
- data/lib/azure/tables/uri.rb +0 -62
- data/test/integration/blobs/auth_test.rb +0 -19
- data/test/integration/blobs/blob_test.rb +0 -61
- data/test/integration/blobs/clear_page_range_test.rb +0 -19
- data/test/integration/blobs/copy_test.rb +0 -33
- data/test/integration/blobs/create_blobs_test.rb +0 -51
- data/test/integration/blobs/create_container_test.rb +0 -13
- data/test/integration/blobs/create_snapshot_test.rb +0 -17
- data/test/integration/blobs/delete_blob_snapshots_test.rb +0 -19
- data/test/integration/blobs/delete_blobs_test.rb +0 -25
- data/test/integration/blobs/delete_container_test.rb +0 -24
- data/test/integration/blobs/delete_snapshot_test.rb +0 -17
- data/test/integration/blobs/get_blob_snapshot_test.rb +0 -18
- data/test/integration/blobs/get_blobs_test.rb +0 -31
- data/test/integration/blobs/get_page_range_test.rb +0 -19
- data/test/integration/blobs/list_blobs_test.rb +0 -39
- data/test/integration/blobs/list_containers_test.rb +0 -28
- data/test/integration/blobs/manage_blob_leases_test.rb +0 -45
- data/test/integration/blobs/manage_blob_metadata_test.rb +0 -51
- data/test/integration/blobs/manage_blob_properties_test.rb +0 -25
- data/test/integration/blobs/manage_blob_service_properties_test.rb +0 -38
- data/test/integration/blobs/manage_container_metadata_test.rb +0 -46
- data/test/integration/blobs/manage_container_permissions_test.rb +0 -17
- data/test/integration/blobs/update_page_range_test.rb +0 -20
- data/test/integration/queues/clear_messages_test.rb +0 -22
- data/test/integration/queues/create_queue_test.rb +0 -13
- data/test/integration/queues/delete_message_test.rb +0 -42
- data/test/integration/queues/delete_queue_test.rb +0 -24
- data/test/integration/queues/get_messages_test.rb +0 -39
- data/test/integration/queues/list_queues_test.rb +0 -43
- data/test/integration/queues/manage_queue_metadata_test.rb +0 -45
- data/test/integration/queues/manage_queue_service_properties_test.rb +0 -27
- data/test/integration/queues/peek_messages_test.rb +0 -55
- data/test/integration/queues/put_message_test.rb +0 -31
- data/test/integration/queues/update_message_test.rb +0 -46
- data/test/integration/service_bus/auth_test.rb +0 -18
- data/test/integration/service_bus/queues/create_queue_test.rb +0 -25
- data/test/integration/service_bus/queues/delete_message_from_queue_test.rb +0 -29
- data/test/integration/service_bus/queues/delete_queue_test.rb +0 -25
- data/test/integration/service_bus/queues/get_queue_test.rb +0 -23
- data/test/integration/service_bus/queues/list_queues_test.rb +0 -39
- data/test/integration/service_bus/queues/peek_message_from_queue_test.rb +0 -34
- data/test/integration/service_bus/queues/read_and_delete_message_from_queue_test.rb +0 -31
- data/test/integration/service_bus/queues/send_message_to_queue_test.rb +0 -22
- data/test/integration/service_bus/queues/unlock_message_from_queue_test.rb +0 -36
- data/test/integration/service_bus/rules/create_rule_test.rb +0 -19
- data/test/integration/service_bus/rules/delete_rule_test.rb +0 -17
- data/test/integration/service_bus/rules/get_rule_test.rb +0 -21
- data/test/integration/service_bus/rules/list_rules_test.rb +0 -24
- data/test/integration/service_bus/rules/rule_test.rb +0 -16
- data/test/integration/service_bus/subscriptions/create_subscription_test.rb +0 -25
- data/test/integration/service_bus/subscriptions/delete_message_from_subscription_test.rb +0 -31
- data/test/integration/service_bus/subscriptions/delete_subscription_test.rb +0 -30
- data/test/integration/service_bus/subscriptions/fetch_subscription_test.rb +0 -28
- data/test/integration/service_bus/subscriptions/list_subscriptions_test.rb +0 -23
- data/test/integration/service_bus/subscriptions/peek_lock_message_from_subscription_test.rb +0 -42
- data/test/integration/service_bus/subscriptions/read_delete_message_from_subscription_test.rb +0 -36
- data/test/integration/service_bus/subscriptions/subscription_test.rb +0 -31
- data/test/integration/service_bus/subscriptions/unlock_message_from_subscription_test.rb +0 -43
- data/test/integration/service_bus/topics/create_topic_test.rb +0 -25
- data/test/integration/service_bus/topics/delete_topic_test.rb +0 -25
- data/test/integration/service_bus/topics/get_topic_test.rb +0 -23
- data/test/integration/service_bus/topics/list_topics_test.rb +0 -39
- data/test/integration/service_bus/topics/send_message_to_topic_test.rb +0 -23
- data/test/integration/tables/auth_test.rb +0 -29
- data/test/integration/tables/creating_tables_test.rb +0 -16
- data/test/integration/tables/delete_entity_test.rb +0 -39
- data/test/integration/tables/deleting_table_test.rb +0 -22
- data/test/integration/tables/insert_entity_test.rb +0 -23
- data/test/integration/tables/merge_entity_test.rb +0 -28
- data/test/integration/tables/query_entities_test.rb +0 -131
- data/test/integration/tables/query_tables_test.rb +0 -63
- data/test/integration/tables/update_entity_test.rb +0 -54
- data/test/support/blobs.rb +0 -12
- data/test/support/table_names.rb +0 -44
- data/test/unit/atom_test.rb +0 -58
- data/test/unit/auth_test.rb +0 -24
- data/test/unit/blobs/blob_test.rb +0 -5
- data/test/unit/blobs/container_test.rb +0 -67
- data/test/unit/blobs/service_test.rb +0 -17
- data/test/unit/blobs/shared_access_signature_test.rb +0 -66
- data/test/unit/blobs_test.rb +0 -156
- data/test/unit/core/service_test.rb +0 -57
- data/test/unit/core/utils/interval_test.rb +0 -70
- data/test/unit/core/utils/queryable_test.rb +0 -69
- data/test/unit/core/utils/storage_service_properties_test.rb +0 -66
- data/test/unit/error_test.rb +0 -39
- data/test/unit/queues/message_test.rb +0 -40
- data/test/unit/queues/queue_test.rb +0 -64
- data/test/unit/queues/service_properties.rb +0 -35
- data/test/unit/request_test.rb +0 -38
- data/test/unit/response_test.rb +0 -43
- data/test/unit/service_bus/auth/authorizer_test.rb +0 -27
- data/test/unit/service_bus/auth/wrap_token_test.rb +0 -28
- data/test/unit/service_bus/queues/queue_test.rb +0 -38
- data/test/unit/service_bus/topics/topic_test.rb +0 -33
- data/test/unit/service_runtime/data/goalstate.xml +0 -9
- data/test/unit/service_runtime/data/roleenvironmentdata.xml +0 -29
- data/test/unit/service_runtime/data/runtime.xml +0 -6
- data/test/unit/service_runtime/role_environment_test.rb +0 -144
- data/test/unit/tables/auth/shared_key_lite_test.rb +0 -39
- data/test/unit/tables/auth/shared_key_test.rb +0 -45
- data/test/unit/tables/entities_collection_test.rb +0 -39
- data/test/unit/tables/entity_test.rb +0 -72
- data/test/unit/tables/table_test.rb +0 -57
- data/test/unit/tables_test.rb +0 -302
- data/test/unit/types_test.rb +0 -67
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
#-------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft. All rights reserved.
|
|
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 "integration/test_helper"
|
|
16
|
+
|
|
17
|
+
describe "ServiceBus Topics" do
|
|
18
|
+
subject { Azure::ServiceBus::ServiceBusService.new }
|
|
19
|
+
after { ServiceBusTopicNameHelper.clean }
|
|
20
|
+
let(:topic){ ServiceBusTopicNameHelper.name }
|
|
21
|
+
let(:topic_alternative){ ServiceBusTopicNameHelper.name }
|
|
22
|
+
let(:description_alternative) {{
|
|
23
|
+
:default_message_time_to_live => 'PT30M',
|
|
24
|
+
:maximum_number_of_subscriptions => 3,
|
|
25
|
+
:max_size_in_megabytes => 2048,
|
|
26
|
+
:requires_duplicate_detection => true,
|
|
27
|
+
:dead_lettering_on_filter_evaluation_exceptions => true,
|
|
28
|
+
:duplicate_detection_history_time_window => 'PT20M',
|
|
29
|
+
:enable_batched_operations => true,
|
|
30
|
+
}}
|
|
31
|
+
|
|
32
|
+
it "should be able to create a new topic" do
|
|
33
|
+
result = subject.create_topic topic, { :max_size_in_megabytes => 2048 }
|
|
34
|
+
result.must_be :kind_of?, Azure::ServiceBus::Topic
|
|
35
|
+
result.name.must_equal topic
|
|
36
|
+
result.max_size_in_megabytes.must_equal 2048
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
it "should be able to create a new topic from a string and description Hash" do
|
|
40
|
+
result = subject.create_topic topic_alternative, description_alternative
|
|
41
|
+
result.must_be :kind_of?, Azure::ServiceBus::Topic
|
|
42
|
+
result.name.must_equal topic_alternative
|
|
43
|
+
|
|
44
|
+
result.default_message_time_to_live.must_equal 1800.0
|
|
45
|
+
#result.maximum_number_of_subscriptions.must_equal description_alternative[:maximum_number_of_subscriptions]
|
|
46
|
+
result.max_size_in_megabytes.must_equal description_alternative[:max_size_in_megabytes]
|
|
47
|
+
result.requires_duplicate_detection.must_equal description_alternative[:requires_duplicate_detection]
|
|
48
|
+
result.dead_lettering_on_filter_evaluation_exceptions.must_equal description_alternative[:dead_lettering_on_filter_evaluation_exceptions]
|
|
49
|
+
result.duplicate_detection_history_time_window.must_equal 1200.0
|
|
50
|
+
result.enable_batched_operations.must_equal description_alternative[:enable_batched_operations]
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe "when a topic exists" do
|
|
54
|
+
before { subject.create_topic topic }
|
|
55
|
+
|
|
56
|
+
it "should be able to delete the topic" do
|
|
57
|
+
subject.delete_topic topic
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
it "should be able to get the topic" do
|
|
61
|
+
result = subject.get_topic topic
|
|
62
|
+
result.must_be :kind_of?, Azure::ServiceBus::Topic
|
|
63
|
+
result.name.must_equal topic
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
it "should be able to list topics" do
|
|
67
|
+
result = subject.list_topics
|
|
68
|
+
topic_found = false
|
|
69
|
+
result.each { |t|
|
|
70
|
+
topic_found = true if t.name == topic
|
|
71
|
+
}
|
|
72
|
+
assert topic_found, "list_topics didn't include the expected topic"
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
it "should be able to send the topic a message" do
|
|
76
|
+
message = Azure::ServiceBus::BrokeredMessage.new("some text", {:prop1 => "val1"}) do |m|
|
|
77
|
+
m.to = "me"
|
|
78
|
+
m.label = 'my_label'
|
|
79
|
+
end
|
|
80
|
+
result = subject.send_topic_message topic, message
|
|
81
|
+
result.must_be_nil
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
describe 'when there are multiple topics' do
|
|
85
|
+
let(:topic1) { ServiceBusTopicNameHelper.name }
|
|
86
|
+
let(:topic2) { ServiceBusTopicNameHelper.name }
|
|
87
|
+
|
|
88
|
+
before {
|
|
89
|
+
subject.create_topic topic1
|
|
90
|
+
subject.create_topic topic2
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
it "should be able to list topics" do
|
|
94
|
+
result = subject.list_topics
|
|
95
|
+
topic_found = false
|
|
96
|
+
topic1_found = false
|
|
97
|
+
topic2_found = false
|
|
98
|
+
result.each { |t|
|
|
99
|
+
topic_found = true if t.name == topic
|
|
100
|
+
topic1_found = true if t.name == topic1
|
|
101
|
+
topic2_found = true if t.name == topic2
|
|
102
|
+
}
|
|
103
|
+
assert (topic_found and topic1_found and topic2_found), "list_topics didn't include the expected topic"
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
it "should be able to use $skip token with list_topics" do
|
|
107
|
+
result = subject.list_topics
|
|
108
|
+
result2 = subject.list_topics({ :skip => 1 })
|
|
109
|
+
result2.length.must_equal result.length - 1
|
|
110
|
+
result2[0].id.must_equal result[1].id
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
it "should be able to use $top token with list_topics" do
|
|
114
|
+
result = subject.list_topics
|
|
115
|
+
result.length.wont_equal 1
|
|
116
|
+
|
|
117
|
+
result2 = subject.list_topics({ :top => 1 })
|
|
118
|
+
result2.length.must_equal 1
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
it "should be able to use $skip and $top token together with list_topics" do
|
|
122
|
+
result = subject.list_topics
|
|
123
|
+
result2 = subject.list_topics({ :skip => 1, :top => 1 })
|
|
124
|
+
result2.length.must_equal 1
|
|
125
|
+
result2[0].id.must_equal result[1].id
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
#-------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft. All rights reserved.
|
|
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 "integration/test_helper"
|
|
16
|
+
require "azure/table/table_service"
|
|
17
|
+
require "azure/core/http/http_error"
|
|
18
|
+
|
|
19
|
+
describe Azure::Table::TableService do
|
|
20
|
+
describe "#create_table" do
|
|
21
|
+
subject { Azure::Table::TableService.new }
|
|
22
|
+
let(:table_name){ TableNameHelper.name }
|
|
23
|
+
after { TableNameHelper.clean }
|
|
24
|
+
|
|
25
|
+
it "creates a table with a valid name" do
|
|
26
|
+
result = subject.create_table(table_name)
|
|
27
|
+
result.must_be_nil
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
it "errors on an invalid table name" do
|
|
31
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
32
|
+
subject.create_table "this_table.cannot-exist!"
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
#-------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft. All rights reserved.
|
|
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 "integration/test_helper"
|
|
16
|
+
require "azure/table/batch"
|
|
17
|
+
require "azure/table/table_service"
|
|
18
|
+
require "azure/core/http/http_error"
|
|
19
|
+
|
|
20
|
+
describe Azure::Table::TableService do
|
|
21
|
+
describe "#delete_entity_batch" do
|
|
22
|
+
subject { Azure::Table::TableService.new }
|
|
23
|
+
let(:table_name){ TableNameHelper.name }
|
|
24
|
+
|
|
25
|
+
let(:entity_properties){
|
|
26
|
+
{
|
|
27
|
+
"PartitionKey" => "testingpartition",
|
|
28
|
+
"RowKey" => "abcd123",
|
|
29
|
+
"CustomStringProperty" => "CustomPropertyValue",
|
|
30
|
+
"CustomIntegerProperty" => 37,
|
|
31
|
+
"CustomBooleanProperty" => true,
|
|
32
|
+
"CustomDateProperty" => Time.now
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
before {
|
|
37
|
+
subject.create_table table_name
|
|
38
|
+
subject.insert_entity table_name, entity_properties
|
|
39
|
+
}
|
|
40
|
+
after { TableNameHelper.clean }
|
|
41
|
+
|
|
42
|
+
it "deletes an entity" do
|
|
43
|
+
batch = Azure::Table::Batch.new table_name, entity_properties["PartitionKey"]
|
|
44
|
+
batch.delete entity_properties["RowKey"]
|
|
45
|
+
results = subject.execute_batch batch
|
|
46
|
+
results[0].must_be_nil
|
|
47
|
+
|
|
48
|
+
# query entity to make sure it was deleted
|
|
49
|
+
assert_raises(Azure::Core::Http::HTTPError, "ResourceNotFound (404): The specified resource does not exist.") do
|
|
50
|
+
subject.get_entity table_name, entity_properties["PartitionKey"], entity_properties["RowKey"]
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
it "deletes complex keys" do
|
|
55
|
+
entity = entity_properties.dup
|
|
56
|
+
|
|
57
|
+
batch = Azure::Table::Batch.new table_name, entity["PartitionKey"]
|
|
58
|
+
|
|
59
|
+
entity["RowKey"] = "key with spaces"
|
|
60
|
+
subject.insert_entity table_name, entity
|
|
61
|
+
batch.delete entity["RowKey"]
|
|
62
|
+
|
|
63
|
+
entity["RowKey"] = "key'with'quotes"
|
|
64
|
+
subject.insert_entity table_name, entity
|
|
65
|
+
batch.delete entity["RowKey"]
|
|
66
|
+
|
|
67
|
+
# Uncomment when issue 145 (Cannot use GB-18030 characters in strings) is fixed
|
|
68
|
+
#entity["RowKey"] = "keyWithUnicode" + 0xE.chr + 0x8B.chr + 0xA4.chr
|
|
69
|
+
#subject.insert_entity table_name, entity
|
|
70
|
+
#batch.delete entity["RowKey"]
|
|
71
|
+
|
|
72
|
+
entity["RowKey"] = "Qbert_Says=.!@%^&"
|
|
73
|
+
subject.insert_entity table_name, entity
|
|
74
|
+
batch.delete entity["RowKey"]
|
|
75
|
+
|
|
76
|
+
results = subject.execute_batch batch
|
|
77
|
+
|
|
78
|
+
results[0].must_be_nil
|
|
79
|
+
results[1].must_be_nil
|
|
80
|
+
results[2].must_be_nil
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
it "errors on an invalid table name" do
|
|
84
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
85
|
+
batch = Azure::Table::Batch.new "this_table.cannot-exist!", entity_properties["PartitionKey"]
|
|
86
|
+
batch.delete entity_properties["RowKey"]
|
|
87
|
+
subject.execute_batch batch
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
it "errors on an invalid partition key" do
|
|
92
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
93
|
+
batch = Azure::Table::Batch.new table_name, "this_partition/key#is_invalid"
|
|
94
|
+
batch.delete entity_properties["RowKey"]
|
|
95
|
+
subject.execute_batch batch
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
it "errors on an invalid row key" do
|
|
100
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
101
|
+
batch = Azure::Table::Batch.new table_name, entity_properties["PartitionKey"]
|
|
102
|
+
batch.delete "thisrow/key#is_invalid"
|
|
103
|
+
subject.execute_batch batch
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
end
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
#-------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft. All rights reserved.
|
|
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 "integration/test_helper"
|
|
16
|
+
require "azure/table/table_service"
|
|
17
|
+
require "azure/core/http/http_error"
|
|
18
|
+
|
|
19
|
+
describe Azure::Table::TableService do
|
|
20
|
+
describe "#delete_entity" do
|
|
21
|
+
subject { Azure::Table::TableService.new }
|
|
22
|
+
let(:table_name){ TableNameHelper.name }
|
|
23
|
+
|
|
24
|
+
let(:entity_properties){
|
|
25
|
+
{
|
|
26
|
+
"PartitionKey" => "testingpartition",
|
|
27
|
+
"RowKey" => "abcd123",
|
|
28
|
+
"CustomStringProperty" => "CustomPropertyValue",
|
|
29
|
+
"CustomIntegerProperty" => 37,
|
|
30
|
+
"CustomBooleanProperty" => true,
|
|
31
|
+
"CustomDateProperty" => Time.now
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
before {
|
|
36
|
+
subject.create_table table_name
|
|
37
|
+
subject.insert_entity table_name, entity_properties
|
|
38
|
+
}
|
|
39
|
+
after { TableNameHelper.clean }
|
|
40
|
+
|
|
41
|
+
it "deletes an entity" do
|
|
42
|
+
result = subject.delete_entity table_name, entity_properties["PartitionKey"], entity_properties["RowKey"]
|
|
43
|
+
result.must_be_nil
|
|
44
|
+
|
|
45
|
+
# query entity to make sure it was deleted
|
|
46
|
+
assert_raises(Azure::Core::Http::HTTPError, "ResourceNotFound (404): The specified resource does not exist.") do
|
|
47
|
+
subject.get_entity table_name, entity_properties["PartitionKey"], entity_properties["RowKey"]
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
it "deletes complex keys" do
|
|
52
|
+
entity = entity_properties.dup
|
|
53
|
+
|
|
54
|
+
entity["RowKey"] = "key with spaces"
|
|
55
|
+
subject.insert_entity table_name, entity
|
|
56
|
+
result = subject.delete_entity table_name, entity["PartitionKey"], entity["RowKey"]
|
|
57
|
+
result.must_be_nil
|
|
58
|
+
|
|
59
|
+
entity["RowKey"] = "key'with'quotes"
|
|
60
|
+
subject.insert_entity table_name, entity
|
|
61
|
+
result = subject.delete_entity table_name, entity["PartitionKey"], entity["RowKey"]
|
|
62
|
+
result.must_be_nil
|
|
63
|
+
|
|
64
|
+
# Uncomment when issue 145 (Cannot use GB-18030 characters in strings) is fixed
|
|
65
|
+
#entity["RowKey"] = "keyWithUnicode" + 0xE.chr + 0x8B.chr + 0xA4.chr
|
|
66
|
+
#subject.insert_entity table_name, entity
|
|
67
|
+
#result = subject.delete_entity table_name, entity["PartitionKey"], entity["RowKey"]
|
|
68
|
+
#result.must_be_nil
|
|
69
|
+
|
|
70
|
+
entity["RowKey"] = "Qbert_Says=.!@%^&"
|
|
71
|
+
subject.insert_entity table_name, entity
|
|
72
|
+
result = subject.delete_entity table_name, entity["PartitionKey"], entity["RowKey"]
|
|
73
|
+
result.must_be_nil
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
it "errors on an invalid table name" do
|
|
77
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
78
|
+
subject.delete_entity "this_table.cannot-exist!", entity_properties["PartitionKey"], entity_properties["RowKey"]
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
it "errors on an invalid partition key" do
|
|
83
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
84
|
+
subject.delete_entity table_name, "this_partition/key#is_invalid", entity_properties["RowKey"]
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
it "errors on an invalid row key" do
|
|
89
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
90
|
+
subject.delete_entity table_name, entity_properties["PartitionKey"], "thisrow/key#is_invalid"
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
end
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#-------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft. All rights reserved.
|
|
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 "integration/test_helper"
|
|
16
|
+
require "azure/table/table_service"
|
|
17
|
+
require "azure/core/http/http_error"
|
|
18
|
+
|
|
19
|
+
describe Azure::Table::TableService do
|
|
20
|
+
describe "#delete_table" do
|
|
21
|
+
subject { Azure::Table::TableService.new }
|
|
22
|
+
let(:table_name){ TableNameHelper.name }
|
|
23
|
+
before { subject.create_table table_name }
|
|
24
|
+
after { TableNameHelper.clean }
|
|
25
|
+
|
|
26
|
+
it "deletes a table and returns nil on success" do
|
|
27
|
+
result = subject.delete_table(table_name)
|
|
28
|
+
result.must_be_nil
|
|
29
|
+
|
|
30
|
+
tables = subject.query_tables
|
|
31
|
+
tables.wont_include table_name
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
it "errors on an invalid table" do
|
|
35
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
36
|
+
subject.delete_table "this_table.cannot-exist!"
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
#-------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) Microsoft. All rights reserved.
|
|
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 "integration/test_helper"
|
|
16
|
+
require "azure/table/table_service"
|
|
17
|
+
require "azure/core/http/http_error"
|
|
18
|
+
|
|
19
|
+
describe Azure::Table::TableService do
|
|
20
|
+
describe "#get_table" do
|
|
21
|
+
subject { Azure::Table::TableService.new }
|
|
22
|
+
let(:table_name){ TableNameHelper.name }
|
|
23
|
+
before { subject.create_table table_name }
|
|
24
|
+
after { TableNameHelper.clean }
|
|
25
|
+
|
|
26
|
+
it "gets the last updated time of a valid table" do
|
|
27
|
+
result = subject.get_table table_name
|
|
28
|
+
result.must_be_kind_of Time
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
it "errors on an invalid table" do
|
|
32
|
+
assert_raises(Azure::Core::Http::HTTPError) do
|
|
33
|
+
subject.get_table "this_table.cannot-exist!"
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|