jerqi commented on code in PR #6575: URL: https://github.com/apache/gravitino/pull/6575#discussion_r1980637628
########## authorizations/authorization-ranger/src/test/java/org/apache/gravitino/authorization/ranger/integration/test/RangerHiveE2EIT.java: ########## @@ -196,6 +196,32 @@ public void createCatalog() { metalake.createCatalog(catalogName, Catalog.Type.RELATIONAL, provider, "comment", properties); catalog = metalake.loadCatalog(catalogName); LOG.info("Catalog created: {}", catalog); + + // Test to create catalog with uuid ranger plugin + Map<String, String> uuidProperties = + ImmutableMap.of( + HiveConstants.METASTORE_URIS, + HIVE_METASTORE_URIS, + IMPERSONATION_ENABLE, + "true", + AUTHORIZATION_PROVIDER, + "ranger", + RangerAuthorizationProperties.RANGER_SERVICE_TYPE, + "HadoopSQL", + RangerAuthorizationProperties.RANGER_ADMIN_URL, + RangerITEnv.RANGER_ADMIN_URL, + RangerAuthorizationProperties.RANGER_AUTH_TYPE, + RangerContainer.authType, + RangerAuthorizationProperties.RANGER_USERNAME, + RangerContainer.rangerUserName, + RangerAuthorizationProperties.RANGER_PASSWORD, + RangerContainer.rangerPassword, + RangerAuthorizationProperties.RANGER_SERVICE_CREATE_IF_ABSENT, + "true"); + + metalake.createCatalog("test", Catalog.Type.RELATIONAL, provider, "comment", uuidProperties); + Review Comment: Added a new assertion. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org