kumaab commented on code in PR #547: URL: https://github.com/apache/ranger/pull/547#discussion_r2141364127
########## PyTest-KMS-HDFS/readme.md: ########## @@ -0,0 +1,94 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + + + +# KMS API & HDFS Encryption Pytest Suite + + +This test suite validates REST API endpoints for KMS (Key Management Service) and tests HDFS encryption functionalities including key management and file operations within encryption zones. + +**test_kms :** contains test cases for checking KMS API functionality + +**test_hdfs :** contains test cases for checking KMS functionality through hdfs encryption lifecycle + +## 📂 Directory Structure + +``` +test_directory/ +├── test_kms/ # Tests on KMS API Review Comment: Suggested directory structure: tests ├──hdfs ├── test_encryption.py ├── test_audit_spooling.py ├── test_config.py ├── conf-test.py ├── readme.md ├── utils.py ├──kms ├── test_keys.py ├── test_blacklisting.py ├── conf-test.py ├── utils.py ├── readme.md -- 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: dev-unsubscr...@ranger.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org