/sdk/appservice/mgmt/src/test/java/com/azure/management/appservice/DiagnosticLogsTests.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 99 lines · 84 code · 10 blank · 5 comment · 0 complexity · 23af611296d36c61bc4da3acd9808b58 MD5 · raw file

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. package com.azure.management.appservice;
  4. import com.azure.core.http.HttpPipeline;
  5. import com.azure.management.resources.fluentcore.arm.Region;
  6. import com.azure.management.resources.fluentcore.profile.AzureProfile;
  7. import org.junit.jupiter.api.Assertions;
  8. import org.junit.jupiter.api.Test;
  9. public class DiagnosticLogsTests extends AppServiceTest {
  10. private String rgName1 = "";
  11. private String webappName1 = "";
  12. @Override
  13. protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) {
  14. webappName1 = generateRandomResourceName("java-webapp-", 20);
  15. rgName1 = generateRandomResourceName("javacsmrg", 20);
  16. super.initializeClients(httpPipeline, profile);
  17. }
  18. @Override
  19. protected void cleanUpResources() {
  20. resourceManager.resourceGroups().beginDeleteByName(rgName1);
  21. }
  22. @Test
  23. public void canCRUDWebAppWithDiagnosticLogs() throws Exception {
  24. // Create with new app service plan
  25. WebApp webApp1 =
  26. appServiceManager
  27. .webApps()
  28. .define(webappName1)
  29. .withRegion(Region.US_WEST)
  30. .withNewResourceGroup(rgName1)
  31. .withNewWindowsPlan(PricingTier.BASIC_B1)
  32. .defineDiagnosticLogsConfiguration()
  33. .withApplicationLogging()
  34. .withLogLevel(LogLevel.INFORMATION)
  35. .withApplicationLogsStoredOnFileSystem()
  36. .attach()
  37. .defineDiagnosticLogsConfiguration()
  38. .withWebServerLogging()
  39. .withWebServerLogsStoredOnFileSystem()
  40. .withWebServerFileSystemQuotaInMB(50)
  41. .withUnlimitedLogRetentionDays()
  42. .attach()
  43. .create();
  44. Assertions.assertNotNull(webApp1);
  45. Assertions.assertEquals(Region.US_WEST, webApp1.region());
  46. AppServicePlan plan1 = appServiceManager.appServicePlans().getById(webApp1.appServicePlanId());
  47. Assertions.assertNotNull(plan1);
  48. Assertions.assertEquals(Region.US_WEST, plan1.region());
  49. Assertions.assertEquals(PricingTier.BASIC_B1, plan1.pricingTier());
  50. Assertions.assertNotNull(webApp1.diagnosticLogsConfig());
  51. Assertions
  52. .assertEquals(LogLevel.INFORMATION, webApp1.diagnosticLogsConfig().applicationLoggingFileSystemLogLevel());
  53. Assertions.assertEquals(LogLevel.OFF, webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobLogLevel());
  54. Assertions.assertNull(webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobContainer());
  55. Assertions.assertEquals(0, webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobRetentionDays());
  56. Assertions.assertEquals(50, webApp1.diagnosticLogsConfig().webServerLoggingFileSystemQuotaInMB());
  57. // 0 means unlimited
  58. Assertions.assertEquals(0, webApp1.diagnosticLogsConfig().webServerLoggingFileSystemRetentionDays());
  59. Assertions.assertNull(webApp1.diagnosticLogsConfig().webServerLoggingStorageBlobContainer());
  60. Assertions.assertEquals(0, webApp1.diagnosticLogsConfig().webServerLoggingStorageBlobRetentionDays());
  61. Assertions.assertFalse(webApp1.diagnosticLogsConfig().detailedErrorMessages());
  62. Assertions.assertFalse(webApp1.diagnosticLogsConfig().failedRequestsTracing());
  63. // Update
  64. webApp1
  65. .update()
  66. .updateDiagnosticLogsConfiguration()
  67. .withoutApplicationLogging()
  68. .parent()
  69. .updateDiagnosticLogsConfiguration()
  70. .withWebServerLogging()
  71. .withWebServerLogsStoredOnFileSystem()
  72. .withWebServerFileSystemQuotaInMB(80)
  73. .withLogRetentionDays(3)
  74. .withDetailedErrorMessages(true)
  75. .parent()
  76. .apply();
  77. Assertions.assertNotNull(webApp1.diagnosticLogsConfig());
  78. Assertions.assertEquals(LogLevel.OFF, webApp1.diagnosticLogsConfig().applicationLoggingFileSystemLogLevel());
  79. Assertions.assertEquals(LogLevel.OFF, webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobLogLevel());
  80. Assertions.assertNull(webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobContainer());
  81. Assertions.assertEquals(0, webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobRetentionDays());
  82. Assertions.assertEquals(80, webApp1.diagnosticLogsConfig().webServerLoggingFileSystemQuotaInMB());
  83. Assertions.assertEquals(3, webApp1.diagnosticLogsConfig().webServerLoggingFileSystemRetentionDays());
  84. Assertions.assertNull(webApp1.diagnosticLogsConfig().webServerLoggingStorageBlobContainer());
  85. Assertions.assertEquals(3, webApp1.diagnosticLogsConfig().webServerLoggingStorageBlobRetentionDays());
  86. Assertions.assertTrue(webApp1.diagnosticLogsConfig().detailedErrorMessages());
  87. Assertions.assertFalse(webApp1.diagnosticLogsConfig().failedRequestsTracing());
  88. }
  89. }