コード例 #1
0
        public void HealthbotCreateAndUpdateTest()
        {
            var handler = new RecordedDelegatingHandler {
                StatusCodeToReturn = HttpStatusCode.OK
            };

            using (MockContext context = MockContext.Start(this.GetType()))
            {
                ResourceManagementClient resourceClient  = HealthbotTestUtilities.GetResourceManagementClient(context, handler);
                healthbotClient          healthbotClient = HealthbotTestUtilities.GetHealthbotManagementClient(context, handler);

                // Create resource group
                var resourceGroup = HealthbotTestUtilities.CreateResourceGroup(resourceClient);

                // Create Azure Health Bot
                var bot = healthbotClient.Bots.Create(resourceGroup.Name, testHealthBotName, new HealthBot(testLocation, new Sku(SkuName.F0)));

                // Verify that we can get the Azure Health Bot
                var returnedBot = healthbotClient.Bots.Get(resourceGroup.Name, bot.Name);

                // Assertions
                HealthbotTestUtilities.VerifyHealthbotProperties(bot, returnedBot);

                // Update
                bot = healthbotClient.Bots.Update(resourceGroup.Name, testHealthBotName, new HealthBotUpdateParameters(sku: new Sku(SkuName.S1)));

                // Get the updated Azure Health Bot
                returnedBot = healthbotClient.Bots.Get(resourceGroup.Name, bot.Name);

                // Assertions - SKU changed
                HealthbotTestUtilities.VerifyHealthbotProperties(bot, returnedBot);
            }
        }
コード例 #2
0
        public void HealthbotCreateAndDeleteTest()
        {
            var handler = new RecordedDelegatingHandler {
                StatusCodeToReturn = HttpStatusCode.OK
            };

            using (MockContext context = MockContext.Start(this.GetType()))
            {
                ResourceManagementClient resourceClient  = HealthbotTestUtilities.GetResourceManagementClient(context, handler);
                healthbotClient          healthbotClient = HealthbotTestUtilities.GetHealthbotManagementClient(context, handler);

                // Create resource group
                var resourceGroup = HealthbotTestUtilities.CreateResourceGroup(resourceClient);

                // Create Azure Health Bot
                var bot = healthbotClient.Bots.Create(resourceGroup.Name, testHealthBotName, new HealthBot(testLocation, new Sku(SkuName.F0)));

                // Verify that we can get the Azure Health Bot
                var returnedBot = healthbotClient.Bots.Get(resourceGroup.Name, bot.Name);

                // Delete the Azure Health Bot
                healthbotClient.Bots.Delete(resourceGroup.Name, testHealthBotName);

                // Verify that RG is empty after deletion
                var bots = healthbotClient.Bots.ListByResourceGroup(resourceGroup.Name);
                Assert.Empty(bots);
            }
        }
コード例 #3
0
        public void HealthbotCreateAndListTest()
        {
            var handler = new RecordedDelegatingHandler {
                StatusCodeToReturn = HttpStatusCode.OK
            };

            using (MockContext context = MockContext.Start(this.GetType()))
            {
                ResourceManagementClient resourceClient  = HealthbotTestUtilities.GetResourceManagementClient(context, handler);
                healthbotClient          healthbotClient = HealthbotTestUtilities.GetHealthbotManagementClient(context, handler);

                // Create resource group
                var resourceGroup = HealthbotTestUtilities.CreateResourceGroup(resourceClient);

                // Verify that there are no results when querying an empty resource group
                var bots = healthbotClient.Bots.ListByResourceGroup(resourceGroup.Name);
                Assert.Empty(bots);

                // Create Azure Health Bot
                healthbotClient.Bots.Create(resourceGroup.Name, testHealthBotName, new HealthBot(testLocation, new Sku(SkuName.F0)));

                // List Azure Health Bot in RG and check that only 1 exists
                bots = healthbotClient.Bots.ListByResourceGroup(resourceGroup.Name);
                Assert.Single(bots);
            }
        }