Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "java",
"TagPrefix": "java/servicebus/azure-resourcemanager-servicebus",
"Tag": "java/servicebus/azure-resourcemanager-servicebus_9d62dd8d9d"
"Tag": "java/servicebus/azure-resourcemanager-servicebus_660023c6a4"
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public void canCRUDOnSimpleNamespace() {
.withRegion(region)
.withNewResourceGroup(rgCreatable)
.withSku(NamespaceSku.BASIC)
.disableLocalAuth()
.create();

ServiceBusNamespace namespace = serviceBusManager.namespaces().getByResourceGroup(rgName, namespaceDNSLabel);
Expand Down Expand Up @@ -137,6 +138,7 @@ public void canCreateNamespaceThenCRUDOnQueue() {
.withRegion(region)
.withNewResourceGroup(rgCreatable)
.withSku(NamespaceSku.STANDARD)
.disableLocalAuth()
.create();
Assertions.assertNotNull(namespace);
Assertions.assertNotNull(namespace.innerModel());
Expand Down Expand Up @@ -209,6 +211,7 @@ public void canCreateDeleteQueueWithNamespace() {
.withNewResourceGroup(rgCreatable)
.withSku(NamespaceSku.STANDARD)
.withNewQueue(queueName, 1024)
.disableLocalAuth()
.create();
Assertions.assertNotNull(namespace);
Assertions.assertNotNull(namespace.innerModel());
Expand Down Expand Up @@ -244,6 +247,7 @@ public void canCreateNamespaceThenCRUDOnTopic() {
.withRegion(region)
.withNewResourceGroup(rgCreatable)
.withSku(NamespaceSku.STANDARD)
.disableLocalAuth()
.create();
Assertions.assertNotNull(namespace);
Assertions.assertNotNull(namespace.innerModel());
Expand Down Expand Up @@ -313,6 +317,7 @@ public void canCreateDeleteTopicWithNamespace() {
.withNewResourceGroup(rgCreatable)
.withSku(NamespaceSku.STANDARD)
.withNewTopic(topicName, 1024)
.disableLocalAuth()
.create();
Assertions.assertNotNull(namespace);
Assertions.assertNotNull(namespace.innerModel());
Expand Down Expand Up @@ -476,6 +481,7 @@ public void canPerformCRUDOnSubscriptions() {
.withNewResourceGroup(rgCreatable)
.withSku(NamespaceSku.STANDARD)
.withNewTopic(topicName, 1024)
.disableLocalAuth()
.create();
// Create Topic subscriptions and list it
//
Expand Down Expand Up @@ -523,6 +529,7 @@ public void canCRUDQueryWithSlashInName() {
.withRegion(region)
.withNewResourceGroup(rgName)
.withSku(NamespaceSku.BASIC)
.disableLocalAuth()
.create();

Queue queue = serviceBusNamespace.queues().define(queueName).create();
Expand Down
Loading